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

html,
body {
  height: 100%;
  margin: 0;
  font-family: "Content_Font", "Quicksand", Helvetica Neue, Arial, sans-serif;
  font-weight: 400;
  color: #000;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

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

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

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.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;
}

/* ========== Header ========== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  color: #fff;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 500;
}

/* Blur stays on its own layer; logo paints above it */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(16, 18, 34, 0.28);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  pointer-events: none;
}

/* Internal pages: solid logo navy (matches .logo background) */
body:not(:has(.hero)) .site-header {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

body:not(:has(.hero)) .site-header::before {
  background: #0f1222;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.header-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  max-width: 100%;
  min-height: 64px;
  padding: 0 35px;
}

.nav-left {
  justify-self: start;
}

.nav-center {
  justify-self: center;
  width: 140px;
  height: 0;
  pointer-events: none;
}

.nav-right {
  justify-self: end;
  display: flex;
  align-items: stretch;
  align-self: stretch;
  gap: 28px;
}

.nav-right > :not(.nav-divider) {
  align-self: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-item {
  position: relative;
}

.nav-item--has-sub > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-item__caret {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.85;
}

.nav-sub {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  min-width: 180px;
  padding: 10px 0;
  margin: 0;
  list-style: none;
  background: rgba(16, 18, 34, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 60;
}

.nav-sub::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}

.nav-item--has-sub:hover > .nav-sub,
.nav-item--has-sub:focus-within > .nav-sub {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-sub a {
  display: block;
  padding: 10px 16px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.nav-sub a:hover {
  opacity: 0.7;
}

.nav-list > .nav-item > a,
.nav-item__link,
.nav-link {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.nav-list > .nav-item > a:hover,
.nav-item__link:hover,
.nav-link:hover {
  opacity: 0.7;
}

.nav-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.28);
  flex-shrink: 0;
  align-self: stretch;
}

.logo {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 40;
  display: block;
  line-height: 0;
  background: #0f1222;
}

.logo img {
  display: block;
  width: 140px;
  height: 140px;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.btn-menu {
  display: none;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn-menu__icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 22px;
  height: 14px;
}

.btn-menu__icon span {
  display: block;
  height: 1.5px;
  background: #fff;
}

.btn-menu__label {
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: #fff;
}

/* ========== Float actions (chat + WhatsApp) ========== */
.float-actions {
  --float-btn-size: 60px;
  position: fixed;
  right: 24px;
  bottom: max(28px, env(safe-area-inset-bottom));
  z-index: 40;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.float-actions__btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--float-btn-size);
  height: var(--float-btn-size);
  flex-shrink: 0;
  border-radius: 50%;
  background: #000;
  color: #fff;
}

.float-actions__btn::before,
.float-actions__btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background: inherit;
  animation: float-btn-wave 2.6s linear infinite;
}

.float-actions__btn::after {
  animation-delay: 1.3s;
}

.float-actions__icon {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  line-height: 0;
}

.float-actions__icon svg {
  display: block;
  max-width: 28px;
  max-height: 28px;
  width: auto;
  height: auto;
}

@keyframes float-btn-wave {
  0% {
    opacity: 0.3;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.75);
  }
}

@media (max-width: 600px) {
  .float-actions {
    --float-btn-size: 52px;
    right: 14px;
    bottom: max(18px, env(safe-area-inset-bottom));
    gap: 14px;
  }

  .float-actions__icon {
    width: 24px;
    height: 24px;
  }

  .float-actions__icon svg {
    max-width: 24px;
    max-height: 24px;
  }
}

/* ========== Hero ========== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__image,
.hero__video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.9s ease;
}

.hero__image.is-active,
.hero__video.is-active {
  opacity: 1;
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  /* nurano.az overlay_video style; logo navy #101222 */
  background: linear-gradient(
    rgba(16, 18, 34, 0.71) 0%,
    rgba(16, 18, 34, 0.13) 57%
  );
}

.hero-content {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 3;
  padding: 0 0 40px 40px;
  max-width: 900px;
}

.hero-content h1 {
  margin: 0;
  color: #fff;
  font-family: "Content_Font", "Quicksand", Helvetica Neue, Arial, sans-serif;
  font-size: clamp(48px, 6.5vw, 88px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.02em;
}

/* ========== Mobile nav (hidden panel) ========== */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
}

.mobile-nav.is-open {
  display: block;
}

.mobile-nav__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.mobile-nav__panel {
  position: absolute;
  top: 0;
  left: 0;
  width: min(320px, 86vw);
  height: 100%;
  background: #fff;
  padding: 28px 24px;
  overflow-y: auto;
}

.mobile-nav__close {
  font-size: 28px;
  line-height: 1;
  margin-bottom: 24px;
}

.mobile-nav__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mobile-nav__list a,
.mobile-nav__parent {
  font-size: 18px;
  font-weight: 500;
  color: inherit;
}

.mobile-nav__parent {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: left;
}

.mobile-nav__caret {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid currentColor;
  transition: transform 0.2s ease;
}

.mobile-nav__parent[aria-expanded="true"] .mobile-nav__caret {
  transform: rotate(180deg);
}

.mobile-nav__sub {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 12px 0 0;
  padding: 0 0 0 14px;
  list-style: none;
  border-left: 1px solid #e5e5e5;
}

.mobile-nav__sub[hidden] {
  display: none;
}

.mobile-nav__sub a {
  font-size: 16px;
  font-weight: 400;
}

.mobile-nav__phone {
  display: inline-block;
  margin-top: 32px;
  font-size: 16px;
  font-weight: 500;
}

/* ========== Advantages ========== */
.advantages {
  position: relative;
  z-index: 5;
  padding: 32px 4.1667% 40px;
  background: #f3f3f3;
}

.advantages__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: none;
  margin: 0;
}

.advantage-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
  padding: 28px 24px;
  border-radius: 0;
  overflow: hidden;
  isolation: isolate;
}

.advantage-card--muted {
  background: #e7e7e7;
  color: #1a1a1a;
}

.advantage-card--sand {
  background: #c6a888;
  color: #fff;
}

.advantage-card--dark {
  background: #2a2a2a;
  color: #fff;
}

.advantage-card__title {
  position: relative;
  z-index: 2;
  margin: 0;
  max-width: 58%;
  font-size: clamp(20px, 1.6vw, 28px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.advantage-card__cta {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  width: fit-content;
  color: inherit;
  text-decoration: none;
}

.advantage-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  flex-shrink: 0;
}

.advantage-card--muted .advantage-card__icon {
  background: #1a1a1a;
  color: #fff;
}

.advantage-card--sand .advantage-card__icon,
.advantage-card--dark .advantage-card__icon {
  background: #fff;
  color: #1a1a1a;
}

.advantage-card__cta-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.advantage-card__visual {
  position: absolute;
  right: -4px;
  bottom: -6px;
  z-index: 1;
  width: min(62%, 200px);
  pointer-events: none;
}

.advantage-card__art {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.12));
}

/* ========== Products carousel ========== */
.products {
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 10% 0%, rgba(198, 168, 136, 0.18), transparent 55%),
    radial-gradient(ellipse 70% 50% at 90% 100%, rgba(15, 18, 34, 0.06), transparent 50%),
    #f7f5f2;
  color: #1a1a1a;
  overflow: hidden;
}

.products__inner {
  padding: 56px 4.1667% 64px;
}

.products__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.products__eyebrow {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8a7a6a;
}

.products__title {
  margin: 0;
  font-size: clamp(32px, 3.2vw, 48px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #0f1222;
}

.products__controls {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.products__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 0;
  background: #0f1222;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.products__btn:hover:not(:disabled) {
  background: #a54832;
}

.products__btn:disabled {
  opacity: 0.28;
  cursor: default;
}

.products__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  container-type: inline-size;
}

.products__viewport::-webkit-scrollbar {
  display: none;
}

.products__track {
  display: flex;
  gap: 8px;
  width: max-content;
}

.product-card {
  flex: 0 0 min(72cqi, 260px);
  scroll-snap-align: start;
  background: #fff;
  border-radius: 0;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 18, 34, 0.08);
}

.product-card__media {
  position: relative;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 8px 6px;
  overflow: hidden;
  background: #efeae3;
}

