@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap");
body {
  font-family: "Outfit", sans-serif;
  font-weight: 500;
}

select {
  font-family: "Outfit", sans-serif;
  font-weight: 500;
}

:root {
  --app-height: 100%;
}

html {
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
}

a {
  font-weight: 500;
}

img {
  max-width: 100%;
}

select,
button,
input[type=text],
input[type=email],
input[type=password],
textarea {
  font-family: "Outfit", sans-serif;
  font-weight: 500;
}

strong,
b {
  font-weight: 900;
}

/*1199, 1366*/
.container {
  max-width: 1250px;
  margin: 0 auto;
}

@media (max-width: 1250px) {
  .container {
    max-width: 1193px;
  }
}
@media (max-width: 1140px) {
  .container {
    max-width: 992px;
  }
}
@media (max-width: 1140px) {
  .container {
    max-width: 992px;
  }
}
@media (max-width: 992px) {
  .container {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.site-header {
  position: relative;
  z-index: 50;
  background: #ffffff;
  border-bottom: 1px solid #edf1f5;
  box-shadow: 0 1px 0 rgba(18, 32, 57, 0.03);
}

.site-header .container {
  max-width: 1250px;
  padding-left: 24px;
  padding-right: 24px;
}

.site-header__inner {
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.site-header__brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
}

.site-header__logo {
  display: block;
  width: min(285px, 100%);
  height: auto;
}

.site-header__nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: flex-end;
}

.site-header__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid #d9e1ea;
  border-radius: 14px;
  background: #ffffff;
  color: #2e3137;
  cursor: pointer;
  flex: 0 0 auto;
  padding: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.site-header__toggle:hover {
  border-color: #b8c4d3;
  box-shadow: 0 8px 18px rgba(18, 32, 57, 0.08);
}

.site-header__toggle-lines {
  width: 20px;
  height: 16px;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.site-header__toggle-line {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.24s ease, opacity 0.18s ease, top 0.24s ease, bottom 0.24s ease;
  transform-origin: center;
}

.site-header__menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
}

.site-header__item {
  margin: 0;
  padding: 0;
}

.site-header__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  color: #2e3137;
  text-decoration: none;
  font-size: 18px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.02em;
  transition: color 0.2s ease, opacity 0.2s ease;
  white-space: nowrap;
}

.site-header__link:hover,
.site-header__link.is-active {
  color: #4f6a8d;
}

.site-header.is-open .site-header__toggle-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-open .site-header__toggle-line:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .site-header__toggle-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1199px) {
  .site-header__inner {
    min-height: 96px;
    gap: 32px;
  }
  .site-header__logo {
    width: 250px;
  }
  .site-header__menu {
    gap: 22px;
  }
  .site-header__link {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  body.site-header-menu-open {
    overflow: hidden;
  }
  .site-header .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .site-header__inner {
    min-height: 88px;
    gap: 16px;
    flex-wrap: nowrap;
    padding: 14px 0;
    position: relative;
  }
  .site-header__toggle {
    display: inline-flex;
  }
  .site-header__nav {
    position: absolute;
    top: calc(100% - 2px);
    left: 0;
    right: 0;
    display: block;
    justify-content: flex-start;
    background: #ffffff;
    border-top: 1px solid #edf1f5;
    border-bottom: 1px solid #edf1f5;
    box-shadow: 0 18px 40px rgba(18, 32, 57, 0.12);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: max-height 0.28s ease, opacity 0.22s ease, transform 0.22s ease;
    z-index: 40;
  }
  .site-header.is-open .site-header__nav {
    max-height: calc(100vh - 88px);
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .site-header__nav {
    width: 100%;
  }
  .site-header__menu {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 10px 20px 16px;
  }
  .site-header__item {
    width: 100%;
  }
  .site-header__link {
    justify-content: flex-start;
    width: 100%;
    min-height: 52px;
    font-size: 15px;
    border-bottom: 1px solid #edf1f5;
  }
  .site-header__item:last-child .site-header__link {
    border-bottom: 0;
  }
}
@media (max-width: 575px) {
  .site-header__inner {
    min-height: auto;
    padding: 12px 0;
  }
  .site-header__logo {
    width: 210px;
  }
  .site-header__toggle {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }
  .site-header__link {
    font-size: 14px;
  }
}
@media (min-width: 992px) {
  .site-header__nav {
    max-height: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    overflow: visible;
  }
}
.home-advantages {
  position: relative;
  overflow: hidden;
  background-color: #46557e;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: calc(100% - 24px);
  max-width: 1400px;
  margin: 18px auto 0;
  padding: 24px 0 0;
  color: #ffffff;
  margin-bottom: 50px;
}

.home-advantages::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 8px;
  background: linear-gradient(90deg, #5196cd, #fdfefe 100%);
  pointer-events: none;
}

.home-advantages::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 8px;
  background: linear-gradient(90deg, #475682 0%, #5196cd 100%);
  pointer-events: none;
}

.home-advantages .container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  padding-left: 10px;
  padding-right: 10px;
}

.home-advantages__inner {
  min-height: 406px;
  padding: 45px 0 34px;
}

.home-advantages__title {
  margin: 0;
  text-align: center;
  color: #ffffff;
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1.1;
  font-weight: 300;
}

.home-advantages__title strong {
  font-weight: 800;
}

.home-advantages__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
  margin-top: 42px;
}

.home-advantages__item {
  min-width: 0;
  text-align: center;
  padding: 0 10px;
}

.home-advantages__icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-advantages__icon img {
  display: block;
  width: 70px;
  height: 70px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: brightness(0) invert(1);
}

.home-advantages__item-title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.48rem, 1.75vw, 1.72rem);
  line-height: 1.08;
  font-weight: 800;
}

.home-advantages__item-text {
  margin: 9px auto 0;
  max-width: 230px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.98rem, 1.02vw, 1.08rem);
  line-height: 1.35;
  font-weight: 300;
}

.home-hero {
  position: relative;
  overflow: hidden;
  background-color: #f7f7f5;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  padding: 28px 0 34px;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.32) 0%, rgba(255, 255, 255, 0.2) 100%);
  pointer-events: none;
}

.home-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 8px;
  background: linear-gradient(90deg, #4d95c6 0%, #3b77a6 38%, #35698f 62%, #36446f 100%);
  pointer-events: none;
}

.home-hero .container {
  position: relative;
  z-index: 1;
  max-width: 1300px;
  padding-left: 18px;
  padding-right: 18px;
}

