/* Reset & base */
:root {
  --bg: #fff;
  --text: #0c1520;
  --muted: #5f6b7a;
  --line: #e7edf3;
  --primary: #0a58ca;
  --primary-2: #0b3f8a;
  --nav: #0b1118;
  --soft: #eef6ff;
  --radius: 16px;
  --container: 1180px;
  --pad: 24px;
  --shadow: 0 12px 30px rgba(10, 20, 35, .1);
  --header-h: 208px;
  --left-panel-w: 397px;
  --topbar-h: 60px;
  --nav-h: 148px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  line-height: 1.5;
  overflow-x: hidden;
}

body {
  font-family: ui-sans-serif, system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(var(--container), 100% - var(--pad) * 2);
  margin-inline: auto;
}

.center {
  text-align: center;
}

/* Header */
.site-header {
  height: var(--header-h);
}

.site-header__wrap {
  position: relative;
  height: 100%;
  width: 100%;
}

.site-header__wrap::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: var(--nav-h);
  background: linear-gradient(120deg, #0b1118 0%, #0b1118 55%, #121c26 100%);
  z-index: 1;
}

.header-left {
  position: absolute;
  left: 0;
  top: 0;
  width: var(--left-panel-w);
  height: var(--header-h);
  background: #fff;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 0 104px 4px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .12);
  overflow: hidden;
}

.header-left__logo {
  width: 100%;
  height: 100%;
  max-width: 397px;
  max-height: 208px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: clamp(8px, 2%, 22px);
  box-sizing: border-box;
}

.header-left__logo .header-logo {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.header-right {
  position: absolute;
  left: var(--left-panel-w);
  top: 0;
  right: 0;
  height: var(--header-h);
  z-index: 2;
  display: flex;
  flex-direction: column;
}

.header-topbar {
  height: var(--topbar-h);
  display: flex;
  align-items: stretch;
  background: transparent;
}

.header-topbar__inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 28px;
  background: var(--primary);
  color: #fff;
}

.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: clamp(6px, 1.5vw, 10px);
  white-space: nowrap;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: clamp(10px, 1.2vw, 24px);
  color: #fff;
}

.topbar__item a {
  color: inherit;
  text-decoration: none;
}

.topbar__left {
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

.topbar__right {
  display: flex;
  gap: 22px;
  align-items: center;
}

.ico {
  opacity: .95;
}

.header-nav {
  height: calc(var(--header-h) - var(--topbar-h));
  display: flex;
  align-items: center;
  padding: 0 40px;
  z-index: 2;
}

.nav {
  display: flex;
  gap: 40px;
  align-items: center;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 25.3px;
  line-height: 1;
}

.nav__link {
  opacity: .92;
  position: relative;
  padding: 10px 0;
  font-weight: 500;
}

.nav__link:hover {
  opacity: 1;
}

.nav__link.is-active {
  opacity: 1;
  font-weight: 700;
}

.nav__link.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 3px;
  background: #fff;
  border-radius: 999px;
}

.nav__item--dropdown {
  position: relative;
}

.nav__link--trigger {
  cursor: default;
}

.nav__link--trigger::after {
  display: none;
}

.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 6px;
  min-width: 240px;
  padding: 8px 0;
  background: linear-gradient(135deg, #0f1620, #121c26);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .4);
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s, visibility .2s;
  z-index: 50;
}

.nav__item--dropdown:hover .nav__dropdown {
  opacity: 1;
  visibility: visible;
}

.nav__dropdown-link {
  display: block;
  padding: 12px 20px;
  color: rgba(255, 255, 255, .92);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: background .15s;
}

.nav__dropdown-link:hover {
  background: rgba(255, 255, 255, .08);
  color: #fff;
}

.nav__item--dropdown.is-active .nav__link--trigger {
  opacity: 1;
  font-weight: 700;
}

.mobile-drawer__label {
  display: block;
  padding: 8px 12px 4px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .5px;
  color: #5f6b7a;
  text-transform: uppercase;
}

.hamburger {
  display: none;
  margin-left: auto;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .06);
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 2px;
  background: #fff;
  margin: 7px 12px;
  opacity: .92;
}

@media (max-width: 768px) {
  .hamburger {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }
  .hamburger span {
    margin: 5px 10px;
  }
}

.mobile-drawer {
  display: none;
}

.mobile-drawer.is-open {
  display: block;
  position: fixed;
  inset: 0;
  z-index: 10000;
}

.mobile-drawer__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .55);
  z-index: 10000;
}

.mobile-drawer__panel {
  position: fixed;
  top: 0;
  right: 0;
  width: min(360px, 92vw);
  height: 100%;
  background: #fff;
  color: #15181b;
  padding: 18px;
  box-shadow: -20px 0 60px rgba(0, 0, 0, .12);
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 10001;
}

.mobile-drawer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-drawer__title {
  font-weight: 800;
  color: #15181b;
}

.mobile-drawer__close {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, .12);
  background: rgba(0, 0, 0, .04);
  color: #15181b;
  cursor: pointer;
}

.mobile-drawer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 6px;
}

.mobile-link {
  padding: 12px;
  border-radius: 14px;
  background: rgba(0, 106, 188, .12);
  border: 1px solid rgba(0, 106, 188, .2);
  font-size: 14px;
  font-weight: 800;
  color: #15181b;
}

.mobile-link:hover {
  background: rgba(0, 106, 188, .18);
}

.mobile-drawer__meta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  color: #5f6b7a;
}

.mobile-drawer__meta a {
  color: #0a58ca;
}

/* Hero */

.hero {
  padding: 2.5% 0 0;
}

.hero__wrap {
  position: relative;
  width: 83.87%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 var(--pad) 0 0;
  min-height: 52vw;
}

@media (min-width: 901px) {
  .hero__wrap {
    transform: scale(0.75);
    transform-origin: top center;
  }

  .intro__grid,
  .section-4__wrap,
  .projects,
  .work-process .container,
  .why__container,
  .about-container,
  .about-section-2__wrap {
    transform: scale(0.75);
    transform-origin: top center;
  }
}

@media (min-width: 1000px) and (max-width: 1280px) {
  .hero {
    padding: 2.5% 0 clamp(24px, 3vw, 40px);
  }
  .hero__wrap {
    transform: none;
  }
  .section-4__wrap {
    transform: none;
  }
}

.hero__title {
  margin: 0 0 clamp(28px, 5vw, 48px) 0;
  margin-left: -10px;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: clamp(24px, 6.56vw, 125.91px);
  line-height: 1.17;
  letter-spacing: -.02em;
  color: #000;
}

.hero__title .accent {
  color: #00467C;
}

.hero__frame {
  position: absolute;
  left: 0;
  top: 34%;
  width: 100%;
  aspect-ratio: 1610.29 / 725.96;
  height: auto;
}

.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__block--tr {
  position: absolute;
  top: -0;
  left: 57%;
  max-width: 48%;
  text-align: left;
}

.hero__block--bl {
  position: absolute;
  bottom: 8%;
  left: 0;
  max-width: 48%;
  text-align: left;
}

.hero__desc {
  margin: 0 0 1.04%;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 1.40625vw;
  line-height: 1.45;
  color: #5A5A5A;
}

.hero__block--tr .hero__desc {
  margin-left: auto;
}

.hero__label {
  margin: 0 0 0.63%;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 1.16vw;
  color: #000;
}

.hero__block .btn {
  font-size: clamp(11px, 0.68vw, 13px);
  letter-spacing: .04em;
}

.hero__block .btn__icon {
  font-size: clamp(12px, 0.83vw, 16px);
}

.hero__contact-wrap {
  position: absolute;
  left: 57.02%;
  top: 13.8%;
  width: min(26%, 360px);
  max-width: 100%;
  display: flex;
  align-items: center;
  gap: clamp(4px, 1.6%, 12px);
}

.hero .hero__contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 0;
  max-width: 340px;
  max-height: 65px;
  height: clamp(44px, 3.4vw, 65px);
  padding: 0 clamp(12px, 2.5%, 24px);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: clamp(11px, 1.03vw, 19.77px);
  color: #fff;
  background: #00467C;
  border: none;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: none;
  flex-shrink: 1;
}

.hero__contact-img-wrap {
  flex-shrink: 0;
  display: block;
  line-height: 0;
}

.hero__contact-img {
  width: clamp(32px, 3.4vw, 65px);
  height: clamp(32px, 3.4vw, 65px);
  object-fit: contain;
  display: block;
  transition: transform .2s;
}

.hero__contact-img-wrap:hover .hero__contact-img {
  transform: scale(1.05);
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: clamp(6px, 0.8vw, 12px);
  margin-top: clamp(4px, 0.5vw, 8px);
}

.hero__stats-img {
  width: clamp(80px, 10vw, 192px);
  height: auto;
  object-fit: contain;
  object-position: left center;
  display: block;
}

.hero__stats-text {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: clamp(16px, 1.56vw, 30px);
  color: #000;
  line-height: 1;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 13px;
}

.btn__icon {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  font-size: 16px;
}

.btn--primary {
  background: var(--primary);
  color: #fff;
  box-shadow: none;
}

.btn--primary .btn__icon {
  background: rgba(255, 255, 255, .18);
}

.btn--light {
  background: #fff;
  color: #0b1118;
}

.btn--light .btn__icon {
  background: rgba(0, 0, 0, .06);
}

.btn--outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, .4);
}

.btn--outline .btn__icon {
  background: rgba(255, 255, 255, .1);
}

.btn--outline:hover {
  border-color: rgba(255, 255, 255, .7);
}

/* Door models (door production page) */
.door-models {
  margin-left: 30px;
  margin-right: 30px;
  padding: clamp(40px, 5vw, 80px) 0;
}

.door-models__inner {
  width: 100%;
  max-width: 100%;
}

.door-models__title {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 76px;
  line-height: 1.2;
  color: #121414;
  margin: 0 0 clamp(32px, 4vw, 48px);
  text-align: center;
}

.door-models-slider {
  position: relative;
  width: 100%;
}

.door-models-slider__viewport {
  width: 100%;
  overflow: hidden;
}

.door-models-slider__track {
  display: flex;
  gap: 50px;
  transition: transform 0.35s ease-out;
  width: max-content;
}

.door-models-slide {
  flex: 0 0 556px;
  width: 556px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}

.door-models-slide__img-wrap {
  width: 556px;
  height: 556px;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--line, #e5e7eb);
}

.door-models-slide__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.door-models-slide__heading {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.3;
  color: #86898C;
  margin: 0;
  padding-top: clamp(12px, 1.5vw, 16px);
}

.door-models-slide__desc {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 23px;
  line-height: 1.35;
  color: #121414;
  margin: 0;
  padding-top: 4px;
}

.door-models-slider__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #121414;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
  color: #121414;
  transition: background 0.2s, color 0.2s;
}