.product-card--pearl .product-card__media {
  background: linear-gradient(160deg, #f4f1ec 0%, #e8e2d8 100%);
}

.product-card--mist .product-card__media {
  background: linear-gradient(160deg, #eceff2 0%, #dde3e8 100%);
}

.product-card--sand .product-card__media {
  background: linear-gradient(160deg, #f0e6d8 0%, #e2d2bc 100%);
}

.product-card--stone .product-card__media {
  background: linear-gradient(160deg, #e9e7e2 0%, #d8d4cc 100%);
}

.product-card__media img {
  width: 94%;
  height: 94%;
  object-fit: contain;
  transition: transform 0.45s ease;
}

.product-card:hover .product-card__media img {
  transform: scale(1.05);
}

.product-card__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  background: #a54832;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.product-card__cta:hover {
  background: #0f1222;
  color: #fff;
}

.product-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.product-card__link .product-card__cta {
  display: flex;
}

.product-card__name {
  margin: 0;
  padding: 16px 14px 18px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #2a2a2a;
  background: #fff;
}

@media (min-width: 670px) {
  .product-card {
    flex-basis: calc((100cqi - 16px) / 3);
  }
}

@media (min-width: 960px) {
  .products__inner {
    padding: 72px 4.1667% 80px;
  }

  .products__head {
    margin-bottom: 36px;
  }

  .product-card {
    flex-basis: calc((100cqi - 32px) / 5);
  }

  .product-card__cta {
    min-height: 48px;
    font-size: 13px;
  }

  .product-card__name {
    padding: 18px 16px 20px;
    font-size: 17px;
  }
}

@media (max-width: 669px) {
  .products__inner {
    padding: 40px 12px 48px;
  }

  .products__head {
    align-items: center;
  }

  .products__title {
    font-size: 28px;
  }
}

/* ========== Applications (Tətbiq sahələri) ========== */
.apps {
  background: #fff;
  color: #383838;
}

.apps-page {
  background: #fff;
  min-height: 50vh;
}

.apps--page {
  padding-bottom: 64px;
}

.apps__inner {
  padding: 54px 4.1667% 40px;
}

.apps--page .apps__inner {
  padding-top: 28px;
  padding-bottom: 0;
}

.apps__breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 24px;
  font-size: 13px;
  line-height: 1.35;
  color: #9aa0a6;
}

.apps__breadcrumb a {
  color: #9aa0a6;
  text-decoration: none;
}

.apps__breadcrumb a:hover {
  color: #141313;
}

.apps__subtitle {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #6a6a6a;
}

.apps__subtitle--page {
  margin-top: 12px;
}

.apps__title {
  margin: 30px 0 0;
  font-size: clamp(40px, 3.5vw, 56px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #2a2a2a;
}

.apps--page .apps__title {
  margin-top: 0;
}

.apps__items {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 32px;
}

.app-item {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 560px;
  overflow: hidden;
  background: #101222;
}

.app-item__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.app-item__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.2));
  pointer-events: none;
}

.app-item__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1);
  transform-origin: center center;
  will-change: transform;
  animation: app-media-zoom-out 22s ease-in-out infinite alternate;
}

@keyframes app-media-zoom-out {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.18);
  }
}

@media (prefers-reduced-motion: reduce) {
  .app-item__media img {
    animation: none;
    transform: scale(1);
  }
}

.app-item__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  flex-direction: column-reverse;
  width: 100%;
  padding: 8px;
  box-sizing: border-box;
}

.app-item__info {
  background: #fff;
  padding: 18px 18px 14px;
}

.app-item__name {
  margin: 0;
  font-size: clamp(22px, 2.25vw, 36px);
  font-weight: 500;
  line-height: 1;
  color: #000;
}

.app-item__desc {
  margin: 16px 0 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  color: #000;
}

.app-item__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 4px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.app-item__tag {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-width: calc(50% - 2px);
  margin-top: 4px;
  padding: 8px 12px;
  background: #515151;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  box-sizing: border-box;
}

.app-item__tag--light {
  width: 100%;
  flex: 1 1 100%;
  min-width: 100%;
  margin-top: 0;
  background: #ededed;
  color: #000;
}

.app-item__tag:nth-child(3) {
  margin-left: 0;
}

.app-item__nav {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.app-item__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-height: 56px;
  margin-top: 8px;
  padding: 0 18px;
  background: #fff;
  color: #000;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  box-sizing: border-box;
  transition: background 0.2s ease, color 0.2s ease;
}

.app-item__btn svg {
  flex-shrink: 0;
  fill: currentColor;
}

.app-item__btn--accent {
  background: #101222;
  color: #fff;
}

.app-item__btn:hover {
  background: #101222;
  color: #fff;
}

.app-item__btn--accent:hover {
  background: #000;
}

.apps__actions {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 8px;
}

.apps__action {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 42px;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  box-sizing: border-box;
  transition: color 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

.apps__action--map {
  background: #ededed;
  color: #000;
}

.apps__action--all {
  background: #2a2a2a;
  color: #fff;
}

.apps__action--map:hover {
  color: #666;
}

.apps__action--all:hover {
  opacity: 0.9;
}

/* Desktop: right-side panel like Incity projects */
@media (min-width: 960px) {
  .apps__inner {
    padding: 64px 4.1667% 48px;
  }

  .apps__title {
    margin-top: 42px;
  }

  .apps__items {
    margin-top: 32px;
  }

  .app-item {
    height: 80vh;
    min-height: 640px;
  }

  .app-item__media::after {
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.2));
  }

  .app-item__content {
    top: 0;
    right: 0;
    bottom: auto;
    left: auto;
    width: 67.647%;
    flex-direction: column;
    padding: 8px;
  }

  .app-item__nav {
    flex-direction: row;
  }

  .app-item__btn {
    flex: 1;
    min-height: 60px;
    margin-top: 0;
  }

  .app-item__btn:nth-child(2) {
    margin-left: 8px;
  }

  .app-item__info {
    margin-top: 8px;
    padding: 22px 22px 16px;
  }

  .app-item__name {
    font-size: 28px;
  }

  .app-item__desc {
    margin-top: 16px;
    font-size: 16px;
  }

  .app-item__tags {
    flex-wrap: wrap;
    margin-top: 28px;
    gap: 0;
  }

  .app-item__tag {
    flex: 1;
    min-width: calc(50% - 2px);
    margin-top: 4px;
    margin-left: 0;
    padding: 12px 10px;
  }

  .app-item__tag--light {
    flex: 1 1 100%;
    width: 100%;
    min-width: 100%;
    margin-top: 0;
    margin-left: 0;
  }

  .app-item__tag:nth-child(3) {
    margin-left: 4px;
  }

  .apps__actions {
    flex-direction: row;
    justify-content: space-between;
    margin-top: 8px;
  }

  .apps__action {
    width: calc(50% - 4px);
    height: 56px;
    margin-top: 8px;
  }
}

@media (min-width: 1280px) {
  .apps__inner {
    padding-top: 3.5vw;
    padding-bottom: 3vw;
  }

  .apps__title {
    margin-top: 3.5vw;
    font-size: 3.5vw;
  }

  .apps__items {
    margin-top: 2vw;
  }

  .app-item__content {
    width: 37.0588%;
    padding: 0.5vw;
  }

  .app-item__btn {
    min-height: 3.75vw;
    margin-top: 0;
    font-size: 0.95vw;
  }

  .app-item__btn:nth-child(2) {
    margin-left: 0.5vw;
  }

  .app-item__info {
    margin-top: 0.5vw;
    padding: 1.4vw 1.4vw 1vw;
  }

  .app-item__name {
    font-size: 2.25vw;
  }

  .app-item__desc {
    margin-top: 1vw;
    font-size: 1vw;
  }

  .app-item__tags {
    margin-top: 2vw;
  }

  .app-item__tag {
    font-size: 0.875vw;
    padding-top: 0.7vw;
    padding-bottom: 0.7vw;
  }

  .app-item__tag:nth-child(3) {
    margin-left: 0.25vw;
  }

  .apps__actions {
    margin-top: 0.5vw;
  }

  .apps__action {
    width: calc(50% - 0.25vw);
    height: 4vw;
    margin-top: 0.5vw;
    font-size: 0.9vw;
  }
}

@media (min-width: 1600px) {
  .apps__title {
    margin-top: 56px;
    font-size: 56px;
  }

  .apps__items {
    margin-top: 32px;
  }

  .app-item__content {
    padding: 8px;
  }

  .app-item__btn {
    min-height: 60px;
    font-size: 15px;
  }

  .app-item__btn:nth-child(2) {
    margin-left: 8px;
  }

  .app-item__info {
    margin-top: 8px;
    padding: 22px 22px 16px;
  }

  .app-item__name {
    font-size: 36px;
  }

  .app-item__desc {
    margin-top: 16px;
    font-size: 16px;
  }

  .app-item__tags {
    margin-top: 32px;
  }

  .app-item__tag {
    font-size: 14px;
    padding: 12px 10px;
  }

  .apps__action {
    width: calc(50% - 4px);
    height: 64px;
    margin-top: 8px;
    font-size: 15px;
  }
}