.home-hero__inner {
  min-height: 420px;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(300px, 1.2fr) minmax(330px, 0.84fr);
  align-items: center;
  gap: 20px 34px;
  padding: 18px 0 8px;
}

.home-hero__visual {
  justify-self: start;
  margin-left: -8px;
  margin-bottom: -8px;
}

.home-hero__visual img {
  display: block;
  width: min(100%, 520px);
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.home-hero__content {
  align-self: center;
  color: #42527d;
  padding-top: 10px;
  max-width: 440px;
}

.home-hero__title {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 1.1;
  letter-spacing: -0.06em;
}

.home-hero__title span {
  font-size: clamp(2.1rem, 3.2vw, 10rem);
  font-weight: 300;
  color: #36446f;
}

.home-hero__title strong {
  font-size: clamp(2.75rem, 4.5vw, 3.6rem);
  font-weight: 800;
  color: #36446f;
  white-space: nowrap;
}

.home-hero__lead {
  margin: 14px 0 0;
  font-size: clamp(1.2rem, 1.05vw, 1.15rem);
  line-height: 1.28;
  font-weight: 500;
  color: rgba(73, 80, 92, 0.88);
}

.home-hero__categories {
  align-self: center;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 6px;
}

.home-hero__category {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 60px;
  padding: 11px 18px 11px 18px;
  border: 2px solid #c7c7c7;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  color: #36446f;
  text-decoration: none;
  box-shadow: 0 1px 0 rgba(17, 27, 55, 0.03);
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.home-hero__category:hover {
  background: linear-gradient(90deg, #373e4e 0%, #5571a5 100%);
  border-color: #4b5f8f;
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(67, 84, 130, 0.22);
}

.home-hero__category-icon {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: currentColor;
}

.home-hero__category-icon img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: contain;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(32%) sepia(17%) saturate(559%) hue-rotate(182deg) brightness(91%) contrast(86%);
  transition: filter 0.2s ease;
}

.home-hero__category-title {
  font-size: clamp(1.3rem, 0.95vw, 1.08rem);
  line-height: 1;
  font-weight: 700;
}

.home-hero__category-arrow {
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(140, 140, 140, 0.33);
  overflow: hidden;
}

.home-hero__category-arrow::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 6px;
  height: 6px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  transform: rotate(45deg);
  left: -1px;
  top: 1px;
}

.home-hero__category-apply {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 83px;
  height: 32px;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid rgba(66, 86, 131, 0.2);
  color: #36446f;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.04rem;
  opacity: 0;
  transition: opacity 0.15s ease;
  z-index: 2;
}

.home-hero__category:hover .home-hero__category-arrow::before {
  opacity: 0;
}

.home-hero__category:hover .home-hero__category-apply {
  opacity: 1;
}

.home-hero__category:hover .home-hero__category-arrow {
  opacity: 0;
}

.home-hero__category:hover .home-hero__category-icon {
  color: #ffffff;
}

.home-hero__category:hover .home-hero__category-icon img {
  filter: brightness(0) invert(1);
}

.home-products {
  background: #ffffff;
  padding: 64px 0 40px;
  color: #46557e;
  font-family: "Outfit", "Inter", sans-serif;
}

.home-products .container {
  max-width: 1280px;
  padding-left: 18px;
  padding-right: 18px;
}

.home-products__header {
  text-align: center;
  margin-bottom: 34px;
}

.home-products__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  padding: 8px 18px;
  margin: 0 auto 18px;
  border-radius: 8px;
  background: #eef1f7;
  color: #46557e;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.home-products__title {
  margin: 0 auto;
  max-width: 980px;
  color: #46557e;
  line-height: 1.04;
  letter-spacing: -0.06em;
  font-weight: 300;
}

.home-products__title span {
  display: block;
}

.home-products__title span:first-child {
  font-size: clamp(2.15rem, 2.8vw, 3.6rem);
}

.home-products__title span:last-child {
  font-size: clamp(2rem, 2.5vw, 3.1rem);
}

.home-products__title strong {
  font-weight: 700;
}

.home-products__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

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

.home-products__card-link {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 240px;
  padding: 14px 14px 17px;
  border-top: 2px solid #d2d2d2;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
  border-radius: 11px 11px 0 0;
  background: #ffffff;
  color: #46557e;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
  overflow: hidden;
}

.home-products__card-link::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 2px;
  bottom: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(211, 211, 211, 0.96) 0%, rgba(211, 211, 211, 0.55) 26%, rgba(211, 211, 211, 0.18) 100%) left top/2px 100% no-repeat, linear-gradient(180deg, rgba(211, 211, 211, 0.96) 0%, rgba(211, 211, 211, 0.55) 26%, rgba(211, 211, 211, 0.18) 100%) right top/2px 100% no-repeat;
}

.home-products__card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  position: relative;
}

.home-products__card-link:hover,
.home-products__card-link:focus-visible {
  transform: translateY(-2px);
}

.home-products__card-link:hover::before,
.home-products__card-link:focus-visible::before {
  /*background:
    linear-gradient(180deg, rgba(92, 125, 181, 0.96) 0%, rgba(92, 125, 181, 0.55) 26%, rgba(92, 125, 181, 0.18) 100%) left top / 2px 100% no-repeat,
    linear-gradient(180deg, rgba(92, 125, 181, 0.96) 0%, rgba(92, 125, 181, 0.55) 26%, rgba(92, 125, 181, 0.18) 100%) right top / 2px 100% no-repeat;*/
}

.home-products__card-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #5a9bd0;
  overflow: hidden;
  position: relative;
}

.home-products__card-icon img {
  display: block;
  width: 36px;
  height: 36px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: brightness(0) invert(1);
}

.home-products__card-icon-fallback {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.home-products__card-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding-top: 16px;
  position: relative;
}