.door-models-slider__btn:hover {
  background: #121414;
  color: #fff;
}

.door-models-slider__btn--prev {
  left: -16px;
}

.door-models-slider__btn--next {
  right: -16px;
}

.door-models-slider__btn::after {
  content: '';
  width: 10px;
  height: 10px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}

.door-models-slider__btn--prev::after {
  margin-left: 4px;
  transform: rotate(45deg);
}

.door-models-slider__btn--next::after {
  margin-right: 4px;
  transform: rotate(-135deg);
}

@media (max-width: 1200px) {
  .door-models-slide,
  .door-models-slide__img-wrap {
    width: calc((100vw - 60px - 100px) / 3);
    min-width: 180px;
    flex: 0 0 calc((100vw - 60px - 100px) / 3);
  }
  .door-models-slide__img-wrap {
    height: auto;
    aspect-ratio: 1;
  }
}

@media (max-width: 900px) {
  .door-models {
    margin-left: 20px;
    margin-right: 20px;
  }
  .door-models__title {
    font-size: clamp(32px, 8vw, 52px);
  }
  .door-models-slider__track {
    gap: 24px;
  }
  .door-models-slide,
  .door-models-slide__img-wrap {
    width: calc((100vw - 40px - 24px) / 2);
    min-width: 140px;
    flex: 0 0 calc((100vw - 40px - 24px) / 2);
  }
  .door-models-slide__heading {
    font-size: 16px;
  }
  .door-models-slide__desc {
    font-size: 18px;
  }
  .door-models-slider__btn {
    width: 40px;
    height: 40px;
  }
  .door-models-slider__btn--prev {
    left: 4px;
  }
  .door-models-slider__btn--next {
    right: 4px;
  }
}

@media (max-width: 600px) {
  .door-models {
    margin-left: 16px;
    margin-right: 16px;
  }
  .door-models-slider__track {
    gap: 16px;
  }
  .door-models-slide,
  .door-models-slide__img-wrap {
    width: calc(100vw - 32px);
    min-width: 0;
    flex: 0 0 calc(100vw - 32px);
  }
  .door-models-slide__heading {
    font-size: 14px;
  }
  .door-models-slide__desc {
    font-size: 16px;
  }
  .door-models-slider__btn {
    width: 36px;
    height: 36px;
    top: 30%;
  }
  .door-models-slider__btn--prev {
    left: 0;
  }
  .door-models-slider__btn--next {
    right: 0;
  }
  .door-models-slider__btn::after {
    width: 8px;
    height: 8px;
  }
}

/* Brand slider */
.brand-slider-wrap {
  width: 100%;
  margin-top: 3%;
  margin-bottom: 3%;
  padding: 0 var(--pad);
}

.hero .brand-slider-wrap {
  margin-top: -8%;
  margin-bottom: 3%;
}

@media (max-width: 1024px) {
  .hero .brand-slider-wrap {
    margin-top: 6%;
    margin-bottom: 4%;
  }
}

@media (min-width: 1000px) and (max-width: 1280px) {
  .hero .brand-slider-wrap {
    margin-top: clamp(40px, 8%, 80px);
  }
}

.brand-slider {
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 12px 0;
}

.brand-slider__track {
  display: flex;
  gap: clamp(24px, 4vw, 40px);
  align-items: center;
  width: max-content;
  animation: brand-slider-scroll 35s linear infinite;
}

.brand-slider__track:hover {
  animation-play-state: paused;
}

.brand-slider__img {
  width: clamp(100px, 25vw, 279.37px);
  height: auto;
  aspect-ratio: 279.37 / 118.04;
  object-fit: contain;
  flex-shrink: 0;
  opacity: .95;
  transition: opacity .2s;
}

.brand-slider__img:hover {
  opacity: 1;
}

@keyframes brand-slider-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Typography & layout */
.h2 {
  font-size: 28px;
  line-height: 1.2;
  margin: 0 0 10px;
}

.h3 {
  font-size: 20px;
  line-height: 1.25;
  margin: 0 0 12px;
}

.p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 14px;
}

.kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: .6px;
  font-size: 12px;
  color: #0b2b66;
  margin-bottom: 14px;
}

.kicker span {
  width: 34px;
  height: 2px;
  background: var(--primary);
  border-radius: 999px;
}

.kicker.center {
  justify-content: center;
}

/* Intro */
.intro {
  margin-top: 0;
  margin-bottom: -4%;
  padding: 1.8% var(--pad) 0;
}

@media (max-width: 1280px) and (min-width: 981px) {
  .intro {
    padding-bottom: clamp(40px, 5.5%, 64px);
  }
  .section-4 {
    padding-top: clamp(36px, 4.5%, 56px);
  }
}

@media (min-width: 901px) and (max-width: 1280px) {
  .intro__grid {
    transform: scale(0.85);
    transform-origin: top center;
  }
}

@media (min-width: 1281px) {
  .intro {
    padding: 2.5% var(--pad) 0;
    padding-bottom: clamp(48px, 4%, 80px);
  }
  .intro__grid {
    max-width: min(1580px, 100% - var(--pad) * 2);
    transform: scale(0.92);
    transform-origin: top center;
  }
  .intro__title {
    font-size: clamp(28px, 4.6vw, 62px);
  }
  .intro__text-wrap {
    min-height: 28%;
  }
  .intro__text {
    font-size: clamp(16px, 2.2vw, 30px);
  }
  .intro__img-wrap {
    width: 78.56%;
  }

  .section-4__wrap {
    transform: scale(0.82);
    transform-origin: top center;
  }
  .section-4 {
    padding: 1.8% var(--pad) 1.8%;
  }
  .section-4__title {
    font-size: clamp(23px, 2.3vw, 38px);
  }
  .section-4__heading {
    font-size: clamp(21px, 2.9vw, 58px);
  }
  .section-4__card-title {
    font-size: clamp(14px, 1.45vw, 26px);
  }
  .section-4__card-text {
    font-size: clamp(13px, 1.35vw, 26px);
  }
  .section-4__cta-text {
    font-size: clamp(14px, 1.45vw, 24px);
  }
  .section-4__cta-link {
    font-size: clamp(13px, 1.35vw, 18px);
  }
}

.intro__grid {
  width: 100%;
  max-width: min(1307.31px, 100% - var(--pad) * 2);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 62.77% 37.23%;
  gap: 2%;
  min-height: 0;
  aspect-ratio: 1307.31 / 774.16;
}


.intro__col1 {
  display: flex;
  flex-direction: column;
  gap: 2.5%;
  min-width: 0;
}

.intro__title {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: clamp(22px, 4.28vw, 56px);
  line-height: 1.2;
  color: var(--text);
}

.intro__text-wrap {
  width: 78.56%;
  min-height: 26.87%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.intro__text {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 2.07vw, 27px);
  line-height: 1.5;
  color: var(--muted);
}

.intro__img-wrap {
  margin-top: auto;
  width: 78.56%;
  aspect-ratio: 650.92 / 300;
  min-height: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--line);
}

.intro__img--small {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.intro__col2 {
  min-width: 0;
  display: flex;
  align-items: stretch;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--line);
}

.intro__col2 .intro__img--tall {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Services */
.services {
  padding: 10% var(--pad) 5%;
}

.services__panel {
  background: var(--soft);
  border-radius: 22px;
  padding: clamp(16px, 2%, 28px);
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(14px, 2%, 24px);
  position: relative;
  overflow: hidden;
}

.service-tabs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-tab {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px;
  border-radius: 999px;
  border: 1px solid rgba(10, 20, 35, .1);
  background: rgba(255, 255, 255, .55);
  cursor: pointer;
  font-weight: 800;
  font-size: 13px;
  color: #0b1118;
}

.service-tab__icon {
  opacity: .75;
}

.service-tab__arrow {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(10, 88, 202, .1);
  color: var(--primary);
}

.service-tab.is-active {
  background: #0f1620;
  color: #fff;
  border-color: rgba(255, 255, 255, .14);
}

.service-tab.is-active .service-tab__arrow {
  background: rgba(255, 255, 255, .14);
  color: #fff;
}

.services__right {
  position: relative;
  padding: 4px 0;
}

.services__content {
  position: relative;
  z-index: 2;
}

.service-card {
  margin-top: 14px;
  border: 1px solid rgba(10, 20, 35, .1);
  border-radius: 20px;
  background: rgba(255, 255, 255, .72);
  overflow: hidden;
}

.service-card__img {
  height: clamp(160px, 18vw, 220px);
  background: linear-gradient(135deg, rgba(10, 88, 202, .1), transparent), url("../img/service.jpg");
  background-size: cover;
  background-position: center;
}

.service-card__body {
  padding: clamp(10px, 1.5%, 18px);
}

.service-card__title {
  font-weight: 900;
  font-size: 13px;
  margin-bottom: 6px;
}

.service-card__text {
  color: var(--muted);
  font-size: 13px;
}

.services__note {
  margin-top: 12px;
  font-size: 12px;
  color: #203040;
  display: flex;
  gap: 10px;
  align-items: center;
}

.services__note a {
  color: var(--primary);
  font-weight: 900;
}

.services__note-ico {
  color: var(--primary);
}

.services__watermark {
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  border: 2px dashed rgba(10, 88, 202, .18);
  opacity: .35;
  z-index: 1;
}

/* Section 4 – services + CTA */
.section-4 {
  margin-top: -4%;
  margin-bottom: -4%;
  padding: 1.5% var(--pad) 1.5%;
  overflow-x: hidden;
  box-sizing: border-box;
}

@media (min-width: 1000px) and (max-width: 1280px) {
  .section-4 {
    margin-top: -2%;
    margin-bottom: clamp(24px, 3%, 40px);
    padding: 2% var(--pad) clamp(32px, 4vw, 56px);
  }
}

.section-4__wrap {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 1.5vw, 24px);
  background-color: #E0EDF7;
  overflow-x: hidden;
  padding: clamp(24px, 3vw, 48px);
  box-sizing: border-box;
}

.section-4__wrap .section-4__corner-img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: clamp(180px, 20vw, 386px);
  height: auto;
  max-height: min(60vh, 526px);
  object-fit: cover;
  object-position: right bottom;
  display: block;
  pointer-events: none;
}

.section-4__top {
  display: grid;
  grid-template-columns: minmax(0, 45%) minmax(0, 55%);
  gap: clamp(24px, 4vw, 60px);
  align-items: end;
  min-width: 0;
}

.section-4__left {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2vw, 28px);
  margin-left: clamp(0px, 8vw, 150px);
  min-width: 0;
}

.section-4__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: clamp(20px, 4vw, 80px);
}

.section-4__kicker-img {
  width: clamp(70px, 6vw, 114px);
  height: auto;
  max-height: 36px;
  object-fit: contain;
  display: block;
}