/* ========== Responsive ========== */
@media (max-width: 1100px) {
  .header-inner {
    min-height: 54px;
    padding: 0 24px;
    gap: 16px;
  }

  .nav-list {
    gap: 18px;
  }

  .nav-list a,
  .nav-link,
  .btn-menu__label {
    font-size: 14px;
  }

  .hero-content {
    padding: 0 0 56px 24px;
  }
}

@media (max-width: 900px) {
  .btn-menu {
    display: inline-flex;
    grid-column: 1;
    justify-self: start;
  }

  .nav-left {
    display: none;
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
    gap: 12px;
  }

  .nav-center {
    justify-self: center;
    grid-column: 2;
    width: 100px;
  }

  .nav-right {
    grid-column: 3;
    justify-self: end;
    gap: 0;
  }

  .nav-right .nav-link:not(.nav-link--phone),
  .nav-divider {
    display: none;
  }

  .logo img {
    width: 100px;
    height: 100px;
  }

  .hero {
    height: 72svh;
    min-height: 360px;
  }

  .hero-content {
    padding: 0 0 40px 20px;
    max-width: 90%;
  }

  .hero-content h1 {
    font-size: clamp(36px, 10vw, 56px);
  }

  .advantages {
    padding: 20px 16px 28px;
  }

  .advantages__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .advantage-card {
    min-height: 200px;
    padding: 22px 18px;
  }

  .advantage-card__title {
    max-width: 62%;
    font-size: 20px;
  }

  .apps__inner {
    padding: 36px 20px 28px;
  }

  .app-item {
    height: 72vh;
    min-height: 440px;
  }

  .app-item__content {
    width: 100%;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    flex-direction: column-reverse;
    padding: 8px;
  }

  .app-item__nav {
    flex-direction: column;
  }

  .app-item__btn {
    flex: none;
    width: 100%;
    min-height: 52px;
    margin-top: 8px;
  }

  .app-item__btn:nth-child(2) {
    margin-left: 0;
  }

  .app-item__media::after {
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.2));
  }
}

@media (max-width: 600px) {
  .header-inner {
    grid-template-columns: auto 1fr;
  }

  .nav-center {
    grid-column: 2;
    justify-self: end;
    width: 88px;
  }

  .nav-right {
    display: none;
  }

  .logo img {
    width: 88px;
    height: 88px;
  }

  .hero-content {
    padding: 0 0 32px 16px;
  }

  .advantages__grid {
    grid-template-columns: 1fr;
  }

  .advantage-card {
    min-height: 180px;
  }

  .advantage-card__title {
    max-width: 55%;
  }

  .apps__inner {
    padding: 28px 12px 24px;
  }

  .app-item {
    height: auto;
    min-height: 0;
    aspect-ratio: 3 / 4;
  }

  .app-item__info {
    padding: 14px;
  }

  .app-item__btn {
    padding: 14px 16px;
    font-size: 14px;
  }
}

/* ========== Awards / Mükafatlar (İncity-style) ========== */
.awards {
  background: #2e2e2e;
  color: #fff;
}

.awards__inner {
  padding: 48px 4.1667% 0;
}

.awards__title {
  margin: 0 0 28px;
  font-size: clamp(32px, 3.4vw, 48px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
}

.awards__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  container-type: inline-size;
}

.awards__viewport::-webkit-scrollbar {
  display: none;
}

.awards__track {
  display: flex;
  gap: 8px;
  width: max-content;
  padding-bottom: 8px;
}

.award-card {
  flex: 0 0 min(72cqi, 220px);
  aspect-ratio: 1;
  scroll-snap-align: start;
  background: #fff;
  overflow: hidden;
}

.award-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  padding: 10%;
  box-sizing: border-box;
  background: #fff;
}

.awards__nav {
  display: flex;
  margin-top: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.awards__btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease, opacity 0.2s ease;
}

.awards__btn + .awards__btn {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.awards__btn:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.06);
}

.awards__btn:disabled {
  opacity: 0.28;
  cursor: default;
}

@media (min-width: 670px) {
  .award-card {
    flex-basis: calc((100cqi - 24px) / 4);
  }
}

@media (min-width: 960px) {
  .awards__inner {
    padding: 64px 4.1667% 0;
  }

  .awards__title {
    margin-bottom: 36px;
  }

  .award-card {
    flex-basis: calc((100cqi - 32px) / 5);
  }

  .awards__btn {
    min-height: 64px;
  }
}

@media (max-width: 669px) {
  .awards__inner {
    padding: 36px 12px 0;
  }

  .awards__title {
    font-size: 28px;
    margin-bottom: 20px;
  }
}

/* ========== News / Faydalı məlumatlar (İncity-style homepage) ========== */
.news {
  background: #fff;
  color: #2a2a2a;
}

.news__inner {
  padding: 54px 4.1667% 40px;
}

.news__subtitle {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #6a6a6a;
}

.news__title {
  margin: 18px 0 0;
  font-size: clamp(36px, 3.5vw, 56px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #2a2a2a;
}

.news__content {
  margin-top: 28px;
}

.news__tabs {
  display: flex;
  gap: 8px;
}

.news__tab {
  flex: 1;
  height: 42px;
  border: 0;
  border-radius: 0;
  background: #ededed;
  color: #111;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.news__tab.is-active {
  background: #2a2a2a;
  color: #fff;
  pointer-events: none;
}

.news__tab:not(.is-active):hover {
  background: #e0e0e0;
}

.news__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 8px;
}

/* Hard cap: never render more than 3 news cards */
.news__grid > .news-card:nth-child(n + 4) {
  display: none !important;
}

.news-card {
  position: relative;
  display: block;
  min-height: 360px;
  overflow: hidden;
  background: #0f1222;
  color: #fff;
  text-decoration: none;
}

.news-card[hidden] {
  display: none !important;
}

.news-card__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.news-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 35%, rgba(0, 0, 0, 0.55) 100%);
  pointer-events: none;
}

.news-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.news-card__content {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  box-sizing: border-box;
}

.news-card__title {
  margin: 0;
  max-width: calc(100% - 64px);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.news-card__link {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #fff;
  color: #111;
}

.news-card--accent .news-card__link {
  background: #a54832;
  color: #fff;
}

.news-card:hover .news-card__link {
  background: #111;
  color: #fff;
}

.news__more {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 42px;
  margin-top: 8px;
  background: #ededed;
  color: #111;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease;
}

.news__more:hover {
  color: #666;
}

@media (min-width: 670px) {
  .news__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .news-card {
    min-height: 420px;
    aspect-ratio: 4 / 5;
  }
}

@media (min-width: 960px) {
  .news__inner {
    padding: 64px 4.1667% 48px;
  }

  .news__content {
    margin-top: 36px;
  }

  .news-card {
    min-height: 0;
    max-height: 520px;
  }

  .news-card__content {
    padding: 22px;
  }

  .news-card__title {
    font-size: 22px;
  }
}

@media (max-width: 669px) {
  .news__inner {
    padding: 36px 12px 28px;
  }

  .news__tabs {
    gap: 6px;
  }

  .news__tab {
    font-size: 13px;
  }
}

/* ========== Certificates page (Azin sertifikatlar exact layout) ========== */
.certs-page {
  background: #fff;
}

.certs {
  color: #141313;
  padding-bottom: 72px;
}

.certs__inner {
  width: calc(100% - 80px);
  max-width: 1360px;
  margin: 0 auto;
  padding: 24px 0 0;
  box-sizing: border-box;
}

.certs__breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 28px;
  font-size: 13px;
  line-height: 1.35;
  color: #9aa0a6;
}

.certs__breadcrumb a {
  color: #9aa0a6;
  text-decoration: none;
}

.certs__breadcrumb a:hover {
  color: #141313;
}

.certs__tabs-list {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #e3e3e3;
}

.certs__tabs-item {
  margin: 0;
  margin-bottom: -1px;
  padding: 0 0 12px;
  border: 0;
  border-bottom: 1px solid transparent;
  background: transparent;
  color: #141313;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.35s cubic-bezier(0.33, 1, 0.68, 1), border-color 0.35s cubic-bezier(0.33, 1, 0.68, 1);
}

.certs__tabs-item:not(:first-child) {
  margin-left: 26px;
}

.certs__tabs-item.is-active {
  color: #a54832;
  border-bottom-color: #a54832;
}

.certs__tabs-item:hover {
  color: #a54832;
}

.certs__blocks {
  margin-top: 26px;
}

.certs__block {
  display: none;
}

.certs__block.is-active {
  display: block;
}

