/* Global Solutions — typography & refinement layer (palette unchanged) */

:root {
  --font-body: "Plus Jakarta Sans", "Cerebri Sans", sans-serif;
  --font-display: "Syne", "Cerebri Sans", sans-serif;
}

body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.75;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6,
.theme__big--title,
.hero--big-title,
.feature__content h2 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

.theme__small--title,
.feature__content > span {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.14em;
}

.theme__big--title {
  line-height: 1.15;
}

.hero--big-title {
  line-height: 1.1;
}

.hero__caption--h3 .hero--big-title.fw-500 {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  letter-spacing: 0.04em;
  opacity: 0.92;
  margin-top: 18px;
}

/* Section rhythm */
.feature-area,
.service,
.brands,
.work {
  position: relative;
}

.service__block--h3 {
  padding: 48px 36px 42px;
  border-radius: 4px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service__block--h3:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(34, 31, 60, 0.08);
}

.service__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 14px;
}

.service__block--h3 p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 0;
}

/* Lucide icons — focus areas */
.icon-lucide {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #221f3c;
}

.icon-lucide svg {
  width: 100%;
  height: 100%;
  stroke-width: 1.5;
}

.service__icon--lucide {
  width: 56px;
  height: 56px;
  margin: 0 auto 28px;
  padding: 12px;
  border-radius: 14px;
  background: rgba(34, 31, 60, 0.05);
  transition: background 0.35s ease, transform 0.35s ease;
}

.service__block--h3:hover .service__icon--lucide {
  background: rgba(34, 31, 60, 0.09);
  transform: scale(1.05);
}

/* Work / approach blocks */
.work__icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  width: 100px;
  background: rgba(34, 31, 60, 0.07);
  border-radius: 50%;
  margin-bottom: 30px;
  color: #221f3c;
}

.work__icon .icon-lucide {
  width: 40px;
  height: 40px;
}

.work__icon > span:last-child {
  position: absolute;
  height: 35px;
  width: 35px;
  font-size: 13px;
  background: #221f3c;
  line-height: 35px;
  border-radius: 50%;
  color: #ffffff;
  left: -3px;
  top: -13px;
  font-family: var(--font-body);
  font-weight: 600;
}

.work__block h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.work__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #221f3c;
  transition: background 0.3s ease, transform 0.3s ease;
}

.work__link:hover {
  background: rgba(34, 31, 60, 0.07);
  transform: translateX(4px);
}

.work__link .icon-lucide {
  width: 22px;
  height: 22px;
}

/* Contact feature icons */
/* Contact info cards — equal height */
.contacts__cards-row {
  display: flex;
  flex-wrap: wrap;
}

.contacts__cards-row > [class*="col-"] {
  display: flex;
}

.contacts__feature {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  width: 100%;
  min-height: 148px;
}

.contacts__feature h3 {
  margin-bottom: 12px;
}

.contacts__feature h4 {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 0;
}

@media only screen and (min-width: 1200px) {
  .contacts__feature h4 {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .contacts__feature {
    min-height: 0;
  }
}

.contacts__feature .icon-lucide--inline {
  width: 18px;
  height: 18px;
  margin-right: 10px;
  vertical-align: -3px;
  display: inline-block;
}

.contacts__feature--bg.icon-lucide-wrap {
  position: absolute;
  right: 25px;
  bottom: 30px;
  transform: rotate(-30deg);
  pointer-events: none;
}

.contacts__feature--bg.icon-lucide-wrap .icon-lucide {
  width: 80px;
  height: 80px;
  color: rgba(255, 255, 255, 0.03);
}

.contacts__input .icon-lucide--input {
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: #221f3c;
  opacity: 0.45;
  pointer-events: none;
}

.contacts__input textarea + .icon-lucide--input {
  top: 22px;
  transform: none;
}

/* Footer contact icons */
.footer--contact-icon .icon-lucide {
  width: 22px;
  height: 22px;
  color: #221f3c;
}

.footer--contact-icon {
  display: flex;
  align-items: flex-start;
  padding-top: 2px;
}

.scroll-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Scroll top */
.scroll-top .icon-lucide {
  width: 20px;
  height: 20px;
  color: #ffffff;
}

/* Header CTA */
.header__btn .btn {
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.03em;
}

/* About progress labels */
.bar-title h5 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
}

.feature__content h2 {
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  line-height: 1.2;
}

/* Brands section copy */
.brands__intro {
  max-width: 640px;
  margin: -48px auto 56px;
  text-align: center;
  font-size: 15px;
  line-height: 1.75;
  color: #696969;
}

/* Nav refinement */
.header--menu__main nav ul li a {
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.02em;
}

@media (max-width: 767px) {
  body {
    font-size: 14px;
  }

  .service__block--h3 {
    padding: 36px 28px 32px;
  }

  .brands__intro {
    margin-top: -32px;
    margin-bottom: 40px;
    padding: 0 15px;
  }
}