.section-4__kicker-fallback {
  width: 114px;
  height: 36px;
  background: linear-gradient(90deg, var(--primary), rgba(0, 70, 124, 0.5));
  border-radius: 4px;
  flex-shrink: 0;
}

.section-4__title {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: clamp(22px, 2.2vw, 35px);
  line-height: 1.2;
  color: var(--text);
}

.section-4__buttons {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 2vw, 40px);
}

.section-4__btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: clamp(8px, 1vw, 14px);
  padding: clamp(8px, 1vw, 12px) clamp(10px, 1.2vw, 16px);
  border-radius: 14px 55.52px 55.52px 14px;
  border: 1px solid var(--line);
  background: #fff;
  text-decoration: none;
  color: var(--text);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
  max-width: min(591px, 100%);
  min-height: auto;
  max-height: none;
}

@media (min-width: 1001px) {
  .section-4__buttons {
    gap: clamp(8px, 1.2vw, 24px);
  }
  .section-4__btn {
    padding-top: clamp(14px, 1.5vw, 22px);
    padding-bottom: clamp(14px, 1.5vw, 22px);
  }
}

.section-4__btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/icon-button-bg.png");
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 0;
}

.section-4__btn:hover::before {
  opacity: 1;
}

.section-4__btn:hover {
  color: #fff;
  border-color: rgba(10, 88, 202, 0.25);
  box-shadow: none;
}

.section-4__btn:hover .section-4__btn-title {
  color: #fff;
}

.section-4__btn-icon-wrap {
  position: relative;
  width: clamp(28px, 2.3vw, 44px);
  height: clamp(28px, 2.3vw, 44px);
  flex-shrink: 0;
  z-index: 1;
}

.section-4__btn-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: opacity 0.2s ease;
}

.section-4__btn-icon--hover {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}

.section-4__btn:hover .section-4__btn-icon:not(.section-4__btn-icon--hover) {
  opacity: 0;
}

.section-4__btn:hover .section-4__btn-icon--hover {
  opacity: 1;
}

.section-4__btn-title {
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 0;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: clamp(14px, 1.4vw, 27px);
  line-height: 1.3;
  text-align: left;
}

.section-4__btn-arrow {
  position: relative;
  z-index: 1;
  width: clamp(28px, 2.8vw, 66px);
  height: clamp(28px, 2.8vw, 66px);
  object-fit: contain;
  flex-shrink: 0;
}

.section-4__right {
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 2vw, 24px);
  margin-right: clamp(0px, 10vw, 280px);
  overflow: hidden;
  min-width: 0;
}

.section-4__headings {
  position: relative;
  min-height: 0;
}

.section-4__heading {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: clamp(20px, 2.8vw, 55px);
  line-height: 1.2;
  color: var(--text);
  max-width: 100%;
  transition: opacity .25s ease;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}

.section-4__heading--2,
.section-4__heading--3,
.section-4__heading--4 {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
}

.section-4__cards {
  position: relative;
  min-height: clamp(220px, 25vw, 490px);
  min-width: 0;
}

.section-4__card {
  width: 100%;
  max-width: 100%;
  height: 100%;
  min-height: clamp(220px, 25vw, 490px);
  padding: clamp(20px, 2.5vw, 28px);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 1.2vw, 20px);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
  box-sizing: border-box;
}

.section-4__card:first-child {
  opacity: 1;
  pointer-events: auto;
}

.section-4__top:has(.section-4__buttons .section-4__btn:nth-child(1):hover) .section-4__heading--1 { opacity: 1; }
.section-4__top:has(.section-4__buttons .section-4__btn:nth-child(1):hover) .section-4__heading--2,
.section-4__top:has(.section-4__buttons .section-4__btn:nth-child(1):hover) .section-4__heading--3,
.section-4__top:has(.section-4__buttons .section-4__btn:nth-child(1):hover) .section-4__heading--4 { opacity: 0; }
.section-4__top:has(.section-4__buttons .section-4__btn:nth-child(1):hover) .section-4__card:nth-child(1) { opacity: 1; pointer-events: auto; }
.section-4__top:has(.section-4__buttons .section-4__btn:nth-child(1):hover) .section-4__card:nth-child(2),
.section-4__top:has(.section-4__buttons .section-4__btn:nth-child(1):hover) .section-4__card:nth-child(3),
.section-4__top:has(.section-4__buttons .section-4__btn:nth-child(1):hover) .section-4__card:nth-child(4) { opacity: 0; pointer-events: none; }

.section-4__top:has(.section-4__buttons .section-4__btn:nth-child(2):hover) .section-4__heading--1,
.section-4__top:has(.section-4__buttons .section-4__btn:nth-child(2):hover) .section-4__heading--3,
.section-4__top:has(.section-4__buttons .section-4__btn:nth-child(2):hover) .section-4__heading--4 { opacity: 0; }
.section-4__top:has(.section-4__buttons .section-4__btn:nth-child(2):hover) .section-4__heading--2 { opacity: 1; }
.section-4__top:has(.section-4__buttons .section-4__btn:nth-child(2):hover) .section-4__card:nth-child(1),
.section-4__top:has(.section-4__buttons .section-4__btn:nth-child(2):hover) .section-4__card:nth-child(3),
.section-4__top:has(.section-4__buttons .section-4__btn:nth-child(2):hover) .section-4__card:nth-child(4) { opacity: 0; pointer-events: none; }
.section-4__top:has(.section-4__buttons .section-4__btn:nth-child(2):hover) .section-4__card:nth-child(2) { opacity: 1; pointer-events: auto; }

.section-4__top:has(.section-4__buttons .section-4__btn:nth-child(3):hover) .section-4__heading--1,
.section-4__top:has(.section-4__buttons .section-4__btn:nth-child(3):hover) .section-4__heading--2,
.section-4__top:has(.section-4__buttons .section-4__btn:nth-child(3):hover) .section-4__heading--4 { opacity: 0; }
.section-4__top:has(.section-4__buttons .section-4__btn:nth-child(3):hover) .section-4__heading--3 { opacity: 1; }
.section-4__top:has(.section-4__buttons .section-4__btn:nth-child(3):hover) .section-4__card:nth-child(1),
.section-4__top:has(.section-4__buttons .section-4__btn:nth-child(3):hover) .section-4__card:nth-child(2),
.section-4__top:has(.section-4__buttons .section-4__btn:nth-child(3):hover) .section-4__card:nth-child(4) { opacity: 0; pointer-events: none; }
.section-4__top:has(.section-4__buttons .section-4__btn:nth-child(3):hover) .section-4__card:nth-child(3) { opacity: 1; pointer-events: auto; }

.section-4__top:has(.section-4__buttons .section-4__btn:nth-child(4):hover) .section-4__heading--1,
.section-4__top:has(.section-4__buttons .section-4__btn:nth-child(4):hover) .section-4__heading--2,
.section-4__top:has(.section-4__buttons .section-4__btn:nth-child(4):hover) .section-4__heading--3 { opacity: 0; }
.section-4__top:has(.section-4__buttons .section-4__btn:nth-child(4):hover) .section-4__heading--4 { opacity: 1; }
.section-4__top:has(.section-4__buttons .section-4__btn:nth-child(4):hover) .section-4__card:nth-child(1),
.section-4__top:has(.section-4__buttons .section-4__btn:nth-child(4):hover) .section-4__card:nth-child(2),
.section-4__top:has(.section-4__buttons .section-4__btn:nth-child(4):hover) .section-4__card:nth-child(3) { opacity: 0; pointer-events: none; }
.section-4__top:has(.section-4__buttons .section-4__btn:nth-child(4):hover) .section-4__card:nth-child(4) { opacity: 1; pointer-events: auto; }

.section-4__card-img-wrap {
  flex: 1 1 0;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.section-4__card-img {
  width: 100%;
  max-width: min(471px, 100%);
  height: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: 10px;
}

.section-4__card-title {
  margin: 0 auto;
  padding: 0;
  width: 100%;
  max-width: min(471px, 100%);
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: clamp(14px, 1.4vw, 25px);
  line-height: 1.3;
  color: var(--text);
  flex-shrink: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
}

.section-4__card-text {
  margin: 0 auto;
  padding: 0;
  width: 100%;
  max-width: min(471px, 100%);
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: clamp(13px, 1.3vw, 25px);
  line-height: 1.4;
  color: var(--muted);
  flex-shrink: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-clamp: 3;
}

.section-4__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: clamp(14px, 1.5vw, 20px) 0;
  border-top: 1px solid var(--line);
}

.section-4__cta-ico {
  font-size: clamp(16px, 1.5vw, 23px);
  line-height: 1;
  color: var(--primary);
}

.section-4__cta-text {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 1.4vw, 23px);
  line-height: 1.3;
  color: var(--text);
}

.section-4__cta-link {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(14px, 1.4vw, 23px);
  line-height: 1.3;
  color: #000;
  text-decoration: none;
}

.section-4__cta-link:hover {
  text-decoration: underline;
}

@media (max-width: 1000px) {
  .section-4__top {
    grid-template-columns: 1fr;
    gap: clamp(20px, 3vw, 40px);
    align-items: start;
  }

  .section-4__left {
    margin-left: 0;
  }

  .section-4__right {
    margin-right: 0;
    max-width: 100%;
  }

  .section-4__head {
    margin-bottom: clamp(16px, 3vw, 48px);
  }

  .section-4__heading {
    font-size: clamp(22px, 4vw, 42px);
    max-width: 100%;
  }

  .section-4__cards {
    min-height: clamp(200px, 42vw, 380px);
  }

  .section-4__card {
    width: 100%;
    max-width: 100%;
    min-height: clamp(200px, 42vw, 380px);
  }

  .section-4__card-title,
  .section-4__card-text {
    width: 100%;
    max-width: min(471px, 100%);
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    text-align: left;
  }

  .section-4__wrap .section-4__corner-img {
    width: clamp(100px, 15vw, 220px);
  }
}

@media (min-width: 1001px) and (max-width: 1280px) {
  .section-4__cards {
    min-height: clamp(280px, 30vw, 520px);
  }
  .section-4__card {
    min-height: clamp(280px, 30vw, 520px);
  }
  .section-4__card-img {
    max-width: min(500px, 100%);
  }
}