.certs__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.certs-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.certs-card__frame {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 306px;
  padding: 18px 17px;
  border: 1px solid #e3e3e3;
  box-sizing: border-box;
  background: #fff;
}

.certs-card__media {
  display: block;
  width: 100%;
  height: 100%;
}

.certs-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.certs-card__body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  min-height: 72px;
}

.certs-card__title {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
  color: #141313;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.certs-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #141313;
  text-decoration: none;
}

.certs-card__btn:hover {
  color: #a54832;
}

.certs-card__icon {
  display: inline-flex;
  color: #a54832;
}

.certs-card__caption {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
}

.certs-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
}

.certs-lightbox[hidden] {
  display: none !important;
}

.certs-lightbox__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(15, 18, 34, 0.72);
  cursor: pointer;
}

.certs-lightbox__dialog {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  max-height: calc(100vh - 48px);
  padding: 28px 24px 20px;
  background: #fff;
  overflow: auto;
  box-sizing: border-box;
}

.certs-lightbox__close {
  position: absolute;
  top: 8px;
  right: 12px;
  border: 0;
  background: transparent;
  color: #141313;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.certs-lightbox__img {
  display: block;
  width: 100%;
  height: auto;
  max-height: calc(100vh - 140px);
  object-fit: contain;
}

.certs-lightbox__title {
  margin: 14px 0 0;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

@media (min-width: 640px) {
  .certs__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .certs__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  .certs__grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

@media (max-width: 859px) {
  .certs__inner {
    width: calc(100% - 32px);
  }

  .certs__tabs-item {
    font-size: 17px;
  }

  .certs__tabs-item:not(:first-child) {
    margin-left: 18px;
  }
}

/* ========== Press / Faydalı məlumatlar (Dogma press-center exact) ========== */
.press-page {
  background: #fff;
  min-height: 50vh;
  padding-top: 120px;
}

body:has(.press-page) .site-header {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

body:has(.press-page) .site-header::before {
  background: #0f1222;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.press {
  background: #fff;
  color: #141313;
}

.press--page {
  padding-bottom: 80px;
}

.press__inner {
  width: calc(100% - 80px);
  max-width: 1360px;
  margin: 20px auto 0;
  padding: 0 0 48px;
  box-sizing: border-box;
  display: grid;
  gap: 40px;
}

.press__breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 13px;
  line-height: 1.3;
  color: #9aa0a6;
}

.press__breadcrumb a {
  color: #9aa0a6;
  text-decoration: none;
}

.press__breadcrumb a:hover {
  color: #141313;
}

.press__head {
  display: grid;
  gap: 24px;
  justify-items: start;
}

.press__title {
  margin: 0;
  max-width: 18ch;
  font-size: 40px;
  font-weight: 500;
  line-height: 39px;
  letter-spacing: -0.02em;
  color: #141313;
}

.press__filter {
  display: block;
  width: 100%;
  max-width: 250px;
}

.press__filter select {
  width: 100%;
  height: 48px;
  padding: 0 40px 0 16px;
  border: 1px solid #d8dce0;
  border-radius: 0;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5' fill='none' stroke='%23141313' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 14px center;
  color: #141313;
  font: inherit;
  font-size: 14px;
  line-height: 1;
  appearance: none;
  cursor: pointer;
}

.press__filter select:focus {
  outline: 2px solid #a54832;
  outline-offset: 2px;
}

.press__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.press-card {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
  position: relative;
  color: inherit;
  text-decoration: none;
  background: transparent;
}

.press-card[hidden] {
  display: none !important;
}

.press-card__media {
  display: block;
  position: relative;
  height: 280px;
  overflow: hidden;
  background: #e8e8e8;
}

.press-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

.press-card:hover .press-card__media img {
  transform: scale(1.03);
}

.press-card__body {
  display: grid;
  align-content: space-between;
  gap: 16px;
  padding: 20px;
  background: #f4f4f5;
  box-sizing: border-box;
  min-height: 0;
}

.press-card__top {
  display: grid;
  gap: 10px;
}

.press-card__title {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 112%;
  letter-spacing: -0.32px;
  color: #141313;
}

.press-card__title a {
  color: inherit;
  text-decoration: none;
}

.press-card__title a:hover {
  color: #a54832;
}

.press-card__excerpt {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: -0.02em;
  color: #6e7782;
}

.press-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.press-card__date {
  font-size: 12px;
  line-height: 1.12;
  letter-spacing: -0.24px;
  color: #141313;
}

.press-card__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-right: 3px;
  font-size: 12px;
  font-weight: 500;
  line-height: 112%;
  letter-spacing: -0.24px;
  color: #141313;
  text-decoration: none;
}

.press-card__more:hover {
  color: #a54832;
}

.press__pages {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.press__page {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 8px;
  color: #c5c9cd;
  font-size: 24px;
  font-weight: 400;
  line-height: 27px;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.press__page.is-active {
  color: #141313;
  pointer-events: none;
}

.press__page:hover {
  color: #141313;
}

.press__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.press__all {
  display: none;
}

@media (min-width: 860px) {
  .press__grid {
    grid-template-columns: repeat(2, minmax(310px, 1fr));
    gap: 40px;
  }

  .press-card {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
  }

  .press-card__media {
    height: 408px;
  }

  .press-card__body {
    min-height: 408px;
  }

  .press-card__title {
    font-size: 20px;
    letter-spacing: -0.4px;
    line-height: 112%;
  }
}

@media (max-width: 859px) {
  .press__inner {
    width: calc(100% - 32px);
    gap: 28px;
  }

  .press__title {
    font-size: 32px;
    line-height: 1.05;
  }

  .press__filter {
    max-width: 100%;
  }
}

/* ========== Article / blog inner (Dogma news detail exact) ========== */
.article-page {
  background: #fff;
}

.article {
  color: #141313;
}

.article__inner {
  width: calc(100% - 80px);
  max-width: 1360px;
  margin: 0 auto;
  padding: 24px 0 80px;
  box-sizing: border-box;
}

.article__breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 28px;
  font-size: 13px;
  line-height: 1.35;
  color: #9aa0a6;
}

.article__breadcrumb a {
  color: #9aa0a6;
  text-decoration: none;
}

.article__breadcrumb a:hover {
  color: #141313;
}

.article__breadcrumb span:last-child {
  max-width: 48ch;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.article__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}

.article__chip {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin-bottom: 18px;
  padding: 0 14px;
  border: 0;
  border-radius: 8px;
  background: #f4f4f5;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  color: #141313;
}

.article__title {
  margin: 0;
  max-width: 18em;
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #141313;
}

.article__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
}

.article__posted {
  display: grid;
  gap: 6px;
}

.article__posted-label {
  font-size: 12px;
  line-height: 1.2;
  color: #9aa0a6;
}

.article__date {
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #141313;
}

.article__share {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.article__share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid #e1e4e8;
  background: #fff;
  color: #141313;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.article__share-btn:hover,
.article__share-btn[data-copied="true"] {
  border-color: #141313;
  color: #a54832;
}

.article__hero {
  margin-top: 28px;
  overflow: hidden;
  background: #e8e8e8;
  aspect-ratio: 3 / 2;
}

.article__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.article__body {
  max-width: 68ch;
  margin-top: 28px;
}

.article__body p {
  margin: 0 0 1.15em;
  font-size: 16px;
  line-height: 1.65;
  color: #2a2f36;
}

.article__body p:last-child {
  margin-bottom: 0;
}

.article__aside-title {
  margin: 0 0 20px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.article__related {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 18px;
}

.article-teaser {
  display: grid;
  gap: 8px;
  text-decoration: none;
  color: inherit;
  padding-bottom: 18px;
  border-bottom: 1px solid #ececec;
}

.article__related li:last-child .article-teaser {
  border-bottom: 0;
  padding-bottom: 0;
}

.article-teaser__title {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: #141313;
  transition: color 0.2s ease;
}

.article-teaser:hover .article-teaser__title {
  color: #a54832;
}

.article-teaser__date {
  font-size: 12px;
  line-height: 1.2;
  color: #6e7782;
}

.article-also {
  margin-top: 64px;
}

.article-also__title {
  margin: 0 0 28px;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.article-also__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 960px) {
  .article__layout {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 56px;
  }

  .article__aside {
    position: sticky;
    top: 120px;
  }

  .article-also__grid {
    grid-template-columns: repeat(2, minmax(310px, 1fr));
  }
}

@media (max-width: 859px) {
  .article__inner {
    width: calc(100% - 32px);
    padding-bottom: 56px;
  }

  .article__breadcrumb span:last-child {
    max-width: 100%;
    white-space: normal;
  }

  .article__share {
    width: 100%;
  }
}

/* ========== Consult form (İncity-style) ========== */

/* ========== Consult (homepage) ========== */
.consult {
  background: #fff;
}

.consult__grid {
  display: flex;
  flex-direction: column-reverse;
}

.consult__media {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #0f1222;
}

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

.consult__panel {
  position: relative;
  width: 100%;
  background: #2e2e2e;
  color: #fff;
}

.consult__panel-inner {
  position: relative;
  z-index: 1;
  padding: 36px 20px 40px;
}

.consult__eyebrow {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.55);
}

.consult__title {
  margin: 28px 0 0;
  max-width: none;
  font-size: clamp(32px, 4.2vw, 48px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #fff;
}

.consult-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 28px;
  max-width: 520px;
}

.consult-form__field {
  display: block;
  width: 100%;
}

.consult-form__input {
  width: 100%;
  min-height: 56px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font: inherit;
  font-size: 15px;
  line-height: 1.2;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.consult-form__input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.consult-form__input:hover,
.consult-form__input:focus {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.06);
}

.consult-form__agree {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 10px;
  cursor: pointer;
}

.consult-form__checkbox {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.consult-form__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 0;
  color: transparent;
  background: transparent;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.consult-form__checkbox:checked + .consult-form__check {
  background: #a54832;
  border-color: #a54832;
  color: #fff;
}

.consult-form__checkbox:focus-visible + .consult-form__check {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.consult-form__agree-text {
  font-size: 13px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.72);
}

.consult-form__agree-text a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.consult-form__status {
  margin: 4px 0 0;
  font-size: 14px;
  line-height: 1.3;
  color: #9fd6a8;
}

.consult-form__status.is-error {
  color: #ff8f7a;
}

.consult-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-height: 56px;
  margin-top: 8px;
  padding: 0 18px;
  border: 0;
  border-radius: 0;
  background: #a54832;
  color: #fff;
  font: inherit;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.consult-form__submit:hover:not(:disabled) {
  background: #111;
}

.consult-form__submit:disabled {
  opacity: 0.7;
  cursor: wait;
}

.consult-form__submit svg {
  flex-shrink: 0;
}

.consult__more {
  margin: 18px 0 0;
  max-width: 520px;
  font-size: 13px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.55);
}

.consult__more a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (min-width: 960px) {
  .consult__grid {
    flex-direction: row;
    min-height: min(100vh, 920px);
  }

  .consult__media,
  .consult__panel {
    width: 50%;
    aspect-ratio: auto;
    min-height: inherit;
  }

  .consult__panel-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 64px 8% 64px 6%;
    box-sizing: border-box;
  }

  .consult__title {
    margin-top: 32px;
    max-width: none;
    font-size: clamp(36px, 2.8vw, 48px);
    line-height: 1.2;
  }

  .consult-form {
    margin-top: 40px;
  }
}

@media (max-width: 669px) {
  .consult__title {
    max-width: none;
    font-size: clamp(28px, 8vw, 34px);
  }
}

.paint-page {
  --paint-logo-size: 140px;
  --paint-logo-gap: clamp(16px, 2.4vw, 28px);
  background: #fff;
  min-height: 60vh;
  padding-top: calc(var(--paint-logo-size) + var(--paint-logo-gap));
}

body:has(.paint-page) .site-header {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

body:has(.paint-page) .site-header::before {
  background: #0f1222;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

@media (max-width: 959px) {
  .paint-page {
    --paint-logo-size: 100px;
  }
}

@media (max-width: 669px) {
  .paint-page {
    --paint-logo-size: 88px;
  }
}

/* ========== Boya sorğusu — UTLC-style calculation request ========== */
.paint-request {
  --paint-line: #d9d9d9;
  --paint-muted: #8a8a8a;
  --paint-ink: #111;
  --paint-accent: #a54832;
  --paint-panel: #f3f3f3;
  position: relative;
  background:
    linear-gradient(180deg, #fafafa 0%, #fff 28%, #fff 100%);
  color: var(--paint-ink);
  border-top: 1px solid var(--paint-line);
}

.paint-request::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 72px;
  height: 3px;
  transform: translateX(-50%);
  background: var(--paint-accent);
}

.paint-request__inner {
  width: min(920px, calc(100% - 40px));
  margin-inline: auto;
  padding: 20px 0 72px;
}

.paint-request__title {
  margin: 0 auto 36px;
  max-width: 16ch;
  font-size: clamp(34px, 6vw, 56px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  text-align: center;
  color: var(--paint-ink);
}

.paint-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.paint-form__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.paint-form__pair {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.paint-form__field {
  display: block;
  width: 100%;
  min-width: 0;
}

.paint-form__field--full {
  grid-column: 1 / -1;
}

.paint-form__block {
  min-width: 0;
}

.paint-form__block--spaced {
  margin-top: 8px;
}

.paint-form__label {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--paint-ink);
}

.paint-form__input,
.paint-form__select,
.paint-form__textarea {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border: 1px solid var(--paint-line);
  border-radius: 0;
  background: #fff;
  color: var(--paint-ink);
  font: inherit;
  font-size: 15px;
  line-height: 1.3;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
  appearance: none;
}

.paint-form__input::placeholder,
.paint-form__textarea::placeholder {
  color: var(--paint-muted);
}

.paint-form__input:hover,
.paint-form__select:hover,
.paint-form__textarea:hover,
.paint-form__input:focus,
.paint-form__select:focus,
.paint-form__textarea:focus {
  border-color: #bdbdbd;
  box-shadow: 0 0 0 1px rgba(165, 72, 50, 0.12);
}

.paint-form__select {
  background-image:
    linear-gradient(45deg, transparent 50%, #666 50%),
    linear-gradient(135deg, #666 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 2px),
    calc(100% - 12px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 40px;
  cursor: pointer;
}

.paint-form__textarea {
  min-height: 120px;
  resize: vertical;
}

.paint-form__panel {
  position: relative;
  margin: 8px 0 0;
  padding: 28px 20px 24px;
  border: 0;
  background: var(--paint-panel);
}

.paint-form__panel-mark {
  position: absolute;
  top: 18px;
  left: 20px;
  float: none;
  width: 36px;
  height: 36px;
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--paint-accent);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  padding: 0;
}

.paint-form__panel-head {
  padding-left: 52px;
  margin-bottom: 20px;
}

.paint-form__panel-kicker {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--paint-muted);
}

.paint-form__panel-title {
  margin: 4px 0 0;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.paint-form__rows {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.paint-form__row {
  position: relative;
}

.paint-form__row-remove {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 28px;
  height: 28px;
  border: 1px solid var(--paint-line);
  background: #fff;
  color: #333;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}

.paint-form__row-remove:hover {
  border-color: var(--paint-accent);
  color: var(--paint-accent);
}

.paint-form__add {
  align-self: flex-start;
  margin-top: 14px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--paint-accent);
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.paint-form__add:hover {
  color: #111;
}

.paint-form__radios {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.paint-form__radio {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid var(--paint-line);
  background: #fff;
  cursor: pointer;
  font-size: 15px;
}

.paint-form__radio input {
  accent-color: var(--paint-accent);
  width: 16px;
  height: 16px;
}

.paint-form__radio:has(input:checked) {
  border-color: var(--paint-accent);
  box-shadow: inset 0 0 0 1px var(--paint-accent);
}

.paint-form__toggles {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 4px;
}

.paint-form__toggle {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
  cursor: pointer;
}

.paint-form__toggle > input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.paint-form__switch {
  position: relative;
  width: 48px;
  height: 28px;
  margin-top: 2px;
  border-radius: 999px;
  background: #d8d8d8;
  transition: background 0.2s ease;
}

.paint-form__switch::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.2s ease;
}

.paint-form__toggle > input:checked + .paint-form__switch {
  background: var(--paint-accent);
}

.paint-form__toggle > input:checked + .paint-form__switch::after {
  transform: translateX(20px);
}

.paint-form__toggle > input:focus-visible + .paint-form__switch {
  outline: 2px solid var(--paint-accent);
  outline-offset: 2px;
}

.paint-form__toggle-text {
  font-size: 14px;
  line-height: 1.45;
  color: #444;
}

.paint-form__toggle-text strong {
  display: block;
  margin-bottom: 2px;
  color: var(--paint-ink);
  font-size: 15px;
  font-weight: 600;
}

.paint-form__consents {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
}

.paint-form__agree {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.4;
  color: #444;
}

.paint-form__agree a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.paint-form__checkbox {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.paint-form__check {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border: 1px solid #bdbdbd;
  background: #fff;
  position: relative;
}

.paint-form__checkbox:checked + .paint-form__check {
  border-color: var(--paint-accent);
  background: var(--paint-accent);
}

.paint-form__checkbox:checked + .paint-form__check::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.paint-form__checkbox:focus-visible + .paint-form__check {
  outline: 2px solid var(--paint-accent);
  outline-offset: 2px;
}

.paint-form__status {
  margin: 0;
  font-size: 14px;
  line-height: 1.35;
  color: #2f7a45;
}

.paint-form__status.is-error {
  color: #b42318;
}

.paint-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 220px;
  min-height: 52px;
  margin-top: 8px;
  margin-inline: auto;
  padding: 0 24px;
  border: 0;
  border-radius: 0;
  background: var(--paint-accent);
  color: #fff;
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.paint-form__submit:hover:not(:disabled) {
  background: #111;
}

.paint-form__submit:disabled {
  opacity: 0.7;
  cursor: wait;
}

.paint-form__submit--ghost {
  background: #111;
  max-width: none;
}

.paint-request__success {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(17, 17, 17, 0.45);
}

.paint-request__success[hidden] {
  display: none;
}

.paint-request__success-card {
  width: min(420px, 100%);
  padding: 36px 28px;
  background: #fff;
  text-align: left;
}

.paint-request__success-kicker {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--paint-accent);
}

.paint-request__success-title {
  margin: 10px 0 0;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.paint-request__success-text {
  margin: 12px 0 24px;
  font-size: 15px;
  line-height: 1.45;
  color: #555;
}

@media (min-width: 720px) {
  .paint-form__grid {
    grid-template-columns: 1fr 1fr;
  }

  .paint-form__pair {
    grid-template-columns: 1fr 1fr;
  }

  .paint-form__pair--triple {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .paint-form__radios {
    grid-template-columns: 1fr 1fr;
  }

  .paint-form__panel {
    padding: 32px 28px 28px;
  }

  .paint-form__panel-mark {
    left: 28px;
  }

  .paint-form__panel-head {
    padding-left: 56px;
  }
}

@media (min-width: 1100px) {
  .paint-request__inner {
    width: min(820px, calc(100% - 80px));
    margin-left: auto;
    margin-right: auto;
    padding: 48px 0 96px;
  }

  .paint-request__title {
    font-size: clamp(44px, 4.2vw, 64px);
  }
}

/* ========== Contacts / Əlaqə (İncity /contacts exact layout) ========== */
.contacts-page {
  background: #fff;
}

.contacts {
  background: #fff;
  color: #1a1a1a;
}

.contacts__intro {
  max-width: 100%;
  padding: 28px 4.1667% 28px;
  box-sizing: border-box;
}

.contacts--page .contacts__intro {
  padding-top: 8px;
}

.contacts__breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 20px;
  font-size: 13px;
  line-height: 1.3;
  color: #8a8a8a;
}

.contacts__breadcrumb a {
  color: #8a8a8a;
  text-decoration: none;
}

.contacts__breadcrumb a:hover {
  color: #1a1a1a;
}

.contacts__breadcrumb-sep {
  color: #8a8a8a;
}

.contacts__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px 32px;
}

.contacts__title {
  margin: 0;
  font-size: clamp(44px, 8vw, 96px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #1a1a1a;
}

.contacts__social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contacts__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #ededed;
  color: #1a1a1a;
  transition: background 0.2s ease, color 0.2s ease;
}

.contacts__social-link:hover {
  background: #0f1222;
  color: #fff;
}

/* Map + overlay office cards (İncity contacts-map) */
.contacts-map {
  margin-bottom: 8px;
  padding: 0 2.7778%;
  box-sizing: border-box;
}

.contacts-map__wrapper {
  position: relative;
  background: #e8e8e8;
}

.contacts-map__canvas {
  position: relative;
  width: 100%;
  padding-top: min(48.75vw, 780px);
  min-height: 420px;
}

.contacts-map__canvas iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.2) contrast(1.02);
}

.contacts-map__items {
  display: flex;
  gap: 8px;
  padding: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  background: #ededed;
}

.contacts-map__items::-webkit-scrollbar {
  display: none;
}

.contacts-map__item {
  display: flex;
  flex-direction: column;
  flex: 0 0 auto;
  width: min(304px, 82vw);
  min-width: 280px;
  padding: 20px;
  background: #fff;
  box-sizing: border-box;
}

.contacts-map__item-title {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
  color: #1a1a1a;
}

.contacts-map__item-address,
.contacts-map__item-info {
  margin: 10px 0 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
  color: rgba(26, 26, 26, 0.5);
}

.contacts-map__item-info {
  margin-bottom: 18px;
  margin-top: 8px;
}

.contacts-map__item-phone {
  display: inline-block;
  margin: 0 0 18px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contacts-map__item-phone:hover {
  color: #a54832;
}

.contacts-map__item-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
  width: 100%;
}

.contacts-map__item-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease;
}

.contacts-map__item-action--grey {
  background: #ededed;
  color: #1a1a1a;
}

.contacts-map__item-action--grey:hover {
  color: #666;
}

.contacts-map__item-action--black {
  background: #0f1222;
  color: #fff;
}

.contacts-map__item-action--black:hover {
  background: #a54832;
}

/* Care block */
.contacts-care {
  background: #fff;
  padding: 0 2.7778% 8px;
  box-sizing: border-box;
}

.contacts--page .contacts-care {
  padding-top: 8px;
}

.contacts-care__inner {
  padding: 48px 4.1667% 56px;
  background: #fff;
  box-sizing: border-box;
}

.contacts-care__eyebrow {
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  color: #1a1a1a;
}

.contacts-care__title {
  margin: 0 0 28px;
  max-width: 16ch;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #1a1a1a;
}

.contacts-care__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.contacts-care__blocks {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contacts-care__block {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 174px;
  padding: 28px 22px;
  background: #ededed;
  box-sizing: border-box;
}

.contacts-care__link {
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #1a1a1a;
  text-decoration: none;
}

.contacts-care__link:hover {
  color: #a54832;
}

.contacts-care__text {
  margin: 0;
  max-width: 36ch;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(26, 26, 26, 0.55);
}

.contacts-care__media {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  background: #e8e8e8;
}

.contacts-care__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.contacts-care__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 48px;
  margin-top: 24px;
  padding: 0 24px;
  background: #0f1222;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  transition: background 0.2s ease;
}

.contacts-care__cta:hover {
  background: #a54832;
}

@media (min-width: 960px) {
  .contacts__intro {
    padding: 36px 2.7778% 40px;
  }

  .contacts__title {
    font-size: clamp(72px, 8vw, 128px);
  }

  .contacts-map__wrapper {
    min-height: 780px;
  }

  .contacts-map__canvas {
    position: absolute;
    inset: 0;
    padding-top: 0;
    min-height: 0;
    height: 100%;
  }

  .contacts-map__items {
    position: absolute;
    left: 32px;
    top: 20px;
    bottom: 20px;
    z-index: 2;
    flex-direction: column;
    width: 398px;
    max-width: calc(100% - 64px);
    height: auto;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;
    background: transparent;
    scrollbar-width: thin;
  }

  .contacts-map__items::-webkit-scrollbar {
    display: block;
    width: 4px;
  }

  .contacts-map__items::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.35);
  }

  .contacts-map__item {
    width: 100%;
    min-width: 0;
    padding: 24px;
  }

  .contacts-map__item + .contacts-map__item {
    margin-top: 8px;
  }

  .contacts-map__item-title {
    font-size: 20px;
  }

  .contacts-map__item-actions {
    flex-direction: row;
  }

  .contacts-map__item-action {
    flex: 1;
  }

  .contacts-care__inner {
    padding: 64px 2.9412% 88px;
  }

  .contacts-care__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    align-items: stretch;
  }

  .contacts-care__block {
    min-height: 260px;
    padding: 40px 32px;
  }

  .contacts-care__media {
    min-height: 100%;
  }
}

@media (max-width: 959px) {
  .contacts-map {
    padding: 0;
  }

  .contacts-map__canvas {
    padding-top: 62vw;
  }

  .contacts-care {
    padding: 0;
  }

  .contacts-care__inner {
    padding: 36px 12px 40px;
  }

  .contacts-care__media {
    aspect-ratio: 4 / 3;
  }

  .contacts-care__cta {
    width: 100%;
  }
}

/* ========== Footer (İncity-style bento grid) ========== */
.site-footer {
  background: #ededed;
  padding: 30px 4.1667%;
  color: #111;
}

.site-footer__container {
  max-width: 1808px;
  margin: 0 auto;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.site-footer__block {
  background: #fff;
  border-radius: 0;
}

.site-footer__menu {
  display: none;
  padding: 28px 20px;
}

.site-footer__menu-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px 24px;
  width: 100%;
}

.site-footer__menu-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer__menu-list a {
  font-size: 14px;
  line-height: 1.25;
  color: #111;
  transition: color 0.2s ease;
}

.site-footer__menu-list a:hover {
  color: #a54832;
}

.site-footer__aside {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.site-footer__social {
  display: flex;
  gap: 8px;
  width: 100%;
}

.site-footer__social-item {
  position: relative;
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  height: 66px;
  overflow: hidden;
  color: #111;
}

.site-footer__social-item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 4px;
  background: #ff4d20;
  transition: transform 0.25s ease;
}

.site-footer__social-item:hover::after {
  transform: translateY(-100%);
}

.site-footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.site-footer__contacts-info,
.site-footer__write {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 66px;
  padding: 16px;
  text-align: center;
}

.site-footer__contacts-info {
  flex-direction: column;
  gap: 6px;
}

.site-footer__contacts-info a {
  font-size: 14px;
  line-height: 1.2;
  color: #111;
}

.site-footer__write {
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #111;
}

.site-footer__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 120px;
  padding: 20px 16px;
  overflow: hidden;
  text-align: center;
}

.site-footer__logo img {
  width: 88px;
  height: 88px;
  margin: 0 auto;
  object-fit: cover;
  display: block;
}

.site-footer__up {
  min-height: 100px;
  padding: 0;
  background: transparent;
}

.site-footer__up-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 100%;
  min-height: 100px;
  background: #ff4d20;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s ease;
}