.home-products__card-title {
  margin: 1px 0 0;
  color: #46557e;
  font-size: 19px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.04em;
  min-width: 0;
  flex: 1 1 auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.home-products__card-text {
  margin: 0;
  color: #6f6f73;
  font-size: 17px;
  line-height: 1.16;
  font-weight: 400;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-products__card-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  margin-top: 26px;
  min-width: 84px;
  height: 28px;
  padding: 0 12px;
  border-radius: 9px;
  border: 2px solid #c8c8c8;
  background: transparent;
  color: #a0a0a0;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.03em;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.home-products__card-link:hover .home-products__card-action,
.home-products__card-link:focus-visible .home-products__card-action {
  border-color: #46557e;
  background: #46557e;
  color: #ffffff;
  box-shadow: 0 10px 18px rgba(70, 85, 126, 0.2);
}

@media (max-width: 1299px) {
  .home-advantages__grid {
    gap: 18px;
  }
  .home-advantages__item-text {
    max-width: 210px;
  }
  .home-hero__inner {
    grid-template-columns: minmax(250px, 1fr) minmax(280px, 1fr) minmax(300px, 0.9fr);
    gap: 18px 24px;
  }
  .home-hero__visual img {
    width: min(100%, 470px);
  }
  .home-hero__category {
    min-height: 58px;
  }
  .home-hero__content {
    max-width: 390px;
  }
}
@media (max-width: 1199px) {
  .home-advantages__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 24px;
    margin-top: 40px;
  }
  .home-advantages__inner {
    min-height: auto;
    padding-bottom: 34px;
  }
  .home-products__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .home-products__title {
    max-width: 820px;
  }
}
@media (max-width: 1099px) {
  .home-advantages {
    padding-top: 16px;
  }
  .home-advantages__title {
    font-size: clamp(1.9rem, 5.2vw, 2.7rem);
  }
  .home-hero {
    padding-top: 18px;
  }
  .home-hero__inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .home-hero__visual {
    order: 1;
    justify-self: center;
    margin: 0;
  }
  .home-hero__content {
    order: 2;
    text-align: center;
    padding-top: 0;
  }
  .home-hero__categories {
    order: 3;
    max-width: 720px;
    width: 100%;
    justify-self: center;
    padding-top: 4px;
  }
}
@media (max-width: 767px) {
  .home-advantages {
    width: calc(100% - 16px);
    margin-top: 14px;
  }
  .home-advantages .container {
    padding-left: 14px;
    padding-right: 14px;
  }
  .home-advantages__inner {
    padding: 24px 0 26px;
  }
  .home-advantages__title {
    font-size: clamp(1.6rem, 7.8vw, 2.1rem);
    line-height: 1.08;
  }
  .home-advantages__grid {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 26px;
  }
  .home-advantages__icon {
    width: 62px;
    height: 62px;
    margin-bottom: 12px;
  }
  .home-advantages__icon img {
    width: 46px;
    height: 46px;
  }
  .home-advantages__item-title {
    font-size: 1.38rem;
  }
  .home-advantages__item-text {
    max-width: 290px;
    font-size: 1rem;
  }
  .home-hero {
    padding-bottom: 24px;
  }
  .home-hero .container {
    padding-left: 14px;
    padding-right: 14px;
  }
  .home-hero__visual img {
    width: min(100%, 360px);
  }
  .home-hero__title {
    gap: 6px;
  }
  .home-hero__title span {
    font-size: clamp(1.85rem, 10vw, 2.65rem);
  }
  .home-hero__title strong {
    font-size: clamp(2.2rem, 11vw, 3.2rem);
  }
  .home-hero__lead {
    margin-top: 14px;
    font-size: 0.92rem;
  }
  .home-hero__categories {
    gap: 10px;
  }
  .home-hero__category {
    min-height: 52px;
    border-width: 1px;
    border-radius: 9px;
    padding-left: 16px;
    gap: 14px;
  }
  .home-hero__category-title {
    font-size: 0.95rem;
  }
  .home-hero__category-arrow {
    right: 10px;
  }
  .home-products {
    padding: 18px 0 28px;
  }
  .home-products__header {
    margin-bottom: 24px;
  }
  .home-products__eyebrow {
    min-width: 126px;
    padding: 7px 14px;
    margin-bottom: 14px;
    font-size: 15px;
  }
  .home-products__title {
    letter-spacing: -0.05em;
  }
  .home-products__title span:first-child,
  .home-products__title span:last-child {
    font-size: clamp(1.75rem, 7vw, 2.4rem);
  }
  .home-products__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .home-products__card-link {
    min-height: 240px;
    padding: 13px 13px 15px;
  }
  .home-products__card-head {
    gap: 12px;
  }
  .home-products__card-title {
    font-size: 18px;
  }
  .home-products__card-text {
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .home-advantages__inner {
    padding-top: 20px;
  }
  .home-advantages__title {
    font-size: clamp(1.48rem, 8.3vw, 1.9rem);
  }
  .home-products .container {
    padding-left: 14px;
    padding-right: 14px;
  }
  .home-hero__visual img {
    width: min(100%, 320px);
  }
  .home-products__title span:first-child,
  .home-products__title span:last-child {
    font-size: clamp(1.55rem, 8.5vw, 2rem);
  }
}
.plain-page__layout.urunlerimiz-page__layout {
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
}

.urunlerimiz-page__article {
  width: 100%;
  max-width: none;
}

.urunlerimiz-page__article .home-products__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.urunlerimiz-page__article .home-products__card {
  min-width: 0;
}

.urunlerimiz-page__article .home-products__card-link {
  min-height: 240px;
}

.urunlerimiz-page__article .home-products__card-title {
  white-space: normal;
}

.urunlerimiz-page__article .home-products__card-text {
  -webkit-line-clamp: 4;
}

.urunlerimiz-page__article .home-products__card-action {
  margin-top: 26px;
}

@media (max-width: 1199px) {
  .urunlerimiz-page__article .home-products__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .urunlerimiz-page__article .home-products__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}
.urun-kategori-page {
  padding-bottom: 28px;
}

.urun-kategori-page__summary {
  margin-top: 34px;
  margin-bottom: 26px;
  color: #3d4c61;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 700;
}

.urun-kategori-page__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px 24px;
}

.urun-kategori-page__card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.urun-kategori-page__media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 245px;
  padding: 14px 12px 18px;
  text-decoration: none;
}

.urun-kategori-page__image {
  display: block;
  width: 100%;
  max-width: 250px;
  height: 210px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center center;
     object-position: center center;
}

.urun-kategori-page__image-fallback {
  width: 210px;
  height: 210px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 30% 30%, #ffffff 0, #eaf2ff 52%, #d8e6ff 100%);
  color: #0c4fb1;
  font-size: 64px;
  font-weight: 800;
  letter-spacing: -0.04em;
  box-shadow: inset 0 0 0 8px rgba(12, 79, 177, 0.08);
}