@media (max-width: 600px) {
  .intro {
    padding-bottom: clamp(48px, 14vw, 72px);
  }
  .section-4 {
    padding-top: clamp(48px, 12vw, 64px);
  }

  .section-4__wrap {
    padding: clamp(12px, 3vw, 20px);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .section-4__head {
    flex-wrap: wrap;
    margin-bottom: clamp(12px, 3vw, 20px);
    gap: 8px;
  }

  .section-4__kicker-img {
    width: clamp(50px, 14vw, 80px);
  }

  .section-4__title {
    font-size: clamp(16px, 4.5vw, 22px);
  }

  .section-4__buttons {
    gap: 8px;
  }

  .section-4__btn {
    flex-wrap: wrap;
    padding: 8px 10px;
    gap: 6px;
  }

  .section-4__btn-icon-wrap {
    width: 26px;
    height: 26px;
  }

  .section-4__btn-title {
    font-size: clamp(11px, 3.2vw, 16px);
  }

  .section-4__btn-arrow {
    width: 22px;
    height: 22px;
  }

  .section-4__heading {
    font-size: clamp(14px, 3.8vw, 20px);
  }

  .section-4__cards {
    min-height: clamp(270px, 72vw, 320px);
  }

  .section-4__card {
    min-height: clamp(270px, 72vw, 320px);
  }

  .section-4__card-title {
    font-size: clamp(12px, 2.8vw, 16px);
  }

  .section-4__card-text {
    font-size: clamp(11px, 2.6vw, 14px);
    flex: none;
  }

  .section-4__wrap .section-4__corner-img {
    width: clamp(60px, 18vw, 110px);
  }

  .section-4__cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 10px 0;
  }

  .section-4__cta-ico {
    font-size: 16px;
  }

  .section-4__cta-text,
  .section-4__cta-link {
    font-size: clamp(11px, 2.8vw, 14px);
  }

  .section-4__cta-link {
    margin-left: 0;
  }
}

/* Projects */
.projects {
  margin-top: -10%;
  margin-bottom: -10%;
  padding: 1.5% 0 3%;
}

@media (min-width: 1025px) {
  .projects {
    padding-top: 5%;
  }
}

@media (min-width: 1000px) and (max-width: 1280px) {
  .projects {
    margin-top: clamp(16px, 2.5%, 32px);
    margin-bottom: -18%;
  }
}

@media (max-width: 1024px) {
  .projects {
    padding-top: 4%;
  }
}

@media (max-width: 768px) {
  .projects {
    padding-top: 14%;
  }
}

@media (max-width: 480px) {
  .projects {
    padding-top: 14%;
  }
}

.projects .container {
  margin-bottom: clamp(6px, 1%, 12px);
}

.projects__title {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: clamp(28px, 4vw, 76.52px);
  line-height: 1.2;
  text-align: center;
  color: var(--text);
}

.projects-slider {
  position: relative;
  width: 100%;
  padding-bottom: clamp(8px, 1.2vw, 20px);
}

.projects-slider__viewport {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.projects-slider__track {
  display: flex;
  width: 166.66vw;
  box-sizing: border-box;
  transition: transform 0.25s ease-out;
}

@media (min-width: 1025px) {
  .projects-slider__track {
    gap: 24px;
    width: calc(166.66vw + 4 * 24px);
  }
}

.project-card {
  flex: 0 0 33.33vw;
  width: 33.33vw;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  padding: 0 clamp(4px, 0.8vw, 12px);
}

.project-card__img-wrap {
  width: 100%;
  aspect-ratio: 619.72 / 507.58;
  overflow: hidden;
  background: var(--line);
  border-radius: clamp(8px, 1.2vw, 22px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.project-card.is-active .project-card__img-wrap {
  box-shadow: 0 clamp(8px, 1.2vw, 20px) clamp(16px, 2.5vw, 50px) rgba(10, 20, 35, .15);
}

.project-card__caption {
  width: 100%;
  margin-top: -6%;
}

.project-card:not(.is-active) .project-card__caption-bg {
  display: none;
}

.project-card:not(.is-active) .project-card__caption-inner {
  position: relative;
  color: #000;
  margin-top: clamp(16px, 4vw, 56px);
}

.project-card:not(.is-active) .project-card__desc,
.project-card:not(.is-active) .project-card__title {
  color: #000;
}

.project-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-card__caption {
  position: relative;
  width: 100%;
  margin-top: -6%;
}

.project-card__caption-bg {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
}

.project-card__caption-inner {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(8px, 1.5vw, 24px);
  box-sizing: border-box;
}

.project-card__desc {
  margin: 0 0 clamp(2px, 0.4vw, 8px);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: clamp(8px, 1.2vw, 15.74px);
  line-height: 1.4;
}

.project-card__title {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: clamp(10px, 1.8vw, 22.62px);
  line-height: 1.3;
  margin: 0;
}

.project-card.is-active .project-card__desc,
.project-card.is-active .project-card__title {
  color: #fff;
}

.project-card.is-active .project-card__desc {
  color: rgba(255, 255, 255, .95);
}


/* Work process */
.work-process {
  margin-top: -4%;
  margin-bottom: -4%;
  padding: clamp(32px, 4%, 64px) var(--pad);
  background-image: url("../img/slider-drag-line.png");
  background-size: contain;
  background-position: center 35%;
  background-repeat: no-repeat;
}

@media (max-width: 1024px) {
  .work-process {
    margin-top: 4%;
    padding-top: clamp(40px, 10vw, 64px);
  }
}

@media (min-width: 1000px) and (max-width: 1280px) {
  .work-process {
    margin-top: -6%;
    margin-bottom: -30%;
  }
}

.work-process .container {
  width: 100%;
  max-width: none;
}

.work-process__kicker {
  font-family: "Exo", sans-serif;
  font-weight: 600;
  font-size: 38px;
  color: #006ABC;
  margin-bottom: 0.25em;
  text-align: center;
}

.work-process__title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 74px;
  color: #15181B;
  margin: 0 0 clamp(32px, 4%, 56px);
  line-height: 1.1;
  text-align: center;
}

.work-process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 3%, 40px);
  align-items: start;
  max-width: calc(410px * 4 + 3 * 40px);
  margin-inline: auto;
}

.work-process__col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 410px;
  min-width: 0;
}

.work-process__col:nth-child(1),
.work-process__col:nth-child(3) {
  margin-top: 50px;
}

.work-process__img {
  width: 410px;
  max-width: 100%;
  height: 410px;
  object-fit: cover;
  display: block;
  margin-bottom: 0;
}

.work-process__col-title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: clamp(18px, 2vw, 32px);
  color: #15181B;
  margin: -44px 0 0.5em;
  line-height: 1.2;
}

.work-process__col--blue .work-process__col-title {
  color: #006ABC;
}

.work-process__col-text {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 1.5vw, 25px);
  color: #6A6A6A;
  margin: 0;
  line-height: 1.4;
}

.work-process__col:nth-child(1) .work-process__col-text {
  max-width: 320px;
  margin-inline: auto;
}

@media (max-width: 1024px) {
  .work-process__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(16px, 2.5vw, 28px);
    max-width: 100%;
  }
  .work-process__col:nth-child(1),
  .work-process__col:nth-child(3) {
    margin-top: 0;
  }
  .work-process__title {
    font-size: clamp(36px, 8vw, 56px);
  }
  .work-process__kicker {
    font-size: clamp(24px, 4vw, 38px);
  }
  .work-process__img {
    max-width: min(320px, 42vw);
  }
  .work-process__col-title {
    font-size: clamp(18px, 2.5vw, 28px);
    margin-top: -36px;
  }
  .work-process__col-text {
    font-size: clamp(14px, 1.8vw, 22px);
  }
}

@media (max-width: 640px) {
  .work-process__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(12px, 3vw, 20px);
  }
  .work-process__img {
    max-width: 100%;
  }
  .work-process__col-title {
    font-size: clamp(14px, 3.5vw, 20px);
    margin-top: -24px;
  }
  .work-process__col-text {
    font-size: clamp(12px, 2.5vw, 16px);
  }
}

@media (max-width: 480px) {
  .work-process__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(10px, 2vw, 16px);
  }
  .work-process__img {
    max-width: min(140px, 38vw);
    margin-inline: auto;
    height: auto;
    aspect-ratio: 1;
  }
  .work-process__col-title {
    margin-top: -16px;
  }
}

/* Process */
.process {
  padding: 5% var(--pad) 5%;
}

.process__line {
  height: 1px;
  background: linear-gradient(90deg, transparent, #cfe0f2, transparent);
  margin: clamp(12px, 1.5%, 20px) 0 clamp(14px, 2%, 22px);
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 2%, 22px);
}

.step {
  text-align: center;
  padding: 10px 8px;
}

.step__bubble {
  width: 62px;
  height: 62px;
  border-radius: 999px;
  border: 1px solid var(--line);
  margin: 0 auto 10px;
  display: grid;
  place-items: center;
  background: #fff;
  box-shadow: var(--shadow);
}

.step__bubble span {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--primary);
  color: #fff;
  font-weight: 900;
  font-size: 12px;
}

.step__title {
  font-weight: 900;
  font-size: 13px;
  margin-bottom: 6px;
}

.step__text {
  color: var(--muted);
  font-size: 12px;
  margin: 0;
}

/* Why us */
.why {
  margin-top: -12%;
  margin-bottom: -12%;
  padding: clamp(18px, 2.5%, 40px) var(--pad);
  overflow-x: hidden;
  box-sizing: border-box;
}

@media (max-width: 1024px) {
  .why {
    margin-top: 5%;
    margin-bottom: 8%;
  }
}

@media (min-width: 1000px) and (max-width: 1280px) {
  .why {
    margin-bottom: -25%;
  }
}

.why__container {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
  background: rgba(0, 106, 188, 0.12);
  padding: clamp(16px, 2vw, 32px);
  box-sizing: border-box;
}

.why__grid {
  display: grid;
  grid-template-columns: minmax(0, 55%) 1fr;
  gap: clamp(16px, 2vw, 24px);
  min-height: clamp(280px, 35vw, 400px);
  align-items: stretch;
}

.why__media {
  position: relative;
  min-height: clamp(200px, 28vw, 320px);
  max-width: 100%;
  min-width: 0;
}

.why__main-img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  min-height: 200px;
  max-height: min(821px, 55vw);
  object-fit: contain;
  object-position: center;
  display: block;
}

.why__content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  max-width: 100%;
  min-width: 0;
}

.why__content-inner {
  padding: clamp(16px, 2vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.why__title-row {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1vw, 12px);
  margin-bottom: clamp(8px, 1vw, 16px);
}

.why__kicker-img {
  width: clamp(24px, 2.5vw, 34px);
  height: auto;
  max-height: 22px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}

.why__title {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: clamp(18px, 1.8vw, 26px);
  color: #006ABC;
  margin: 0;
  line-height: 1.2;
}

.why__heading {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: clamp(22px, 2.8vw, 46px);
  color: #222222;
  margin: 0 0 clamp(12px, 1.5vw, 20px);
  line-height: 1.35;
}

.why__text {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 1.5vw, 27px);
  color: #636363;
  margin: 0 0 clamp(20px, 2.5vw, 40px);
  line-height: 1.4;
}

.why__divider {
  width: 100%;
  max-width: 625px;
  height: 0;
  border: none;
  border-top: 1.48px solid #D9D9D9;
  margin: 0 0 clamp(16px, 2vw, 32px);
  padding: 0;
}