.site-footer__up-btn:hover {
  background: #111;
}

.site-footer__copyright,
.site-footer__policy,
.site-footer__made {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 66px;
  padding: 16px;
  font-size: 14px;
  line-height: 1.25;
  text-align: center;
}

.site-footer__policy {
  color: #111;
  transition: color 0.2s ease;
}

.site-footer__policy:hover {
  color: #ff4d20;
}

.site-footer__legal {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px 18px;
  color: #6a6a6a;
  font-size: 12px;
  line-height: 1.45;
  text-align: center;
}

.site-footer__legal p {
  margin: 0;
}

.site-footer__legal p + p {
  margin-top: 14px;
}

.site-footer__support {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 66px;
  padding: 16px;
  color: #ff4d20;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

@media (min-width: 670px) {
  .site-footer {
    padding-left: 2.78%;
    padding-right: 2.78%;
  }

  .site-footer__menu {
    display: block;
  }

  .site-footer__contacts {
    flex-direction: row;
  }

  .site-footer__contacts-info,
  .site-footer__write {
    flex: 1;
    min-height: 84px;
  }

  .site-footer__social-item {
    height: 84px;
  }
}

@media (min-width: 960px) {
  .site-footer__grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    align-items: stretch;
  }

  .site-footer__menu {
    grid-column: 1 / span 8;
    grid-row: 1;
  }

  .site-footer__aside {
    grid-column: 9 / span 4;
    grid-row: 1;
  }

  .site-footer__logo {
    grid-column: 1 / span 8;
    grid-row: 2;
    min-height: 160px;
    padding: 28px 40px;
    justify-content: center;
    align-items: center;
  }

  .site-footer__logo img {
    width: 120px;
    height: 120px;
  }

  .site-footer__up {
    grid-column: 9 / span 4;
    grid-row: 2;
    min-height: 160px;
  }

  .site-footer__up-btn {
    min-height: 160px;
  }

  .site-footer__copyright {
    grid-column: 1 / span 4;
    grid-row: 3;
  }

  .site-footer__policy {
    grid-column: 5 / span 4;
    grid-row: 3;
  }

  .site-footer__made {
    grid-column: 9 / span 4;
    grid-row: 3;
    min-height: 84px;
  }

  .site-footer__legal {
    grid-column: 1 / span 8;
    grid-row: 4;
    font-size: 13px;
    padding: 28px 24px;
  }

  .site-footer__support {
    grid-column: 9 / span 4;
    grid-row: 4;
    min-height: 100%;
  }

  .site-footer__social-item {
    height: 100px;
  }

  .site-footer__contacts-info,
  .site-footer__write {
    min-height: 100px;
  }

  .site-footer__menu-list a {
    font-size: 15px;
  }
}