.urun-kategori-page__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.urun-kategori-page__title {
  margin: 0;
  color: #e11d24;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.urun-kategori-page__price {
  color: #4d5b6c;
  font-size: 24px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.urun-kategori-page__button {
  width: 100%;
  min-height: 40px;
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: #0b54bf;
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.urun-kategori-page__button:hover {
  background: #084aa9;
  box-shadow: 0 10px 22px rgba(11, 84, 191, 0.16);
  transform: translateY(-1px);
}

.urun-kategori-page__empty {
  margin-top: 24px;
  padding: 28px 24px;
  border: 1px solid #e1e8f0;
  border-radius: 18px;
  background: #f8fbff;
  color: #3a4656;
}

.urun-kategori-page__empty strong {
  display: block;
  margin-bottom: 6px;
  font-size: 18px;
}

.urun-kategori-page__empty p {
  margin: 0;
  color: #5f6875;
}

@media (max-width: 1199px) {
  .urun-kategori-page__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 34px;
  }
  .urun-kategori-page__image {
    max-width: 280px;
    height: 220px;
  }
  .urun-kategori-page__price {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .urun-kategori-page {
    padding-bottom: 18px;
  }
  .urun-kategori-page__summary {
    margin-top: 22px;
    margin-bottom: 18px;
    font-size: 16px;
  }
  .urun-kategori-page__grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .urun-kategori-page__media {
    min-height: 230px;
    padding-bottom: 12px;
  }
  .urun-kategori-page__image {
    max-width: 240px;
    height: 200px;
  }
  .urun-kategori-page__image-fallback {
    width: 200px;
    height: 200px;
    font-size: 60px;
  }
  .urun-kategori-page__title {
    font-size: 19px;
  }
  .urun-kategori-page__price {
    font-size: 22px;
  }
}
.urun-detay-page__content {
  padding: 0 0 54px;
}

.urun-detay-page__layout {
  display: grid;
  grid-template-columns: minmax(420px, 520px) minmax(0, 1fr);
  gap: 42px;
  margin-top: 34px;
}

.urun-detay-page__image-frame {
  min-height: 300px;
  border: 1px solid #eef2f7;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.urun-detay-page__image-frame img {
  display: block;
  width: 100%;
  max-width: 460px;
  height: 320px;
  -o-object-fit: contain;
     object-fit: contain;
}

.urun-detay-page__main {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.urun-detay-page__card {
  padding-top: 4px;
}

.urun-detay-page__heading {
  margin: 0 0 18px;
  color: #69ae2d;
  font-size: 26px;
  line-height: 1.2;
  font-weight: 800;
}

.urun-detay-page__specs {
  display: grid;
  gap: 12px;
  margin-bottom: 16px;
}

.urun-detay-page__spec {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid #edf1f5;
  color: #4a5564;
  font-size: 16px;
  line-height: 1.5;
}

.urun-detay-page__spec span {
  color: #3d4c61;
}

.urun-detay-page__spec strong {
  color: #2f3a49;
  font-weight: 500;
}

.urun-detay-page__section-label {
  margin-top: 6px;
  margin-bottom: 10px;
  color: #3d4c61;
  font-size: 16px;
  font-weight: 700;
}

.urun-detay-page__text {
  color: #3f4855;
  font-size: 16px;
  line-height: 1.65;
}

.urun-detay-page__text p {
  margin: 0 0 12px;
}

.urun-detay-page__form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.urun-detay-page__step {
  border-radius: 6px;
}

.urun-detay-page__step-title {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: #0b54bf;
  color: #ffffff;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  box-shadow: 0 8px 18px rgba(11, 84, 191, 0.14);
}

.urun-detay-page__demo-card {
  margin-top: 10px;
  padding: 10px 14px;
  border: 1px solid #dfe8f4;
  border-radius: 4px;
  background: #f7fbff;
  color: #41506a;
  font-size: 14px;
  line-height: 1.55;
}

.urun-detay-page__demo-card strong {
  color: #0b54bf;
}

.urun-detay-page__fields {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.urun-detay-page__field {
  position: relative;
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.urun-detay-page__label {
  color: #3d4c61;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
}

.urun-detay-page__input {
  width: 100%;
  min-height: 34px;
  border: 1px solid #d4dbe4;
  border-radius: 3px;
  background: #ffffff;
  padding: 0 12px;
  color: #2f3a49;
  font-size: 15px;
  outline: none;
}

.urun-detay-page__input:focus {
  border-color: #0b54bf;
  box-shadow: 0 0 0 3px rgba(11, 84, 191, 0.08);
}

.urun-detay-page__input[readonly],
.urun-detay-page__input:disabled {
  opacity: 1;
  -webkit-text-fill-color: #2f3a49;
  background: #f8fafc;
}

.urun-detay-page__input--small {
  max-width: 100%;
}

.urun-detay-page__field--group {
  align-items: flex-start;
}

.urun-detay-page__birth,
.urun-detay-page__expiry {
  display: flex;
  align-items: center;
  gap: 8px;
}

.urun-detay-page__birth .urun-detay-page__input--small {
  max-width: 33.333%;
  flex: 1 1 0;
}

.urun-detay-page__expiry .urun-detay-page__input--small {
  max-width: 190px;
  flex: 1 1 0;
}

.urun-detay-page__expiry-sep {
  color: #3d4c61;
  font-size: 22px;
  font-weight: 500;
}

.urun-detay-page__radio-group {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 34px;
}

.urun-detay-page__radio {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #2f3a49;
  font-size: 15px;
  cursor: pointer;
}

.urun-detay-page__radio input {
  margin: 0;
  accent-color: #0b54bf;
}

.urun-detay-page__checks,
.urun-detay-page__agreement-list {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.urun-detay-page__check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #2f3a49;
  font-size: 15px;
  line-height: 1.55;
  position: relative;
}

.urun-detay-page__check input {
  margin-top: 4px;
  accent-color: #0b54bf;
}

.urun-detay-page__check--payment {
  color: #41506a;
  font-weight: 600;
}

.urun-detay-page__amount {
  display: flex;
  align-items: center;
  gap: 8px;
}

.urun-detay-page__amount span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  min-height: 34px;
  border: 1px solid #d4dbe4;
  border-radius: 3px;
  background: #f7f7f7;
  color: #334155;
  font-size: 15px;
}

.urun-detay-page__payment-note {
  margin-top: 18px;
  color: #5a6472;
  font-size: 14px;
  line-height: 1.6;
}

.urun-detay-page__actions,
.urun-detay-page__payment-actions {
  margin-top: 22px;
}

.urun-detay-page__primary-btn {
  width: 100%;
  min-height: 46px;
  border: 0;
  border-radius: 3px;
  background: #6db445;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.urun-detay-page__submit-btn {
  width: 100%;
  min-height: 46px;
  border: 0;
  border-radius: 3px;
  background: #2f78bf;
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  letter-spacing: -0.01em;
}

.urun-detay-page__feedback {
  min-height: 20px;
  color: #b42318;
  font-size: 14px;
  line-height: 1.4;
}

.urun-detay-page__feedback.is-success {
  color: #1d7a3d;
}

.urun-detay-page__feedback.is-error {
  color: #b42318;
}

.urun-detay-page__field.is-invalid .urun-detay-page__input,
.urun-detay-page__field--group.is-invalid .urun-detay-page__input,
.urun-detay-page__field[data-field-group].is-invalid .urun-detay-page__input,
.urun-detay-page__check.is-invalid input {
  background: #d7263d;
  border-color: #d7263d;
  color: #ffffff;
  box-shadow: none;
}

.urun-detay-page__field.is-invalid::before,
.urun-detay-page__field--group.is-invalid::before,
.urun-detay-page__field[data-field-group].is-invalid::before,
.urun-detay-page__check.is-invalid::before {
  content: "Bu alan zorunludur";
  position: absolute;
  z-index: 2;
  top: -10px;
  left: 0;
  padding: 4px 10px;
  border-radius: 3px;
  background: #d7263d;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  box-shadow: 0 6px 14px rgba(215, 38, 61, 0.2);
}

.urun-detay-page__check.is-invalid {
  padding-top: 16px;
}

.urun-detay-page__step.is-hidden {
  display: none;
}

@media (max-width: 1199px) {
  .urun-detay-page__layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }
  .urun-detay-page__image-frame img {
    max-width: 420px;
    height: 300px;
  }
}
@media (max-width: 767px) {
  .urun-detay-page__content {
    padding-bottom: 36px;
  }
  .urun-detay-page__layout {
    margin-top: 22px;
  }
  .urun-detay-page__heading {
    font-size: 22px;
  }
  .urun-detay-page__field,
  .urun-detay-page__spec {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .urun-detay-page__field--group .urun-detay-page__label {
    margin-bottom: 2px;
  }
  .urun-detay-page__birth,
  .urun-detay-page__expiry {
    flex-direction: column;
    align-items: stretch;
  }
  .urun-detay-page__birth .urun-detay-page__input--small,
  .urun-detay-page__expiry .urun-detay-page__input--small {
    max-width: 100%;
  }
  .urun-detay-page__radio-group {
    gap: 12px;
  }
  .urun-detay-page__step-title {
    min-height: 50px;
    font-size: 18px;
  }
  .urun-detay-page__image-frame {
    min-height: 240px;
  }
  .urun-detay-page__image-frame img {
    max-width: 320px;
    height: 240px;
  }
}
.order-complete-page__content {
  padding: 0 0 56px;
}

.order-complete-page__hero-card {
  position: relative;
  overflow: hidden;
}

.order-complete-page__badge {
  width: 92px;
  height: 92px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: linear-gradient(145deg, #ffffff, #eef5ff);
  box-shadow: 0 18px 40px rgba(11, 84, 191, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.order-complete-page__badge svg {
  width: 76px;
  height: 76px;
}

.order-complete-page__badge circle {
  fill: none;
  stroke: #0b54bf;
  stroke-width: 3.5;
  stroke-dasharray: 8 7;
}

.order-complete-page__badge path {
  fill: none;
  stroke: #69ae2d;
  stroke-width: 5.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.order-complete-page__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 24px;
  margin-top: 30px;
}

.order-complete-page__panel {
  border: 1px solid #e8eef7;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}

.order-complete-page__panel-head {
  padding: 18px 22px;
  background: #0b54bf;
  color: #ffffff;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.order-complete-page__summary,
.order-complete-page__steps {
  padding: 22px;
  display: grid;
  gap: 14px;
}

.order-complete-page__summary-item {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid #edf2f8;
  border-radius: 12px;
  background: #ffffff;
}

.order-complete-page__summary-item span {
  color: #6b7280;
  font-size: 15px;
  font-weight: 600;
}

.order-complete-page__summary-item strong {
  color: #1f2937;
  font-size: 16px;
  font-weight: 800;
}

.order-complete-page__step {
  padding: 16px 18px;
  border-radius: 14px;
  background: linear-gradient(145deg, #f8fbff, #eef5ff);
  border: 1px solid #e3ebf8;
}

.order-complete-page__step strong {
  display: block;
  margin-bottom: 6px;
  color: #0b54bf;
  font-size: 16px;
}

.order-complete-page__step p {
  margin: 0;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.55;
}

.order-complete-page__actions {
  padding: 0 22px 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.order-complete-page__button {
  min-height: 46px;
  padding: 0 20px;
  border-radius: 12px;
  background: #0b54bf;
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 28px rgba(11, 84, 191, 0.16);
}

.order-complete-page__button.is-secondary {
  background: #e9f0fb;
  color: #0b54bf;
  box-shadow: none;
}

@media (max-width: 991px) {
  .order-complete-page__layout {
    grid-template-columns: minmax(0, 1fr);
  }
}
@media (max-width: 767px) {
  .order-complete-page__content {
    padding-bottom: 40px;
  }
  .order-complete-page__summary-item {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .order-complete-page__badge {
    width: 80px;
    height: 80px;
  }
  .order-complete-page__badge svg {
    width: 64px;
    height: 64px;
  }
}
.plain-page__layout.hizmetlerimiz-page__layout {
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
}

.hizmetlerimiz-page__article {
  width: 100%;
  max-width: none;
}

.hizmetlerimiz-page__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.hizmetlerimiz-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
  padding: 22px 22px 20px;
  border-radius: 24px;
  border: 1px solid rgba(66, 86, 131, 0.12);
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fd 100%);
  box-shadow: 0 18px 40px rgba(40, 58, 99, 0.08);
}

.hizmetlerimiz-card__head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.hizmetlerimiz-card__icon {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(135deg, #5a9bd0 0%, #42547f 100%);
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.hizmetlerimiz-card__title-wrap {
  min-width: 0;
}

.hizmetlerimiz-card__eyebrow {
  margin: 0 0 8px;
  color: #5a9bd0;
  font-size: 0.8rem;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
}

.hizmetlerimiz-card__title {
  margin: 0;
  color: #34456e;
  font-size: clamp(1.3rem, 1.6vw, 1.65rem);
  line-height: 1.15;
  letter-spacing: -0.05em;
  font-weight: 800;
}

.hizmetlerimiz-card__text {
  margin: 0;
  color: #5f6677;
  font-size: 1rem;
  line-height: 1.65;
}

.hizmetlerimiz-card__features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hizmetlerimiz-card__features li {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #eef3fb;
  color: #42547f;
  font-size: 0.92rem;
  line-height: 1;
  font-weight: 700;
}

.hizmetlerimiz-card__action {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(66, 86, 131, 0.18);
  background: #ffffff;
  color: #34456e;
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.hizmetlerimiz-card__action:hover {
  background: #34456e;
  border-color: #34456e;
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(55, 73, 117, 0.16);
}

@media (max-width: 1199px) {
  .hizmetlerimiz-page__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .hizmetlerimiz-page__grid {
    gap: 14px;
    margin-top: 24px;
  }
  .hizmetlerimiz-card {
    padding: 18px 16px 16px;
    border-radius: 20px;
  }
  .hizmetlerimiz-card__icon {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
    border-radius: 14px;
  }
  .hizmetlerimiz-card__title {
    font-size: 1.2rem;
  }
}
.plain-page__layout.insan-kaynaklari-page__layout {
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
}

.insan-kaynaklari-page__article {
  width: 100%;
  max-width: none;
}

.insan-kaynaklari-page__intro {
  margin-top: 30px;
  padding: 18px 20px;
  border-radius: 18px;
  background: linear-gradient(180deg, #f6f8fc 0%, #ffffff 100%);
  border: 1px solid rgba(66, 86, 131, 0.1);
  color: #34456e;
}

.insan-kaynaklari-page__intro strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 800;
}

.insan-kaynaklari-page__intro p {
  margin: 0;
  color: #5f6677;
  line-height: 1.5;
}

.insan-kaynaklari-page__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.insan-kaynaklari-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
  padding: 22px 22px 20px;
  border-radius: 24px;
  border: 1px solid rgba(66, 86, 131, 0.12);
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fd 100%);
  box-shadow: 0 18px 40px rgba(40, 58, 99, 0.08);
}

.insan-kaynaklari-card__head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.insan-kaynaklari-card__icon {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(135deg, #5a9bd0 0%, #42547f 100%);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.insan-kaynaklari-card__title-wrap {
  min-width: 0;
}

.insan-kaynaklari-card__eyebrow {
  margin: 0 0 8px;
  color: #5a9bd0;
  font-size: 0.8rem;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
}

.insan-kaynaklari-card__title {
  margin: 0;
  color: #34456e;
  font-size: clamp(1.3rem, 1.6vw, 1.65rem);
  line-height: 1.15;
  letter-spacing: -0.05em;
  font-weight: 800;
}

.insan-kaynaklari-card__text {
  margin: 0;
  color: #5f6677;
  font-size: 1rem;
  line-height: 1.65;
}

.insan-kaynaklari-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
}

.insan-kaynaklari-card__meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #eef3fb;
  color: #42547f;
  font-size: 0.92rem;
  line-height: 1;
  font-weight: 700;
}

.insan-kaynaklari-card__action {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(66, 86, 131, 0.18);
  background: #ffffff;
  color: #34456e;
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.insan-kaynaklari-card__action:hover {
  background: #34456e;
  border-color: #34456e;
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(55, 73, 117, 0.16);
}

@media (max-width: 1199px) {
  .insan-kaynaklari-page__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .insan-kaynaklari-page__intro {
    margin-top: 24px;
    padding: 16px 16px;
  }
  .insan-kaynaklari-page__grid {
    gap: 14px;
    margin-top: 16px;
  }
  .insan-kaynaklari-card {
    padding: 18px 16px 16px;
    border-radius: 20px;
  }
  .insan-kaynaklari-card__icon {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
    border-radius: 14px;
  }
  .insan-kaynaklari-card__title {
    font-size: 1.2rem;
  }
}
.plain-page__layout.iletisim-page__layout {
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 1.08fr);
  gap: 24px;
}

.iletisim-page__article,
.iletisim-page__map {
  min-width: 0;
}

.iletisim-page__article {
  width: 100%;
  max-width: none;
}

.iletisim-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.iletisim-page__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(66, 86, 131, 0.18);
  background: #34456e;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.iletisim-page__action:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(52, 69, 110, 0.18);
}

.iletisim-page__action.is-secondary {
  background: #ffffff;
  color: #34456e;
}

.iletisim-page__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.iletisim-card {
  display: flex;
  gap: 14px;
  min-width: 0;
  padding: 18px 18px 16px;
  border-radius: 22px;
  border: 1px solid rgba(66, 86, 131, 0.12);
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fd 100%);
  box-shadow: 0 18px 40px rgba(40, 58, 99, 0.08);
}

.iletisim-card__icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(135deg, #5a9bd0 0%, #42547f 100%);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
}

.iletisim-card__body {
  min-width: 0;
}

.iletisim-card__label {
  display: block;
  margin: 0 0 6px;
  color: #5a9bd0;
  font-size: 0.8rem;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
}

.iletisim-card__value {
  margin: 0;
  color: #34456e;
  font-size: 1rem;
  line-height: 1.55;
  font-weight: 700;
  text-decoration: none;
}

.iletisim-card__value:hover {
  color: #5a9bd0;
}

.iletisim-page__map {
  position: relative;
}

.iletisim-map {
  position: sticky;
  top: 18px;
  padding: 18px;
  border-radius: 28px;
  border: 1px solid rgba(66, 86, 131, 0.12);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 56px rgba(40, 58, 99, 0.08);
}

.iletisim-map__head {
  padding: 8px 6px 16px;
}

.iletisim-map__eyebrow {
  margin: 0 0 10px;
  color: #5a9bd0;
  font-size: 0.82rem;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
}

.iletisim-map__head h3 {
  margin: 0;
  color: #34456e;
  font-size: clamp(1.5rem, 1.9vw, 2.1rem);
  line-height: 1.12;
  letter-spacing: -0.05em;
  font-weight: 800;
}

.iletisim-map__head p {
  margin: 10px 0 0;
  color: #5f6677;
  font-size: 1rem;
  line-height: 1.6;
}

.iletisim-map__frame {
  position: relative;
  overflow: hidden;
  min-height: 540px;
  border-radius: 24px;
  background: linear-gradient(180deg, #eef3fb 0%, #ffffff 100%);
}

.iletisim-map__frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 540px;
}

@media (max-width: 1199px) {
  .plain-page__layout.iletisim-page__layout {
    grid-template-columns: 1fr;
  }
  .iletisim-map {
    position: static;
  }
}
@media (max-width: 767px) {
  .iletisim-page__cards {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 22px;
  }
  .iletisim-page__actions {
    gap: 10px;
    margin-top: 22px;
  }
  .iletisim-page__action {
    width: 100%;
  }
  .iletisim-map {
    padding: 14px;
    border-radius: 22px;
    margin-top: 18px;
  }
  .iletisim-map__frame,
  .iletisim-map__frame iframe {
    min-height: 360px;
  }
  .iletisim-card {
    padding: 16px 15px 14px;
    border-radius: 18px;
  }
}
.plain-page__hero {
  position: relative;
  overflow: hidden;
  padding: 24px 0 0;
}

.plain-page__hero .container {
  position: relative;
  z-index: 1;
}

.plain-page__hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17, 30, 56, 0.82) 0%, rgba(36, 60, 101, 0.62) 44%, rgba(72, 104, 155, 0.24) 100%), var(--plain-page-hero-bg) center center/cover no-repeat;
}

.plain-page__hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 10px;
  background: linear-gradient(90deg, #5da0d0 0%, #f3f6fb 42%, #2f507e 100%);
}

.plain-page__hero-card {
  position: relative;
  z-index: 1;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 46px 36px 42px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
  backdrop-filter: blur(10px);
  box-shadow: 0 24px 60px rgba(22, 34, 63, 0.18);
  color: #ffffff;
  overflow: hidden;
}

.plain-page__hero-card::before,
.plain-page__hero-card::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.plain-page__hero-card::before {
  right: -66px;
  top: -68px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.02) 65%, transparent 70%);
}

.plain-page__hero-card::after {
  right: 18px;
  bottom: 18px;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.plain-page__eyebrow {
  margin: 0 0 12px;
  font-size: 0.95rem;
  line-height: 1;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 700;
}

.plain-page__title {
  margin: 0;
  max-width: 920px;
  color: #ffffff;
  font-size: clamp(2rem, 4.1vw, 4.3rem);
  line-height: 1.04;
  font-weight: 800;
}

.plain-page__breadcrumbs {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.98rem;
  line-height: 1.4;
}

.plain-page__breadcrumbs a,
.plain-page__breadcrumbs .is-current {
  color: inherit;
  text-decoration: none;
}

.plain-page__breadcrumbs a {
  position: relative;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.plain-page__breadcrumbs a:hover {
  color: #ffffff;
}

.plain-page__breadcrumbs .is-current {
  color: #ffffff;
  font-weight: 700;
}

.plain-page__content {
  padding: 0 0 74px;
}

.plain-page__layout {
  display: grid;
  grid-template-columns: minmax(290px, 320px) minmax(0, 1fr);
  gap: 28px;
  margin-top: -42px;
  position: relative;
  z-index: 1;
}

.plain-page__sidebar {
  display: grid;
  gap: 18px;
  align-content: start;
}

.plain-page-nav {
  position: sticky;
  top: 18px;
  border-radius: 24px;
  border: 1px solid rgba(66, 86, 131, 0.12);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 40px rgba(40, 58, 99, 0.08);
  overflow: hidden;
}

.plain-page-nav__head {
  padding: 22px 22px 18px;
  background: linear-gradient(180deg, #f5f8fc 0%, #ffffff 100%);
  border-bottom: 1px solid rgba(66, 86, 131, 0.09);
}

.plain-page-nav__head span {
  display: block;
  color: #3c4c75;
  font-size: 1.05rem;
  line-height: 1.15;
  font-weight: 800;
}

.plain-page-nav__head p {
  margin: 8px 0 0;
  color: #6d7484;
  font-size: 0.96rem;
  line-height: 1.5;
}

.plain-page-nav__body {
  padding: 10px 12px 14px;
}

.plain-page-nav__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.plain-page-nav__item {
  min-width: 0;
}

.plain-page-nav__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 54px;
  padding: 12px 14px 12px 16px;
  border-radius: 16px;
  background: #f7f9fd;
  color: #314060;
  text-decoration: none;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.plain-page-nav__link:hover,
.plain-page-nav__item.is-active > .plain-page-nav__link {
  background: linear-gradient(90deg, #34456e 0%, #5879ab 100%);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(55, 73, 117, 0.16);
}

.plain-page-nav__link-text {
  min-width: 0;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 700;
}

.plain-page-nav__link-icon {
  flex: 0 0 10px;
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.65;
}

.plain-page-nav__item.is-active > .plain-page-nav__link .plain-page-nav__link-icon,
.plain-page-nav__link:hover .plain-page-nav__link-icon {
  opacity: 1;
}

.plain-page-nav__sublist {
  margin-top: 8px;
  padding-left: 14px;
}

.plain-page-nav__sublist .plain-page-nav__list {
  padding-left: 10px;
  border-left: 1px solid rgba(66, 86, 131, 0.14);
}

.plain-page-nav__sublist .plain-page-nav__link {
  min-height: 48px;
  padding-left: 14px;
  background: #ffffff;
  border: 1px solid rgba(66, 86, 131, 0.08);
}

.plain-page-nav__sublist .plain-page-nav__link-text {
  font-size: 0.96rem;
  font-weight: 600;
}

.plain-page-nav__empty {
  margin: 0;
  padding: 12px 14px 4px;
  color: #6d7484;
  font-size: 0.98rem;
  line-height: 1.5;
}

.plain-page-note {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 18px 18px 18px 16px;
  border-radius: 22px;
  background: linear-gradient(135deg, #eef3fb 0%, #ffffff 100%);
  border: 1px solid rgba(66, 86, 131, 0.08);
  box-shadow: 0 14px 32px rgba(40, 58, 99, 0.06);
}

.plain-page-note__icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, #5a99ca 0%, #385a88 100%);
  position: relative;
}

.plain-page-note__icon::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
}

.plain-page-note__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 4px;
  height: 4px;
  margin-left: -2px;
  margin-top: -2px;
  border-radius: 50%;
  background: #ffffff;
}

.plain-page-note__body strong {
  display: block;
  color: #34456e;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 800;
}

.plain-page-note__body p {
  margin: 6px 0 0;
  color: #6d7484;
  font-size: 0.96rem;
  line-height: 1.55;
}

.plain-page__article {
  padding: 34px 34px 34px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(66, 86, 131, 0.1);
  box-shadow: 0 24px 56px rgba(40, 58, 99, 0.08);
}

.plain-page__article-head {
  margin-bottom: 18px;
}

.plain-page__section-label {
  margin: 0 0 10px;
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: #eef3fb;
  color: #42547f;
  font-size: 0.84rem;
  line-height: 1;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-weight: 800;
}

.plain-page__article-head h2 {
  margin: 0;
  color: #34456e;
  font-size: clamp(1.7rem, 2.2vw, 2.6rem);
  line-height: 1.12;
  letter-spacing: -0.06em;
  font-weight: 800;
}

.plain-page__lead {
  margin: 12px 0 0;
  max-width: 760px;
  color: #5f6677;
  font-size: 1.05rem;
  line-height: 1.65;
}

.plain-page__body {
  color: #3f4656;
  font-size: 1.03rem;
  line-height: 1.82;
}

.plain-page__body > *:first-child {
  margin-top: 0;
}

.plain-page__body > *:last-child {
  margin-bottom: 0;
}

.plain-page__body p {
  margin: 0 0 18px;
}

.plain-page__body h3,
.plain-page__body h4,
.plain-page__body h5 {
  margin: 28px 0 12px;
  color: #34456e;
  line-height: 1.18;
  font-weight: 800;
}

.plain-page__body h3 {
  font-size: 1.45rem;
}

.plain-page__body h4 {
  font-size: 1.2rem;
}

.plain-page__body ul,
.plain-page__body ol {
  margin: 0 0 20px;
  padding-left: 22px;
}

.plain-page__body li + li {
  margin-top: 8px;
}

.plain-page__body a {
  color: #4f7bb2;
  text-decoration: none;
}

.plain-page__body a:hover {
  text-decoration: underline;
}

.plain-page__body blockquote {
  margin: 24px 0;
  padding: 20px 22px;
  border-left: 4px solid #5a99ca;
  border-radius: 18px;
  background: #f6f9fd;
  color: #4c5568;
}

.plain-page__body img,
.plain-page__body iframe,
.plain-page__body video {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 22px 0;
  border-radius: 18px;
}

.plain-page__body table {
  width: 100%;
  margin: 20px 0;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 18px;
}

.plain-page__body th,
.plain-page__body td {
  padding: 12px 14px;
  border: 1px solid rgba(66, 86, 131, 0.12);
  vertical-align: top;
}

.plain-page__body th {
  background: #eef3fb;
  color: #34456e;
  font-weight: 800;
}

@media (max-width: 1140px) {
  .plain-page__layout {
    grid-template-columns: 1fr;
    margin-top: -30px;
  }
  .plain-page-nav {
    position: relative;
    top: auto;
  }
}
@media (max-width: 768px) {
  .plain-page__hero {
    padding-top: 14px;
  }
  .plain-page__hero-card {
    min-height: 240px;
    padding: 30px 20px 28px;
    border-radius: 22px;
  }
  .plain-page__title {
    font-size: clamp(1.9rem, 8vw, 2.75rem);
  }
  .plain-page__breadcrumbs {
    font-size: 0.92rem;
  }
  .plain-page__content {
    padding-bottom: 56px;
  }
  .plain-page__article {
    padding: 24px 18px 26px;
    border-radius: 22px;
  }
  .plain-page-nav__head {
    padding: 18px 18px 16px;
  }
  .plain-page-nav__body {
    padding: 10px;
  }
  .plain-page-nav__link {
    min-height: 50px;
    padding-left: 14px;
  }
  .plain-page-nav__sublist {
    padding-left: 8px;
  }
}
.site-footer {
  width: 100%;
  background: #ffffff;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.55fr);
  align-items: stretch;
  border-top: 3px solid #d6d6d6;
}

.site-footer__brand {
  padding: 34px 34px 28px 0;
  border-right: 3px solid #d6d6d6;
}

.site-footer__logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
}

.site-footer__logo img {
  display: block;
  width: min(100%, 300px);
  height: auto;
}

.site-footer__contact {
  margin-top: 22px;
  display: grid;
  gap: 18px;
}

.site-footer__contact-item {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  color: #2f3550;
}

.site-footer__contact-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #5a99ca;
  flex: 0 0 28px;
  margin-top: 2px;
}

.site-footer__contact-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.site-footer__contact-text,
.site-footer__contact-link {
  font-size: 1.08rem;
  line-height: 1.18;
  font-weight: 500;
  color: #2e2e2e;
  text-decoration: none;
}

.site-footer__contact-link {
  transition: color 0.2s ease;
}

.site-footer__contact-link:hover {
  color: #5a99ca;
}

.site-footer__menus {
  padding: 34px 0 28px 44px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 28px 32px;
  align-content: start;
}

.site-footer__menu {
  min-width: 0;
}

.site-footer__menu-title {
  display: inline-block;
  margin-bottom: 12px;
  color: #46547e;
  font-size: 1.45rem;
  line-height: 1.08;
  font-weight: 700;
  text-decoration: none;
}

.site-footer__menu-title:hover {
  color: #5a99ca;
}

.site-footer__menu-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.site-footer__menu-link {
  color: #2f2f33;
  font-size: 1.03rem;
  line-height: 1.16;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer__menu-link:hover {
  color: #5a99ca;
}

.site-footer__bottom {
  border-top: 3px solid #d6d6d6;
  padding: 12px 0 8px;
}

.site-footer__copyright {
  margin: 0;
  text-align: center;
  color: #b6b6b8;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 600;
}

@media (max-width: 1140px) {
  .site-footer__inner {
    grid-template-columns: 1fr;
  }
  .site-footer__brand {
    border-right: 0;
    border-bottom: 3px solid #d6d6d6;
    padding-right: 0;
    padding-bottom: 24px;
  }
  .site-footer__menus {
    padding-left: 0;
    padding-top: 24px;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
}
@media (max-width: 768px) {
  .site-footer {
    width: calc(100% - 16px);
    margin-top: 14px;
    margin-bottom: 14px;
  }
  .site-footer .container {
    padding-left: 14px;
    padding-right: 14px;
  }
  .site-footer__brand,
  .site-footer__menus {
    padding-left: 0;
    padding-right: 0;
  }
  .site-footer__menus {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .site-footer__menu-title {
    font-size: 1.3rem;
  }
  .site-footer__menu-link,
  .site-footer__contact-text,
  .site-footer__contact-link {
    font-size: 1rem;
  }
}/*# sourceMappingURL=style.css.map */