.why__list {
  list-style: none;
  padding: 0;
  margin: 0 0 clamp(16px, 2vw, 28px);
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 1.5vw, 32px);
}

.why__list li {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: clamp(14px, 1.5vw, 27px);
  color: #121414;
  display: flex;
  align-items: center;
  gap: clamp(8px, 1vw, 12px);
  line-height: 1.3;
}

.why__tick {
  width: clamp(22px, 2.2vw, 31px);
  height: clamp(22px, 2.2vw, 31px);
  min-width: clamp(22px, 2.2vw, 31px);
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #006ABC;
  color: #fff;
  font-size: clamp(12px, 1.2vw, 18px);
  line-height: 1;
  font-weight: bold;
  border-radius: 50%;
  box-sizing: border-box;
}

.why__tick::before {
  content: "✓";
}

.why__bottom-img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: clamp(200px, 35vw, 580px);
  max-width: 100%;
  height: auto;
  max-height: min(380px, 45vh);
  aspect-ratio: 580 / 380;
  object-fit: cover;
  object-position: right bottom;
  z-index: 2;
}

@media (max-width: 1024px) {
  .why__container {
    padding: clamp(14px, 2vw, 24px);
  }
  .why__grid {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: clamp(12px, 2vw, 20px);
  }
  .why__media {
    min-height: 0;
    max-height: none;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .why__main-img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: none;
    min-height: 0;
    object-fit: contain;
  }
  .why__content-inner {
    padding: clamp(12px, 2vw, 28px);
  }
  .why__heading {
    font-size: clamp(20px, 4.5vw, 36px);
  }
  .why__text,
  .why__list li {
    font-size: clamp(15px, 2vw, 22px);
  }
  .why__bottom-img {
    width: clamp(180px, 45vw, 400px);
    max-height: min(320px, 40vh);
  }
}

@media (max-width: 640px) {
  .why {
    padding: clamp(16px, 4vw, 24px) var(--pad);
  }
  .why__container {
    padding: 12px;
  }
  .why__content-inner {
    padding: 12px 10px;
  }
  .why__title-row {
    margin-bottom: 8px;
  }
  .why__kicker-img {
    width: 22px;
    max-height: 18px;
  }
  .why__title {
    font-size: clamp(16px, 4vw, 22px);
  }
  .why__heading {
    font-size: clamp(18px, 4.2vw, 26px);
    margin-bottom: 10px;
  }
  .why__text {
    font-size: clamp(13px, 2.8vw, 18px);
    margin-bottom: 16px;
  }
  .why__divider {
    margin-bottom: 12px;
  }
  .why__list {
    gap: 10px;
    margin-bottom: 12px;
  }
  .why__list li {
    font-size: clamp(13px, 2.8vw, 16px);
  }
  .why__tick {
    width: 20px;
    height: 20px;
    min-width: 20px;
    font-size: 11px;
  }
  .why__bottom-img {
    width: clamp(140px, 55vw, 280px);
    max-height: min(200px, 38vh);
  }
}

@media (max-width: 480px) {
  .why__media {
    min-height: clamp(180px, 55vw, 280px);
  }
  .why__main-img {
    min-height: 180px;
  }
  .why__bottom-img {
    width: clamp(120px, 50vw, 220px);
    max-height: min(160px, 35vh);
  }
}

/* CTA & Footer */
.cta {
  background: #0b1118;
  color: #fff;
  padding: 5% var(--pad);
}

.cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(14px, 2%, 22px);
}

.cta__title {
  font-size: clamp(24px, 3.5vw, 42px);
  line-height: 1.05;
  letter-spacing: -.5px;
  font-weight: 900;
}

.cta__title span {
  color: rgba(255, 255, 255, .86);
}

.footer {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  background: #121414;
  color: #fff;
  padding: 5% var(--pad, 24px) 1%;
  margin-bottom: 0;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  overflow-x: hidden;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: clamp(24px, 4%, 48px);
  margin-bottom: clamp(24px, 3%, 40px);
}

.footer__head {
  margin: 0 0 12px;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #fff;
}

.footer__p {
  margin: 0 0 12px;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #B8BCC4;
  line-height: 1.6;
}

.footer__link {
  display: block;
  margin: 0 0 10px;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #B8BCC4;
  text-decoration: none;
  transition: color .2s, opacity .2s;
}

.footer__link:hover {
  color: #fff;
  opacity: 1;
}

.footer__bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.62);
  text-align: center;
}

.footer .socials {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer .socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  transition: background .2s, color .2s;
}

.footer .socials a:hover {
  background: #006ABC;
  color: #fff;
}

@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.footer__row--1 {
  margin-left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
}

.footer__headings {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 100%;
}

.footer__cta-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.footer__title--1 {
  margin: 0;
  padding: 0;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 500;
  font-size: clamp(36px, 8vw, 125px);
  line-height: 1.1;
}

.footer__title--2 {
  margin: 0;
  padding: 0;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 300;
  font-size: clamp(36px, 8vw, 125px);
  line-height: 1.1;
}

.footer__cta-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(160px, 25vw, 234px);
  height: clamp(44px, 5vw, 62px);
  margin-left: 0;
  padding: 0 clamp(16px, 2vw, 24px);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 500;
  font-size: clamp(14px, 1.5vw, 18px);
  color: #fff;
  background: #006ABC;
  border-radius: 62px;
  cursor: pointer;
  text-decoration: none;
}

.footer__cta-btn:hover {
  opacity: .9;
}

.footer__cta-arrow {
  width: clamp(36px, 4vw, 62px);
  height: clamp(36px, 4vw, 62px);
  min-width: 36px;
  min-height: 36px;
  max-width: none;
  max-height: none;
  object-fit: contain;
  flex-shrink: 0;
}

@media (min-width: 901px) {
  .footer__row--1 {
    justify-content: center;
  }
  .footer__headings {
    display: grid;
    grid-template-columns: auto auto;
    grid-template-rows: auto auto;
    align-items: center;
    gap: 0 32px;
    text-align: left;
    width: auto;
    max-width: 100%;
    margin-left: -4vw;
  }
  .footer__title--1 {
    grid-column: 1;
    grid-row: 1;
    text-align: left;
  }
  .footer__title--2 {
    grid-column: 1;
    grid-row: 2;
    text-align: left;
    margin-left: 8vw;
  }
  .footer__cta-wrap {
    grid-column: 2;
    grid-row: 1;
    justify-content: flex-start;
    margin-top: 0;
    align-self: center;
  }
}

.footer__row--2 {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px 0 0;
  padding: 0;
  gap: 30px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.footer__divider {
  flex: 1 1 0;
  min-width: 0;
  max-width: 1124px;
  height: 1px;
  min-height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0;
  padding: 0;
}

.footer__socials {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-shrink: 0;
}

.footer__social {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  transition: opacity .2s;
}

.footer__social:hover {
  opacity: .85;
}

.footer__social--fb {
  background: #fff;
  color: #0b1118;
}

.footer__social--ig {
  background: #006ABC;
  color: #fff;
}

.footer__social--tt {
  background: #fff;
  color: #0b1118;
}

.footer .footer__cols {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 60px auto 0;
  max-width: 1100px;
  width: 92%;
  box-sizing: border-box;
}

.footer .footer__col {
  max-width: 340px;
  min-width: 0;
}

.footer .footer__col:nth-child(1) {
  margin-left: -120px;
  margin-right: 100px;
}

.footer .footer__col:nth-child(2) {
  flex-shrink: 0;
}

.footer .footer__col:nth-child(3) {
  margin-left: 100px;
}

.footer__col-title {
  margin: 0 0 16px;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 500;
  font-size: clamp(14px, 1.4vw, 18px);
  color: #fff;
}

.footer__col:first-child .footer__col-text {
  width: 100%;
  max-width: 335px;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: #B8BCC4;
  line-height: 1.6;
  margin: 0 0 12px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.footer__col:nth-child(2) .footer__col-link {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #B8BCC4;
}

.footer__col:nth-child(3) .footer__col-text,
.footer__col:nth-child(3) .footer__col-link {
  font-family: Roboto, ui-sans-serif, system-ui, sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #B8BCC4;
}

.footer__col-text {
  margin: 0 0 12px;
  line-height: 1.6;
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.footer__col-link {
  display: block;
  margin: 0 0 10px;
  opacity: 0.9;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.footer__col-link:hover {
  opacity: 1;
}

.footer__divider--bottom {
  margin: 40px auto 24px;
  width: 100%;
  max-width: 1124px;
}

.footer__copyright {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.62);
  text-align: center;
}

/* Service page layout */
.srv-banner {
  position: relative;
  width: 100%;
  height: clamp(200px, 21vw, 404px);
  overflow: hidden;
  background: var(--nav);
  margin-top: 0;
}

.srv-banner__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.srv-banner__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.srv-banner__label {
  margin: 0 0 0.4em 0;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: clamp(22px, 2.08vw, 40px);
  line-height: 1.2;
  color: #fff;
}

.srv-banner__title {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3.125vw, 60px);
  line-height: 1.2;
  color: #fff;
}

.srv-main {
  margin-top: 6.25vw;
  padding: clamp(1rem, 2vw, 2rem) 0;
}

.srv-hero {
  margin-bottom: 2rem;
}

.srv-hero .container.srv-hero__grid {
  margin-left: 16.41vw;
  margin-top: 0;
  margin-right: auto;
  padding: 0;
  width: min(calc(100% - 16.41vw), var(--container));
}

.srv-hero__grid {
  display: grid;
  grid-template-columns: 765fr 451fr;
  gap: 2.54%;
  align-items: stretch;
}

.srv-hero__media {
  position: relative;
  overflow: hidden;
  border-radius: clamp(8px, 0.625vw, 12px);
  background: var(--soft);
  aspect-ratio: 765 / 470;
}

.srv-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.srv-hero__side {
  display: flex;
  align-items: center;
  min-height: 0;
}

.srv-hero__inner {
  width: 100%;
  max-width: 21.35vw;
  padding: 7.32%;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

@media (min-width: 901px) {
  .srv-hero__inner {
    max-width: 25vw;
  }
}

.srv-hero__title {
  margin: 0 0 clamp(0.75rem, 2vw, 1.25rem);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(18px, 2.4vw, 24px);
  line-height: 1;
  color: var(--text);
  letter-spacing: -0.02em;
}

.srv-hero__nav {
  display: flex;
  flex-direction: column;
}

.srv-hero__nav .srv-hero__btn {
  margin-bottom: 8.78%;
}

.srv-hero__nav .srv-hero__btn:last-child {
  margin-bottom: 0;
}

.srv-hero__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  width: 100%;
  height: clamp(44px, 3.125vw, 60px);
  min-height: clamp(44px, 3.125vw, 60px);
  padding: 0 clamp(0.5rem, 1vw, 1rem);
  box-sizing: border-box;
  border: 1px solid var(--line);
  border-radius: clamp(6px, 0.52vw, 10px);
  background: #fff;
  color: #6A6A6A;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: clamp(16px, 1.6vw, 20px);
  text-align: left;
  transition: background 0.2s, border-color 0.2s;
}

.srv-hero__btn:hover {
  background: var(--soft);
  border-color: var(--primary);
}

.srv-hero__btn.is-active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.srv-hero__btn-ico {
  width: clamp(10px, 0.625vw, 12px);
  height: clamp(10px, 0.625vw, 12px);
  flex-shrink: 0;
  object-fit: contain;
}

.srv-hero__btn.is-active .srv-hero__btn-ico {
  filter: brightness(0) invert(1);
}

.srv-detail {
  padding: 2rem 0;
}

.srv-detail .container.srv-detail__grid {
  margin-left: 315px;
  margin-right: auto;
  padding: 0;
  width: min(calc(100% - 315px), var(--container));
}

.srv-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.srv-detail__left,
.srv-detail__right {
  padding: 0;
}

.srv-detail__left {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.srv-detail__block--1 {
  width: 850px;
  max-width: 100%;
  padding: 0;
}

.srv-detail__block--2 {
  width: 612px;
  max-width: 100%;
  padding: 0;
}

.srv-detail__block--1 .srv-detail__heading {
  margin: 0 0 0.75rem;
  max-width: 850px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 1;
  color: #15181B;
}

.srv-detail__block--1 .srv-detail__text {
  margin: 0;
  max-width: 850px;
  min-height: 160px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 27px;
  line-height: 1.45;
  color: #6A6A6A;
}

.srv-detail__block--2 .srv-detail__heading {
  margin: 0 0 0.75rem;
  max-width: 580px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 1;
  color: #15181B;
}

.srv-detail__list {
  margin: 0;
  max-width: 612px;
  min-height: 280px;
  padding-left: 1.5rem;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 23px;
  line-height: 1.6;
  color: #6A6A6A;
}

.srv-detail__list li {
  margin-bottom: 14px;
}

.srv-detail__list li:last-child {
  margin-bottom: 0;
}

.srv-detail__right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.srv-detail__heading--right {
  margin: 0 0 0.5rem;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #15181B;
}

.srv-detail__media {
  position: relative;
  width: 400px;
  max-width: 100%;
  aspect-ratio: 350 / 426;
  overflow: hidden;
  border-radius: 12px;
  background: var(--soft);
}

.srv-detail__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.srv-detail__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1rem;
}

.srv-detail__img-caption {
  margin: 0;
  max-width: 204px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 30px;
  color: #ffffff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0,0,0,.4);
}

.srv-detail__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  height: 46px;
  padding: 0 1.25rem;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #ffffff;
  background: var(--primary);
  border: none;
  border-radius: 8px;
  text-decoration: none;
  box-sizing: border-box;
  transition: background 0.2s;
}

.srv-detail__btn:hover {
  background: var(--primary-2);
  color: #fff;
}

@media (min-width: 601px) and (max-width: 1280px) {
  .service-page .srv-detail__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 24px 30px;
    align-items: start;
  }
  .service-page .srv-detail__left {
    display: contents;
  }
  .service-page .srv-detail__block--1 {
    grid-column: 1 / -1;
    width: 100%;
    max-width: 100%;
  }
  .service-page .srv-detail__block--2 {
    grid-column: 1;
    grid-row: 2;
    width: 100%;
    max-width: 100%;
  }
  .service-page .srv-detail__right {
    grid-column: 2;
    grid-row: 2;
    width: 100%;
    align-items: flex-start;
  }
  .service-page .srv-detail__block--1 .srv-detail__heading,
  .service-page .srv-detail__block--1 .srv-detail__text {
    max-width: 100%;
  }
  .service-page .srv-detail__block--2 .srv-detail__heading,
  .service-page .srv-detail__list {
    max-width: 100%;
  }
  .service-page .srv-detail__media {
    width: 100%;
    max-width: 100%;
  }
}