@media (min-width: 1280px) {
  .site-footer__logo,
  .site-footer__up,
  .site-footer__up-btn {
    min-height: 180px;
  }

  .site-footer__logo img {
    width: 140px;
    height: 140px;
  }

  .site-footer__social-item {
    height: 120px;
  }

  .site-footer__contacts-info,
  .site-footer__write {
    min-height: 120px;
  }

  .site-footer__copyright,
  .site-footer__policy,
  .site-footer__made {
    min-height: 84px;
  }
}

/* ========== Product detail (Mila-style) ========== */
.pd-page {
  --pd-ink: #141414;
  --pd-muted: #5c5c5c;
  --pd-line: rgba(0, 0, 0, 0.12);
  --pd-soft: #f5f5f5;
  --pd-panel: #f0f0f0;
  --pd-accent: #a54832;
  --pd-logo: 140px;
  --pd-logo-gap: clamp(16px, 2.4vw, 28px);
  background: #fff;
  color: var(--pd-ink);
  padding-top: calc(var(--pd-logo) + var(--pd-logo-gap));
}

@media (max-width: 959px) {
  .pd-page { --pd-logo: 100px; }
}

@media (max-width: 669px) {
  .pd-page { --pd-logo: 88px; }
}

.pd-kicker {
  margin: 0 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pd-muted);
}