@media (min-width: 1281px) {
  .service-page .srv-detail__block--1 {
    width: 723px;
    max-width: 100%;
  }
  .service-page .srv-detail__block--1 .srv-detail__heading,
  .service-page .srv-detail__block--1 .srv-detail__text {
    max-width: 723px;
  }
}

.srv-faq {
  padding: 2rem 0;
}

.srv-faq .container.srv-faq__wrap {
  margin-left: 315px;
  margin-right: auto;
  padding: 0;
  width: min(calc(100% - 315px), var(--container));
}

.srv-faq__title {
  margin: 0 0 1.5rem;
  max-width: 594px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.2;
  color: #15181B;
}

.srv-faq__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 850px;
}

.srv-faq__item {
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.srv-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 1.25rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #15181B;
  text-align: left;
  cursor: pointer;
  list-style: none;
  background: #fff;
  border: none;
  transition: background 0.2s, color 0.2s;
}

.srv-faq__item[open] .srv-faq__question {
  background: #15181B;
  color: #fff;
}

.srv-faq__question::-webkit-details-marker {
  display: none;
}

.srv-faq__question::after {
  content: "+";
  flex-shrink: 0;
  margin-left: 0.5rem;
  font-size: 1.25rem;
  font-weight: 400;
  opacity: 0.7;
}

.srv-faq__item[open] .srv-faq__question::after {
  content: "−";
  color: #fff;
  opacity: 1;
}

.srv-faq__question:hover {
  background: var(--soft);
}

.srv-faq__item[open] .srv-faq__question:hover {
  background: #15181B;
}

.srv-faq__answer {
  padding: 0 1.25rem 1rem;
}

.srv-faq__answer p {
  margin: 0;
  padding: 0.5rem 0 0;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #6A6A6A;
}