.pd-kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

.pd-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 28px;
  font-size: 13px;
  color: var(--pd-muted);
}

.pd-breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.pd-breadcrumb a:hover {
  color: var(--pd-ink);
}

.pd-breadcrumb span:last-child {
  color: var(--pd-ink);
  font-weight: 600;
}

.pd-hero {
  padding: 36px 0 48px;
  background: #fff;
}

.pd-hero__inner,
.pd-desc__inner,
.pd-gallery__inner,
.pd-specs__inner,
.pd-faq__inner,
.pd-cta__inner,
.pd-related__inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.pd-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}

.pd-hero__media {
  display: grid;
  place-items: center;
  min-height: 320px;
  padding: 28px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.pd-hero__media img {
  width: min(100%, 420px);
  height: auto;
  display: block;
  object-fit: contain;
}

.pd-hero__cat {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #555;
}

.pd-hero__cat::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

.pd-hero__title {
  margin: 14px 0 0;
  font-size: clamp(40px, 8vw, 72px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: #1a1a1a;
}

.pd-hero__summary {
  margin: 18px 0 0;
  max-width: 42ch;
  font-size: 16px;
  line-height: 1.55;
  color: #333;
}

.pd-hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.pd-hero__pills li {
  padding: 8px 14px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #2a2a2a;
  background: #f3f3f3;
}

.pd-hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  background: #3a3a3a;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease;
}

.pd-hero__cta:hover {
  background: var(--pd-accent);
  color: #fff;
}

.pd-desc {
  padding: 56px 0;
  background: #fff;
}

.pd-desc__title {
  margin: 0;
  max-width: 16ch;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.pd-desc__text {
  margin: 22px 0 0;
  max-width: 68ch;
  font-size: 16px;
  line-height: 1.65;
  color: #333;
}

.pd-gallery {
  padding: 56px 0 64px;
  background: var(--pd-soft);
}

.pd-gallery__head {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 28px;
}

.pd-gallery__title {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.pd-gallery__title em,
.pd-specs__title em,
.pd-steps__title em,
.pd-colors__title em,
.pd-cta__title em {
  font-style: italic;
  font-weight: 700;
}

.pd-gallery__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pd-gallery__tab {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--pd-line);
  border-radius: 999px;
  background: transparent;
  color: #555;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.pd-gallery__tab.is-active,
.pd-gallery__tab:hover {
  background: #fff;
  color: var(--pd-ink);
  border-color: #bbb;
}

.pd-gallery__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.pd-gallery__item {
  margin: 0;
  overflow: hidden;
  background: #ddd;
  aspect-ratio: 4 / 3;
}

.pd-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.pd-gallery__item:hover img {
  transform: scale(1.04);
}

.pd-specs {
  padding: 56px 0 64px;
  background: var(--pd-panel);
}

.pd-specs__head {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--pd-line);
}

.pd-specs__title {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.pd-specs__tds {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid #333;
  border-radius: 999px;
  color: #111;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.pd-specs__tds:hover {
  background: #111;
  color: #fff;
}

.pd-specs__grid {
  display: grid;
  grid-template-columns: 1fr;
}

.pd-specs__item {
  padding: 24px 0;
  border-bottom: 1px solid var(--pd-line);
}

.pd-specs__meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pd-muted);
}

.pd-specs__value {
  margin: 0;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.pd-specs__note {
  margin: 10px 0 0;
  max-width: 36ch;
  font-size: 14px;
  line-height: 1.45;
  color: #555;
}

.pd-steps {
  padding: 56px 0 64px;
  background: #fff;
}

.pd-steps__title {
  margin: 0 0 28px;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 500;
}

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

.pd-steps__list li {
  padding: 20px 18px;
  background: var(--pd-soft);
}

.pd-steps__num {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pd-accent);
}

.pd-steps__list p {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
}

.pd-colors {
  padding: 56px 0 64px;
  background: var(--pd-soft);
}

.pd-colors__title {
  margin: 0 0 28px;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 500;
}

.pd-colors__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pd-colors__swatch {
  display: block;
  aspect-ratio: 1.2;
  background: var(--swatch, #ccc);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.pd-colors__name {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 600;
}

.pd-faq {
  padding: 56px 0 64px;
  background: #fff;
}

.pd-faq__title {
  margin: 0 0 24px;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
}

.pd-faq__list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--pd-line);
}