@media (max-width: 900px) {
  .srv-banner {
    height: clamp(150px, 28vw, 260px);
  }

  .srv-main {
    margin-top: 4vw;
    padding: 1rem var(--pad);
  }

  .srv-hero .container.srv-hero__grid {
    margin-left: auto;
    margin-right: auto;
    width: 92%;
    max-width: 100%;
  }

  .srv-detail .container.srv-detail__grid {
    margin-left: auto;
    margin-right: auto;
    width: 92%;
    max-width: 100%;
  }

  .srv-faq .container.srv-faq__wrap {
    margin-left: auto;
    margin-right: auto;
    width: 92%;
    max-width: 100%;
  }

  .srv-hero__grid {
    grid-template-columns: 1fr;
  }

  .srv-hero__media {
    aspect-ratio: 850 / 470;
  }

  .srv-hero__inner {
    max-width: 100%;
  }

  .srv-hero__nav .srv-hero__btn {
    margin-bottom: clamp(8px, 1.5vw, 14px);
  }

  .srv-hero__btn {
    width: 100%;
    max-width: none;
  }

  .srv-detail__grid {
    grid-template-columns: 1fr;
    gap: 40px;
    place-items: center;
  }

  .srv-detail__left {
    gap: 40px;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 100%;
  }

  .srv-detail__right {
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .srv-detail__block--1,
  .srv-detail__block--2 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .srv-detail__block--1 .srv-detail__heading,
  .srv-detail__block--1 .srv-detail__text,
  .srv-detail__block--2 .srv-detail__heading,
  .srv-detail__list {
    max-width: 100%;
  }

  .srv-detail__left,
  .srv-detail__right {
    min-width: 0;
  }

  .srv-detail__heading--right {
    text-align: center;
  }

  .srv-detail__list {
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    display: block;
    width: 100%;
    min-height: 0;
  }

  .srv-detail__media {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
  }


  .srv-faq__title {
    font-size: clamp(20px, 4vw, 28px);
  }

  .brand-slider-wrap {
    padding: 0 var(--pad);
  }

  .srv-detail__block--1 .srv-detail__heading,
  .srv-detail__block--2 .srv-detail__heading {
    font-size: clamp(20px, 4vw, 28px);
  }

  .srv-detail__block--1 .srv-detail__text {
    font-size: clamp(16px, 2.5vw, 24px);
  }

  .srv-detail__list {
    font-size: clamp(16px, 2.2vw, 20px);
  }

  .srv-detail__heading--right {
    font-size: clamp(18px, 3vw, 24px);
  }

  .srv-detail__img-caption {
    font-size: clamp(18px, 3vw, 26px);
  }

  .footer {
    padding: 8% var(--pad) 5%;
  }

  .footer__row--1 {
    padding: 0;
    justify-content: center;
  }

  .footer__headings {
    align-items: center;
    text-align: center;
  }

  .footer__title--1,
  .footer__title--2 {
    font-size: clamp(32px, 8vw, 80px);
    text-align: center;
  }

  .footer__cta-wrap {
    justify-content: center;
  }

  .footer__row--2 {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-left: 0;
    margin-right: 0;
    margin-top: 32px;
    gap: 24px;
    width: 100%;
  }

  .footer__divider {
    flex: none;
    width: 100%;
    max-width: none;
    height: 1px;
    min-height: 1px;
  }

  .footer__socials {
    justify-content: center;
  }

  .footer .footer__cols {
    flex-direction: column;
    align-items: center;
    gap: 24px !important;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .footer .footer__col:nth-child(1),
  .footer .footer__col:nth-child(3) {
    margin-left: 0;
    margin-right: 0;
  }

  .footer .footer__col {
    max-width: 100%;
  }

  .footer__col-title,
  .footer__col-text,
  .footer__col-link {
    text-align: center;
  }

  .footer__cols .footer__col:first-child .footer__col-text {
    width: 100%;
    max-width: 335px;
    margin-left: auto;
    margin-right: auto;
  }

  .footer__copyright {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
  }
}

/* Page-specific */
.services-list {
  padding: 20px 0 40px;
}

.services-list__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.services-list__card {
  display: block;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
}

.services-list__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(10, 20, 35, .12);
}

.services-list__card-img {
  height: 200px;
  background: var(--soft) linear-gradient(135deg, rgba(10, 88, 202, .15), transparent);
  background-size: cover;
  background-position: center;
}

.services-list__card-body {
  padding: 20px;
}

.services-list__card-title {
  font-weight: 900;
  font-size: 18px;
  margin: 0 0 8px;
}

.services-list__card-text {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
  line-height: 1.5;
}

.services-list__card-arrow {
  margin-top: 12px;
  font-weight: 800;
  color: var(--primary);
  font-size: 13px;
}

.contact-page {
  padding: 20px 0 40px;
}

.contact-page__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.contact-block {
  margin-bottom: 20px;
}

.contact-block__label {
  font-weight: 900;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 6px;
}

.contact-block__value {
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
}

.contact-block__link {
  color: var(--primary);
  font-weight: 700;
}

.contact-block__link:hover {
  text-decoration: underline;
}

.contact-page__socials {
  margin-top: 24px;
}

.contact-cta-box {
  background: var(--soft);
  border-radius: 22px;
  padding: 24px;
  border: 1px solid var(--line);
}

.contact-cta-box .h3 {
  margin-top: 0;
}

.contact-cta-box .btn {
  margin-right: 12px;
  margin-top: 8px;
}

.contact-cta-box .btn--outline {
  color: var(--primary);
  border-color: var(--primary);
}

.contact-cta-box .btn--outline .btn__icon {
  background: rgba(10, 88, 202, .12);
}

.error-page {
  padding: 60px 0 80px;
  text-align: center;
}

.error-page__inner {
  max-width: 520px;
  margin: 0 auto;
}

.error-page__code {
  font-size: 120px;
  line-height: 1;
  font-weight: 900;
  color: var(--line);
  margin-bottom: 10px;
}

.error-page__text {
  margin: 0 0 24px;
  font-size: 16px;
}

/* Responsive */
@media (max-width: 1100px) {
  :root {
    --header-h: 110px;
    --left-panel-w: 180px;
    --topbar-h: 44px;
    --nav-h: 66px;
  }

  .header-right {
    z-index: 10;
  }

  .header-left {
    z-index: 2;
    border-radius: 0 0 40px 4px;
  }

  .nav {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .header-nav {
    padding: 0 18px;
  }

  .footer .footer__col:nth-child(1),
  .footer .footer__col:nth-child(3) {
    margin-left: 0;
    margin-right: 0;
  }
  .footer .footer__cols {
    width: 100%;
    max-width: 100%;
    padding: 0 var(--pad);
  }
  .footer__title--1,
  .footer__title--2 {
    font-size: clamp(28px, 6vw, 72px);
  }
}

@media (max-width: 1280px) {
  .srv-hero .container.srv-hero__grid {
    margin-left: var(--pad);
    margin-right: var(--pad);
    width: calc(100% - var(--pad) * 2);
    max-width: 100%;
  }

  .srv-detail .container.srv-detail__grid {
    margin-left: var(--pad);
    margin-right: var(--pad);
    width: calc(100% - var(--pad) * 2);
    max-width: 100%;
    box-sizing: border-box;
  }

  .srv-detail__grid {
    min-width: 0;
  }

  .srv-detail__left,
  .srv-detail__right {
    min-width: 0;
  }

  .srv-detail__block--1,
  .srv-detail__block--2 {
    width: 100%;
    max-width: 100%;
  }

  .srv-detail__block--1 .srv-detail__heading,
  .srv-detail__block--1 .srv-detail__text,
  .srv-detail__block--2 .srv-detail__heading,
  .srv-detail__list {
    max-width: 100%;
  }

  .srv-faq .container.srv-faq__wrap {
    margin-left: var(--pad);
    margin-right: var(--pad);
    width: calc(100% - var(--pad) * 2);
    max-width: 100%;
  }
}

@media (max-width: 980px) {
  .topbar__item {
    font-size: clamp(9px, 1.1vw, 14px);
  }
  :root {
    --pad: 18px;
    --header-h: 100px;
    --left-panel-w: 150px;
    --topbar-h: 42px;
    --nav-h: 58px;
  }

  .hero__block--bl {
    bottom: 10%;
  }

  .hero__contact-wrap {
    width: min(29%, 300px);
    gap: 4px;
  }
  .hero .hero__contact-btn {
    height: clamp(38px, 3.2vw, 52px);
    font-size: clamp(9px, 0.95vw, 14px);
    min-width: 0;
  }
  .hero__contact-img {
    width: clamp(24px, 2.5vw, 42px);
    height: clamp(24px, 2.5vw, 42px);
  }
  .hero__stats-img {
    width: clamp(55px, 6.5vw, 130px);
  }
  .hero__stats-text {
    font-size: clamp(13px, 1.35vw, 22px);
  }
  .hero__label {
    font-size: clamp(9px, 1vw, 14px);
  }

  .section-4__wrap {
    padding: clamp(16px, 2.5vw, 32px);
  }
  .section-4__head {
    margin-bottom: clamp(12px, 2.5vw, 36px);
  }
  .section-4__title {
    font-size: clamp(18px, 2.5vw, 26px);
  }
  .section-4__buttons {
    gap: clamp(8px, 1.2vw, 20px);
  }
  .section-4__btn-title {
    font-size: clamp(13px, 1.5vw, 20px);
  }
  .section-4__heading {
    font-size: clamp(16px, 3vw, 32px);
  }
  .section-4__cards {
    min-height: clamp(320px, 72vw, 420px);
  }
  .section-4__card {
    min-height: clamp(320px, 72vw, 420px);
  }
  .section-4__card-title {
    margin: clamp(6px, 0.8vw, 12px) auto 6px;
  }
  .section-4__card-text {
    flex: none;
    margin: 0 auto clamp(10px, 1.2vw, 16px);
  }
  .section-4__wrap .section-4__corner-img {
    width: clamp(80px, 12vw, 160px);
  }
  .section-4__cta-text,
  .section-4__cta-link {
    font-size: clamp(12px, 1.3vw, 16px);
  }

  .intro {
    padding-bottom: clamp(48px, 10vw, 72px);
  }
  .section-4 {
    padding-top: clamp(48px, 9vw, 64px);
  }

  .intro__grid {
    grid-template-columns: 70% 30%;
    aspect-ratio: 1307.31 / 774.16;
  }

  .intro__title {
    font-size: clamp(16px, 3.2vw, 28px);
  }

  .intro__text-wrap {
    width: 90%;
    min-height: 26.87%;
  }

  .intro__text {
    font-size: clamp(11px, 1.6vw, 18px);
  }

  .intro__img-wrap {
    width: 90%;
    aspect-ratio: 650.92 / 300;
  }

  .intro__col2 .intro__img--tall {
    object-fit: cover;
  }

  .services__panel {
    grid-template-columns: 1fr;
    gap: clamp(14px, 2%, 22px);
  }

  .service-card__img {
    height: clamp(140px, 20vw, 200px);
  }

  .process__steps {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(14px, 2%, 22px);
  }

  .cta__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta__title {
    font-size: clamp(22px, 5vw, 36px);
  }

  .contact-page__grid {
    grid-template-columns: 1fr;
  }

  .services-list__grid {
    grid-template-columns: 1fr;
  }

  .error-page__code {
    font-size: 80px;
  }

  .footer .footer__cols {
    grid-template-columns: 1fr;
    gap: 24px !important;
  }

  .footer__title--1,
  .footer__title--2 {
    font-size: clamp(28px, 6vw, 60px);
  }
}

@media (max-width: 520px) {
  :root {
    --header-h: 75px;
    --left-panel-w: 100px;
    --topbar-h: 36px;
    --nav-h: 39px;
  }

  .header-left {
    border-radius: 0 0 28px 4px;
  }

  .topbar__item {
    font-size: clamp(8px, 2.2vw, 11px);
  }

  .header-topbar__inner {
    padding: 0 12px;
    gap: 8px;
  }

  .topbar__right {
    display: none;
  }

  .srv-banner {
    height: clamp(140px, 38vw, 220px);
  }

  .hero__wrap {
    width: 83.87%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 var(--pad) 0 0;
  }

  .hero__block--tr,
  .hero__block--bl {
    padding: 16px;
  }

  .hero__block--tr {
    left: 53%;
    top: -8%;
  }

  .hero__block--bl {
    left: -4%;
    bottom: 4%;
  }

  .hero__contact-wrap {
    width: min(38%, 120px);
    gap: 2px;
  }
  .hero .hero__contact-btn {
    height: clamp(22px, 5.5vw, 28px);
    font-size: clamp(5px, 1.3vw, 8px);
  }
  .hero__contact-img {
    width: clamp(14px, 3.5vw, 20px);
    height: clamp(14px, 3.5vw, 20px);
  }
  .hero__stats-img {
    width: clamp(28px, 8vw, 52px);
  }
  .hero__stats-text {
    font-size: clamp(9px, 2vw, 12px);
  }
  .hero__label {
    font-size: clamp(6px, 1.5vw, 9px);
  }
  .hero__stats {
    gap: 2px;
    margin-top: 2px;
  }

  .intro {
    padding-bottom: clamp(40px, 10vw, 56px);
  }
  .section-4 {
    padding-top: clamp(40px, 10vw, 56px);
  }

  .section-4__wrap {
    padding: 10px var(--pad);
  }
  .section-4__head {
    margin-bottom: 10px;
  }
  .section-4__kicker-img {
    width: 44px;
  }
  .section-4__title {
    font-size: clamp(14px, 4vw, 18px);
  }
  .section-4__buttons {
    gap: 6px;
  }
  .section-4__btn {
    padding: 6px 8px;
    gap: 5px;
  }
  .section-4__btn-icon-wrap {
    width: 22px;
    height: 22px;
  }
  .section-4__btn-title {
    font-size: clamp(10px, 2.8vw, 13px);
  }
  .section-4__btn-arrow {
    width: 18px;
    height: 18px;
  }
  .section-4__heading {
    font-size: clamp(13px, 3.4vw, 17px);
  }
  .section-4__cards {
    min-height: clamp(255px, 68vw, 300px);
  }
  .section-4__card {
    min-height: clamp(255px, 68vw, 300px);
  }
  .section-4__card-title {
    font-size: clamp(11px, 2.6vw, 14px);
    margin: 6px auto 4px;
  }
  .section-4__card-text {
    font-size: clamp(10px, 2.4vw, 12px);
    margin: 0 auto 6px;
    flex: none;
  }
  .section-4__wrap .section-4__corner-img {
    width: clamp(50px, 14vw, 85px);
  }
  .section-4__cta {
    padding: 8px 0;
    gap: 6px 8px;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .section-4__cta-ico {
    font-size: 14px;
    flex-shrink: 0;
  }
  .section-4__cta-text,
  .section-4__cta-link {
    font-size: clamp(10px, 2.6vw, 13px);
    text-align: center;
  }
  .section-4__cta-link {
    margin-left: 0;
  }

  .hero .brand-slider-wrap {
    margin-top: 8%;
  }
  .brand-slider-wrap {
    padding: 0 var(--pad);
  }

  .brand-slider__img {
    width: clamp(80px, 22vw, 279.37px);
  }

  .project-card__caption {
    min-height: clamp(52px, 14vw, 72px);
  }
  .project-card__caption-bg {
    min-height: clamp(52px, 14vw, 72px);
    height: auto;
    object-fit: cover;
    object-position: center;
  }

  .work-process {
    padding: clamp(20px, 4vw, 32px) var(--pad);
    padding-top: clamp(48px, 12vw, 72px);
    background-image: url("../img/slider-drag-line.png"), url("../img/slider-drag-line.png");
    background-size: 80% auto, 80% auto;
    background-position: center 35%, center 75%;
    background-repeat: no-repeat, no-repeat;
  }
  .work-process__kicker {
    font-size: clamp(18px, 4vw, 24px);
  }
  .work-process__title {
    font-size: clamp(24px, 6vw, 36px);
    margin-bottom: clamp(16px, 3vw, 24px);
  }
  .work-process__grid {
    gap: clamp(10px, 2vw, 16px);
  }
  .work-process__col {
    max-width: 100%;
  }
  .work-process__img {
    max-width: min(140px, 38vw);
    height: auto;
    aspect-ratio: 1;
  }
  .work-process__col-title {
    font-size: clamp(12px, 2.8vw, 16px);
    margin-top: -16px;
  }
  .work-process__col-text {
    font-size: clamp(10px, 2.2vw, 13px);
  }
  .work-process__col:nth-child(1) .work-process__col-text {
    max-width: 100%;
  }

  .intro__grid {
    grid-template-columns: 76% 24%;
  }

  .intro__col2 {
    align-self: end;
    height: 85%;
  }

  .intro__title {
    font-size: clamp(13px, 2.6vw, 20px);
    letter-spacing: -0.02em;
    width: 115%;
    max-width: 115%;
  }

  .intro__text-wrap {
    width: 90%;
  }

  .intro__text {
    font-size: clamp(10px, 1.4vw, 15px);
  }

  .intro__img-wrap {
    width: 90%;
  }

  .footer__row--1,
  .footer__headings {
    align-items: center;
    text-align: center;
  }

  .footer__title--1,
  .footer__title--2 {
    font-size: clamp(24px, 7vw, 48px);
    text-align: center;
  }

  .footer__cta-wrap {
    justify-content: center;
  }

  .footer__row--2,
  .footer__socials {
    justify-content: center;
  }

  .footer__cols {
    justify-items: center;
    text-align: center;
  }

  .footer__col-title,
  .footer__col-text,
  .footer__col-link {
    text-align: center;
  }

  .footer__cta-btn {
    width: clamp(140px, 45vw, 234px);
    height: clamp(40px, 10vw, 62px);
  }

  .footer__cta-arrow {
    width: clamp(32px, 8vw, 48px);
    height: clamp(32px, 8vw, 48px);
  }

  .footer__social {
    width: 40px;
    height: 40px;
  }

  .footer__social svg {
    width: 18px;
    height: 18px;
  }

  .footer__copyright {
    font-size: clamp(12px, 3.2vw, 14px);
    line-height: 1.4;
  }

  .footer__col-title {
    font-size: clamp(14px, 3.5vw, 18px);
  }

  .footer__col-text,
  .footer__col-link {
    font-size: clamp(12px, 3vw, 14px);
  }
}

/* About page */
.about-banner {
  position: relative;
  width: 100%;
  min-height: 180px;
  aspect-ratio: 1920 / 404;
  overflow: hidden;
  background: var(--nav);
}

.about-banner__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-banner__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.25em;
}

.about-banner__title {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: clamp(24px, 4vw, 40px);
  line-height: 1.2;
  color: #fff;
}

.about-banner__subtitle {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 6vw, 60px);
  line-height: 1.2;
  color: #fff;
}

.about-main {
  margin-top: clamp(24px, 5vw, 100px);
  padding: 0 var(--pad);
}

.about-container {
  max-width: 1609px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 60px);
  align-items: end;
  min-height: 0;
}

@media (min-width: 1025px) {
  .about-container {
    min-height: 780px;
  }
}

.about-left {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.about-left__media {
  width: 100%;
  max-width: 733px;
  aspect-ratio: 733 / 780;
  overflow: hidden;
  border-radius: clamp(8px, 0.5vw, 12px);
  background: transparent;
}

.about-left__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(20px, 3vw, 30px);
  min-width: 0;
}

.about-right__box {
  width: 100%;
  max-width: 804px;
  min-height: 0;
  padding: 0;
}

.about-right__label-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.about-right__line {
  width: 71px;
  height: 3px;
  background: #006ABC;
  flex-shrink: 0;
}

.about-right__label {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: clamp(20px, 2.5vw, 32px);
  line-height: 1.3;
  color: #006ABC;
}

.about-right__title {
  margin: 0 0 20px 0;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: clamp(28px, 4.5vw, 56px);
  line-height: 1.25;
  color: #15181B;
}

.about-right__text {
  margin: 0 0 28px 0;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: clamp(16px, 2.2vw, 27px);
  line-height: 1.55;
  color: #6A6A6A;
}

.about-right__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 30px;
}

.about-right__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: clamp(16px, 1.8vw, 23px);
  line-height: 1.4;
  color: #15181B;
}

.about-right__item span:last-child {
  flex: 1;
  min-width: 0;
}

.about-right__tick {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  min-width: 22px;
  min-height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  color: #fff;
  background: #006ABC;
  border-radius: 50%;
}

.about-right__btn-wrap {
  display: flex;
  align-items: center;
  gap: 4px;
}

.about-right__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 348px;
  min-height: 56px;
  height: 76px;
  padding: 0 24px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: clamp(16px, 2vw, 23px);
  color: #fff;
  background: #00467C;
  border: none;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: none;
  transition: background 0.2s;
}

.about-right__btn:hover {
  background: #003a66;
}

.about-right__btn-circle {
  width: clamp(56px, 12vw, 76px);
  height: clamp(56px, 12vw, 76px);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #00467C;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: none;
  transition: background 0.2s, transform 0.2s;
}

.about-right__btn-circle img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.about-right__btn-circle:hover {
  background: #003a66;
  transform: scale(1.02);
}

.about-section-2 {
  margin-top: -5%;
  margin-bottom: -5%;
  padding: clamp(6px, 0.8vw, 12px) var(--pad) clamp(8px, 1vw, 16px);
}

@media (max-width: 1024px) {
  .about-section-2 {
    margin-top: 4%;
    margin-bottom: 5%;
    padding: clamp(20px, 4vw, 40px) var(--pad) clamp(24px, 4.5vw, 48px);
  }
}

.about-section-2__wrap {
  max-width: 1609px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 90px);
  align-items: end;
}

@media (min-width: 769px) {
  .about-section-2__wrap {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1400px) {
  .about-section-2__wrap {
    grid-template-columns: 1fr 756px;
  }
}

.about-section-2__title {
  margin: 0 0 24px 0;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: clamp(28px, 5vw, 56px);
  line-height: 1.25;
  color: #15181B;
}

.about-section-2__text {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: clamp(16px, 2.2vw, 27px);
  line-height: 1.5;
  letter-spacing: 0;
  color: #6A6A6A;
}

@media (min-width: 1025px) {
  .about-section-2__text {
    line-height: 28px;
  }
}

.about-section-2__text p {
  margin: 0 0 1em 0;
}

.about-section-2__text p:last-child {
  margin-bottom: 0;
}

.about-section-2__right {
  overflow: hidden;
  border-radius: clamp(8px, 0.5vw, 12px);
  background: transparent;
  min-width: 0;
}

.about-section-2__img {
  width: 100%;
  height: auto;
  aspect-ratio: 756 / 635;
  max-width: 756px;
  object-fit: cover;
  display: block;
}

@media (min-width: 1000px) and (max-width: 1280px) {
  .about-container {
    align-items: center;
  }
  .about-section-2__wrap {
    align-items: center;
  }
  .about-section-2 {
    margin-top: -16%;
    margin-bottom: -16%;
    padding: clamp(4px, 0.5vw, 8px) var(--pad) clamp(6px, 0.6vw, 10px);
  }
}

@media (max-width: 1200px) and (min-width: 901px) {
  .about-container {
    gap: 40px;
    padding: 0 var(--pad);
  }

  .about-right__box {
    max-width: 100%;
  }

  .about-right__btn-wrap {
    flex-wrap: nowrap;
  }

  .about-right__btn {
    flex: 1 1 auto;
    min-width: 0;
    max-width: none;
    padding: 0 16px;
    font-size: clamp(18px, 1.8vw, 23px);
  }
}

@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
    align-items: stretch;
    min-height: 0;
    gap: clamp(20px, 4vw, 40px);
    padding-left: clamp(16px, 3vw, 28px);
    padding-right: clamp(16px, 3vw, 28px);
  }

  .about-left {
    order: 1;
  }

  .about-left__media {
    max-width: 100%;
  }

  .about-right {
    order: 2;
    align-items: stretch;
  }

  .about-right__box {
    max-width: 100%;
  }

  .about-right__list {
    grid-template-columns: 1fr;
  }

  .about-right__btn-wrap {
    flex-wrap: nowrap;
    width: auto;
    max-width: 100%;
    justify-content: flex-start;
  }

  .about-right__btn {
    flex: 0 0 auto;
    min-width: 0;
    max-width: 278px;
    width: auto;
    height: 60px;
    min-height: 60px;
    padding: 0 20px;
    font-size: 18px;
  }

  .about-right__btn-circle {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
  }

  .about-right__btn-circle img {
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 768px) {
  .about-banner {
    min-height: 160px;
    aspect-ratio: 1920 / 404;
  }

  .about-banner__title {
    font-size: clamp(20px, 5vw, 32px);
  }

  .about-banner__subtitle {
    font-size: clamp(26px, 7vw, 44px);
  }

  .about-main {
    margin-top: clamp(16px, 4vw, 32px);
    padding: 0 var(--pad);
  }

  .about-container {
    padding-left: clamp(20px, 4vw, 32px);
    padding-right: clamp(20px, 4vw, 32px);
  }

  .about-section-2 {
    margin-top: 3%;
    margin-bottom: 4%;
    padding: clamp(18px, 4vw, 36px) var(--pad) clamp(20px, 4vw, 40px);
  }

  .about-section-2__wrap {
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: stretch;
  }

  .about-section-2__img {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .about-banner {
    min-height: 140px;
  }

  .about-container {
    padding-left: clamp(20px, 5vw, 32px);
    padding-right: clamp(20px, 5vw, 32px);
  }

  .about-right__label-row {
    flex-wrap: wrap;
    gap: 12px;
  }

  .about-right__title {
    font-size: clamp(22px, 6vw, 32px);
  }

  .about-right__text {
    font-size: clamp(15px, 4vw, 20px);
  }

  .about-right__item {
    font-size: clamp(14px, 4vw, 18px);
  }

  .about-right__btn {
    min-height: 52px;
    height: auto;
    padding: 12px 16px;
    font-size: 13px;
    white-space: normal;
    line-height: 1.25;
    text-align: center;
  }

  .about-right__btn-circle {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
  }

  .about-section-2__title {
    font-size: clamp(24px, 6vw, 36px);
  }

  .about-section-2__text {
    font-size: clamp(15px, 4vw, 20px);
  }
}