.pd-faq__item {
  border-bottom: 1px solid var(--pd-line);
}

.pd-faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 36px 18px 0;
  position: relative;
  font-size: 16px;
  font-weight: 600;
}

.pd-faq__item summary::-webkit-details-marker {
  display: none;
}

.pd-faq__item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 400;
  color: #888;
}

.pd-faq__item[open] summary::after {
  content: "−";
}

.pd-faq__item p {
  margin: 0 0 18px;
  max-width: 70ch;
  font-size: 15px;
  line-height: 1.55;
  color: #555;
}

.pd-cta {
  padding: 64px 0;
  background: #1f1f1f;
  color: #fff;
}

.pd-cta .pd-kicker {
  color: rgba(255, 255, 255, 0.55);
}

.pd-cta__title {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 500;
}

.pd-cta__text {
  margin: 16px 0 0;
  max-width: 46ch;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
}

.pd-cta .pd-hero__cta {
  background: var(--pd-accent);
}

.pd-cta .pd-hero__cta:hover {
  background: #fff;
  color: #111;
}

.pd-related {
  padding: 56px 0 72px;
  background: #fff;
}

.pd-related__title {
  margin: 0 0 24px;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
}

.pd-related__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.pd-related__card {
  text-decoration: none;
  color: inherit;
}

.pd-related__card .product-card__cta {
  display: flex;
}

@media (min-width: 720px) {
  .pd-gallery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pd-specs__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pd-specs__item {
    padding: 28px 24px 28px 0;
  }

  .pd-specs__item:nth-child(odd) {
    padding-right: 24px;
    border-right: 1px solid var(--pd-line);
  }

  .pd-steps__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pd-colors__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .pd-related__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .pd-hero {
    padding: 48px 0 72px;
  }

  .pd-hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
  }

  .pd-hero__media {
    min-height: 560px;
  }

  .pd-gallery__head,
  .pd-specs__head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }

  .pd-gallery__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pd-specs__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pd-specs__item {
    border-right: 1px solid var(--pd-line);
    padding: 32px 28px 32px 0;
  }

  .pd-specs__item:nth-child(3n) {
    border-right: 0;
    padding-right: 0;
  }

  .pd-specs__item:nth-child(odd) {
    border-right: 1px solid var(--pd-line);
  }

  .pd-steps__list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* ========== Haqqımızda / About (Balcon-inspired) ========== */
.about-page {
  --about-ink: #111;
  --about-muted: #5a5a5a;
  --about-line: rgba(0, 0, 0, 0.14);
  --about-soft: #f7f7f5;
  --about-panel: #fff;
  --about-display: "Cormorant", "Times New Roman", Georgia, serif;
  --about-logo: 140px;
  --about-gap: clamp(16px, 2.4vw, 28px);
  background: #fff;
  color: var(--about-ink);
  padding-top: 0;
}

body:has(.about-page) .site-header {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

body:has(.about-page) .site-header::before {
  background: #0f1222;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

@media (max-width: 959px) {
  .about-page { --about-logo: 100px; }
}

@media (max-width: 669px) {
  .about-page { --about-logo: 88px; }
}

/* 1) Komanda Unipaint — full-bleed image + right white panel */
.about-team {
  position: relative;
  min-height: min(900px, 100svh);
  display: flex;
  align-items: stretch;
  margin-top: calc(var(--about-logo) + var(--about-gap));
  overflow: hidden;
  background: #9a948e;
}

.about-team__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about-team__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.about-team__inner {
  position: relative;
  z-index: 1;
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
  padding: 20px 0;
}

.about-team__panel {
  width: min(100%, 340px);
  display: flex;
  flex-direction: column;
  background: var(--about-panel);
  padding: 22px 20px 20px;
  color: var(--about-ink);
}

.about-team__title {
  margin: 0 0 18px;
  font-family: var(--about-display);
  font-size: clamp(28px, 3.2vw, 36px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.about-team__brand {
  display: inline-block;
  font-family: "Content_Font", Quicksand, sans-serif;
  font-size: 0.72em;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-team__copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-team__copy p {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.45;
  color: #222;
}

.about-team__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
  min-height: 42px;
  padding: 12px 24px;
  background: #111;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.2s ease;
}

.about-team__cta:hover {
  background: #a54832;
  color: #fff;
}

/* 2) Nəticəyə çalışan komanda — circular portraits */
.about-people {
  padding: clamp(72px, 10vw, 110px) 0;
  background: #fff;
}

.about-people__inner {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
}

.about-people__title {
  margin: 0 0 clamp(40px, 6vw, 64px);
  max-width: 14ch;
  font-family: var(--about-display);
  font-size: clamp(42px, 7vw, 86px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.about-people__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px 18px;
}

.about-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: transparent;
}

.about-card__photo {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  background: #d8d4ce;
}

.about-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: grayscale(0.15) contrast(1.02);
}

.about-card__initials {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--about-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 500;
  color: rgba(0, 0, 0, 0.28);
}

.about-card__meta {
  padding-top: 28px;
}

.about-card__role {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #666;
}

.about-card__name {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.25;
  color: var(--about-ink);
}

/* 3) Mükafatlar + Kataloqlar */
.about-awards {
  padding: clamp(72px, 10vw, 110px) 0;
  background: #fff;
}

.about-awards__inner {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(48px, 6vw, 72px);
}

.about-awards__title,
.about-catalogs__title {
  margin: 0 0 clamp(36px, 5vw, 56px);
  font-family: var(--about-display);
  font-size: clamp(42px, 7vw, 86px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.about-awards__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-awards__item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  align-items: start;
  padding: 0 0 28px;
}

.about-awards__year {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--about-ink);
  padding-top: 2px;
}

.about-awards__name {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.about-awards__note {
  margin: 6px 0 0;
  font-size: 14px;
  line-height: 1.45;
  color: var(--about-muted);
}

.about-awards__link {
  display: inline-flex;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--about-ink);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

.about-awards__link:hover {
  color: #a54832;
}

.about-catalogs__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.about-catalog {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.about-catalog__media {
  display: block;
  overflow: hidden;
  background: #e8e6e2;
  aspect-ratio: 3 / 4;
}

.about-catalog__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.about-catalog:hover .about-catalog__media img {
  transform: scale(1.04);
}

.about-catalog__name {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.3;
}

.about-catalogs__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
  min-height: 48px;
  padding: 12px 24px;
  background: #111;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.2s ease;
}

.about-catalogs__btn:hover {
  background: #a54832;
  color: #fff;
}

@media (min-width: 720px) {
  .about-people__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 48px 28px;
  }

  .about-awards__item {
    grid-template-columns: 88px 1fr;
    gap: 28px;
    padding-bottom: 32px;
  }
}

@media (min-width: 960px) {
  .about-awards__inner {
    grid-template-columns: 1fr 1fr;
    gap: 48px 56px;
    align-items: start;
  }
}

@media (min-width: 1100px) {
  .about-team__panel {
    width: 340px;
    min-height: calc(100% - 40px);
  }

  .about-people__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 56px 40px;
  }

  .about-card__meta {
    padding-top: 40px;
  }
}


@media (max-width: 899px) {
  .about-team {
    min-height: 0;
    display: block;
  }

  .about-team__bg {
    position: relative;
    height: min(52vw, 420px);
  }

  .about-team__inner {
    width: 100%;
    padding: 0;
    justify-content: stretch;
  }

  .about-team__panel {
    width: 100%;
    max-width: none;
  }
}
