@charset "UTF-8";
.displayResposive {
  display: none;
}
@media screen and (min-width: 1px) and (max-width: 576px) {
  .displayResposive.show-xs {
    display: block;
  }
}
@media screen and (min-width: 577px) and (max-width: 768px) {
  .displayResposive.show-sm {
    display: block;
  }
}
@media screen and (min-width: 769px) and (max-width: 992px) {
  .displayResposive.show-md {
    display: block;
  }
}
@media screen and (min-width: 993px) and (max-width: 1200px) {
  .displayResposive.show-lg {
    display: block;
  }
}
@media screen and (min-width: 1201px) and (max-width: 1400px) {
  .displayResposive.show-xl {
    display: block;
  }
}
@media screen and (min-width: 1401px) and (max-width: 1920px) {
  .displayResposive.show-xxl {
    display: block;
  }
}
@media screen and (min-width: 1921px) {
  .displayResposive.show-3xl {
    display: block;
  }
}

.select2-container.filterModalSelect.select2-container--open {
  z-index: 2505;
}
.select2-container.filterModalSelect .select2-dropdown {
  background: #FFFFFF;
  border: 1px solid #E2E6EC;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(6, 17, 41, 0.12);
  margin-top: 8px;
  transform-origin: top center;
  animation: filterSelectIn 0.2s ease forwards;
}
.select2-container.filterModalSelect .select2-dropdown .select2-search--dropdown {
  display: none;
}
.select2-container.filterModalSelect .select2-dropdown .select2-results > .select2-results__options {
  max-height: 280px;
  overflow-y: auto;
  padding: 6px;
}
.select2-container.filterModalSelect .select2-dropdown .select2-results > .select2-results__options::-webkit-scrollbar {
  width: 5px;
}
.select2-container.filterModalSelect .select2-dropdown .select2-results > .select2-results__options::-webkit-scrollbar-track {
  background: transparent;
}
.select2-container.filterModalSelect .select2-dropdown .select2-results > .select2-results__options::-webkit-scrollbar-thumb {
  background: #DCE3EC;
  border-radius: 4px;
}
.select2-container.filterModalSelect .select2-dropdown .select2-results__option {
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 500;
  color: #061129;
  border-radius: 8px;
  transition: background 0.2s ease, color 0.2s ease;
  font-family: "Space Grotesk", sans-serif;
}
.select2-container.filterModalSelect .select2-dropdown .select2-results__option--highlighted {
  background: #061129 !important;
  color: #FFFFFF !important;
}
.select2-container.filterModalSelect .select2-dropdown .select2-results__option--selected {
  background: #EEF1F5;
  color: #061129;
  font-weight: 600;
}
.select2-container.filterModalSelect .select2-dropdown .select2-results__option--highlighted.select2-results__option--selected {
  background: #061129 !important;
  color: #FFFFFF !important;
}
.select2-container.filterModalSelect.select2-container--open.select2-container--above .select2-dropdown {
  margin-top: 0;
  margin-bottom: 8px;
  transform-origin: bottom center;
}

.select2-container.heroFilterSelect {
  width: auto !important;
  min-width: 269px;
}
.select2-container.heroFilterSelect.select2-container--open {
  z-index: 20;
}
.select2-container.heroFilterSelect .select2-selection--single {
  height: 54px;
  background: transparent;
  border: 1px solid #FFFFFF;
  border-radius: 12px;
  display: flex;
  align-items: center;
  outline: none;
}
.select2-container.heroFilterSelect .select2-selection__rendered {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 500;
  padding: 0 44px 0 24px;
  line-height: 54px;
}
.select2-container.heroFilterSelect .select2-selection__arrow {
  height: 54px;
  width: 44px;
  right: 0;
  top: 0;
}
.select2-container.heroFilterSelect .select2-selection__arrow b {
  display: none;
}
.select2-container.heroFilterSelect .select2-selection__arrow:after {
  content: "";
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-image: url("../img/svg/arrowdown.svg");
  width: 13px;
  height: 12px;
  position: absolute;
  top: 50%;
  left: 50%;
  background: #FFFFFF;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}
.select2-container.heroFilterSelect.select2-container--open .select2-selection__arrow:after {
  transform: translate(-50%, -50%) rotate(-180deg);
}
.select2-container.heroFilterSelect .select2-dropdown {
  background: #0C1D3A;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  margin-top: 8px;
  transform-origin: top center;
  animation: filterSelectIn 0.2s ease forwards;
}
.select2-container.heroFilterSelect .select2-dropdown .select2-search--dropdown {
  display: none;
}
.select2-container.heroFilterSelect .select2-dropdown .select2-results > .select2-results__options {
  max-height: 260px;
  overflow-y: auto;
  padding: 8px;
}
.select2-container.heroFilterSelect .select2-dropdown .select2-results > .select2-results__options::-webkit-scrollbar {
  width: 4px;
}
.select2-container.heroFilterSelect .select2-dropdown .select2-results > .select2-results__options::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.25);
  border-radius: 4px;
}
.select2-container.heroFilterSelect .select2-dropdown .select2-results__option {
  padding: 14px 20px;
  font-size: 16px;
  font-weight: 500;
  color: #FFFFFF;
  border-radius: 8px;
  transition: background 0.2s ease, color 0.2s ease;
}
.select2-container.heroFilterSelect .select2-dropdown .select2-results__option--highlighted {
  background: rgba(255, 255, 255, 0.1) !important;
  color: #FFFFFF !important;
}
.select2-container.heroFilterSelect .select2-dropdown .select2-results__option--selected {
  background: rgba(254, 8, 79, 0.18);
  color: #FE084F;
  font-weight: 600;
}
.select2-container.heroFilterSelect .select2-dropdown .select2-results__option--highlighted.select2-results__option--selected {
  background: #FE084F !important;
  color: #FFFFFF !important;
}
.select2-container.heroFilterSelect.select2-container--open.select2-container--above .select2-dropdown {
  margin-top: 0;
  margin-bottom: 8px;
  transform-origin: bottom center;
}

.customSelect.heroFilterSelect:has(.select2-container) .selectArrow {
  display: none;
}

.customSelect.heroFilterSelect.is-open .select2-container.heroFilterSelect .select2-selection--single {
  border-color: rgba(254, 8, 79, 0.85);
}

html.debugMode:before {
  z-index: 10000;
  content: "";
  position: fixed;
  right: 5px;
  top: 5px;
  background: red;
  color: #fff;
  display: none;
  width: 35px;
  height: 35px;
  padding: 0;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
html.debugMode:after {
  z-index: 10000;
  content: "";
  position: fixed;
  right: 40px;
  top: 5px;
  background: blue;
  color: #fff;
  display: none;
  width: 35px;
  height: 35px;
  padding: 0;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

@media screen and (min-width: 1px) {
  html.debugMode:after {
    content: "xs";
    display: flex;
  }
}
@media screen and (min-width: 577px) {
  html.debugMode:after {
    content: "sm";
    display: flex;
  }
}
@media screen and (min-width: 769px) {
  html.debugMode:after {
    content: "md";
    display: flex;
  }
}
@media screen and (min-width: 993px) {
  html.debugMode:after {
    content: "lg";
    display: flex;
  }
}
@media screen and (min-width: 1201px) {
  html.debugMode:after {
    content: "xl";
    display: flex;
  }
}
@media screen and (min-width: 1401px) {
  html.debugMode:after {
    content: "xxl";
    display: flex;
  }
}
@media screen and (min-width: 1921px) {
  html.debugMode:after {
    content: "3xl";
    display: flex;
  }
}
@media screen and (min-width: 2561px) {
  html.debugMode:after {
    content: "4xl";
    display: flex;
  }
}
@media screen and (max-width: 2559px) {
  html.debugMode:before {
    content: "4xl";
    display: flex;
  }
}
@media screen and (max-width: 1919px) {
  html.debugMode:before {
    content: "3xl";
    display: flex;
  }
}
@media screen and (max-width: 1399px) {
  html.debugMode:before {
    content: "xxl";
    display: flex;
  }
}
@media screen and (max-width: 1199px) {
  html.debugMode:before {
    content: "xl";
    display: flex;
  }
}
@media screen and (max-width: 991px) {
  html.debugMode:before {
    content: "lg";
    display: flex;
  }
}
@media screen and (max-width: 767px) {
  html.debugMode:before {
    content: "md";
    display: flex;
  }
}
@media screen and (max-width: 575px) {
  html.debugMode:before {
    content: "sm";
    display: flex;
  }
}
@media screen and (max-width: -1px) {
  html.debugMode:before {
    content: "xs";
    display: flex;
  }
}
/* ============================================================
   DOCS CTA — responsive (reusable component)
   ============================================================ */
/* ---------- Large desktop (<1600px) ---------- */
@media screen and (max-width: 1599px) {
  .blogDocsCtaSection .docsCtaInner {
    padding: 56px 48px 0;
    gap: 32px 40px;
  }
  .blogDocsCtaSection .docsCtaLeft .docsCtaTitle {
    font-size: 30px;
    line-height: 38px;
  }
  .blogDocsCtaSection .docsCtaLeft .docsCtaDesc {
    font-size: 22px;
    line-height: 34px;
  }
}
/* ---------- Tablet landscape (>md, <=lg / 768–992px) ---------- */
@media screen and (min-width: 769px) and (max-width: 992px) {
  .blogDocsCtaSection .docsCtaInner {
    grid-template-columns: 1fr auto;
    align-items: center;
    /* Text spans full width, visual + button sit on the next row */
  }
  .blogDocsCtaSection .docsCtaInner .docsCtaLeft {
    grid-column: 1/-1;
  }
  .blogDocsCtaSection .docsCtaInner .docsCtaBtn {
    justify-self: end;
  }
}
/* ---------- Tablet portrait & down (<=md / 768px) ---------- */
@media screen and (max-width: 768px) {
  .blogDocsCtaSection .docsCtaInner {
    grid-template-columns: 1fr;
    padding-bottom: 20px;
    gap: 28px;
    text-align: left;
  }
  .blogDocsCtaSection .docsCtaInner .docsCtaLeft {
    grid-column: auto;
    padding-bottom: 0;
  }
  .blogDocsCtaSection .docsCtaVisual img {
    max-width: 420px;
  }
  .blogDocsCtaSection .docsCtaBtn {
    justify-self: start;
  }
}
/* ---------- Mobile (<sm / 576px) ---------- */
@media screen and (max-width: 575px) {
  .blogDocsCtaSection .docsCtaInner {
    padding: 28px 16px 20px;
    gap: 24px;
  }
  .blogDocsCtaSection .docsCtaLeft .docsCtaTitle {
    font-size: 24px;
    line-height: 30px;
  }
  .blogDocsCtaSection .docsCtaLeft .docsCtaDesc {
    font-size: 16px;
    line-height: 26px;
  }
  .blogDocsCtaSection .docsCtaVisual img {
    max-width: 320px;
  }
  .blogDocsCtaSection .docsCtaBtn {
    width: 100%;
    min-width: 0;
    justify-self: stretch;
    gap: 20px;
    justify-content: center;
  }
}
/* ============================================================
   BLOG CARD — responsive (reusable component)
   ============================================================ */
/* ---------- Large desktop (<1600px) ---------- */
@media screen and (max-width: 1599px) {
  .blogCard .blogCardLink {
    padding: 44px 44px 40px;
  }
}
/* ---------- Tablet landscape (<=lg / 992px) ---------- */
@media screen and (max-width: 992px) {
  .blogGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
/* ---------- Tablet portrait (<=md / 768px) ---------- */
@media screen and (max-width: 768px) {
  .blogCard .blogCardLink {
    padding: 36px 32px 32px;
  }
}
/* ---------- Mobile (<sm / 576px) ---------- */
@media screen and (max-width: 575px) {
  .blogGrid {
    grid-template-columns: 1fr;
  }
  .blogCard {
    min-height: auto;
  }
  .blogCard .blogCardLink {
    padding: 24px 16px;
  }
  .blogCard .blogCardTitle {
    font-size: 20px;
    line-height: 28px;
  }
  .blogCard .blogCardArrow {
    width: 48px;
    height: 48px;
  }
}
/* ============================================================
   BLOG DETAIL BANNER — responsive
   ============================================================ */
/* ---------- Large desktop (<1600px) ---------- */
@media screen and (max-width: 1599px) {
  .blogDetailBanner .bannerText {
    padding: 70px 60px 60px;
  }
  .blogDetailBanner .bannerHead .bannerTitle {
    font-size: 48px;
    line-height: 54px;
  }
}
/* ---------- Tablet landscape (<=lg / 992px) ---------- */
@media screen and (max-width: 992px) {
  .blogDetailBanner {
    min-height: 0;
  }
  .blogDetailBanner .bannerText {
    padding: 56px 48px;
  }
  .blogDetailBanner .bannerHead .bannerTitle {
    font-size: 40px;
    line-height: 46px;
  }
}
/* ---------- Tablet portrait (<=md / 768px) ---------- */
@media screen and (max-width: 768px) {
  .blogDetailBanner {
    grid-template-columns: 1fr;
  }
  .blogDetailBanner .bannerText {
    padding: 44px 32px;
    gap: 40px;
  }
  .blogDetailBanner .bannerHead .bannerTitle {
    font-size: 34px;
    line-height: 40px;
  }
  .blogDetailBanner .bannerImage {
    min-height: 280px;
  }
}
/* ---------- Mobile (<sm / 576px) ---------- */
@media screen and (max-width: 575px) {
  .blogDetailBanner .bannerText {
    padding: 28px 16px;
    gap: 28px;
  }
  .blogDetailBanner .bannerHead .bannerTitle {
    font-size: 28px;
    line-height: 34px;
  }
  .blogDetailBanner .bannerHead .bannerCategory {
    margin-top: 16px;
  }
  .blogDetailBanner .bannerMeta {
    flex-direction: column;
    gap: 6px;
  }
  .blogDetailBanner .bannerImage {
    min-height: 220px;
  }
}
@media screen and (max-width: 992px) {
  header .langArea .dropdown {
    left: auto;
    right: 0;
    bottom: auto;
    top: calc(100% + 8px);
    transform: none;
    width: auto;
    min-width: 100%;
    z-index: 110;
  }
  header .langArea:hover .dropdown {
    bottom: auto;
    top: calc(100% + 8px);
  }
  .megaMenu .megaMenu-inner {
    flex-direction: column;
    overflow-x: hidden;
    overflow-y: auto;
    padding: clamp(70px, 12vh, 100px) 24px 40px;
    gap: 0;
    box-sizing: border-box;
  }
  .megaMenu .megaMenu-left {
    display: none !important;
  }
  .megaMenu .megaMenuRight {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    max-width: 100%;
    box-sizing: border-box !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden !important;
    overflow-y: visible !important;
  }
  .megaMenu .megaMenuRight::after {
    display: none !important;
  }
  .megaMenu .megaMenuRight .inner {
    display: flex !important;
    flex-direction: column-reverse !important;
    width: 100% !important;
    max-width: 100%;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    gap: 36px !important;
    min-width: 0;
  }
  .megaMenu .megaMenuRight .megaMenuContact {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    width: 100% !important;
  }
  .megaMenu .megaMenuRight .menus {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    width: 100% !important;
  }
  .megaMenu .megaMenuRight .menus .megaMenuTitle {
    align-self: flex-start;
    margin-bottom: 24px;
  }
  .megaMenu .megaMenuRight .menus .megaNav {
    text-align: left !important;
    width: 100% !important;
    min-width: 0;
  }
  .megaMenu .megaMenuRight .menus .megaNav li {
    text-align: left !important;
    min-width: 0;
  }
  .megaMenu .megaMenuRight .menus .megaNav li a {
    display: inline-block !important;
    text-align: left !important;
    font-size: clamp(24px, 4vw, 34px);
    line-height: 1.2;
    word-break: break-word;
  }
  .megaMenu .megaMenuRight .menus .megaNav li a:hover {
    transform: translateX(6px);
  }
}
@media screen and (max-width: 575px) {
  body.menu-open header .logoArea img {
    filter: brightness(0) saturate(100%) !important;
  }
  header {
    padding: 12px 20px;
    border-radius: 12px;
    margin: 10px;
    width: calc(100% - 20px);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    box-sizing: border-box;
  }
  header .container {
    min-width: 0;
    gap: 8px;
  }
  header .logoArea img {
    max-width: 110px;
  }
  header .headerRightArea {
    gap: 8px;
    min-width: 0;
  }
  header .headerRightArea .headerBtn {
    display: none;
  }
  header .headerRightArea .langArea .current {
    padding: 9px 12px;
    font-size: 12px;
    line-height: 16px;
  }
  header .headerRightArea .openMenuBtn {
    width: 40px;
    height: 40px;
    gap: 4px;
  }
  header .headerRightArea .openMenuBtn span {
    width: 18px;
    height: 2px;
  }
  header .headerRightArea .openMenuBtn.active span:nth-child(1) {
    transform: translateY(3px) rotate(45deg);
  }
  header .headerRightArea .openMenuBtn.active span:nth-child(2) {
    transform: translateY(-3px) rotate(-45deg);
  }
  body.homePage header {
    position: fixed;
    top: 0;
    left: 0;
    right: auto;
    width: calc(100% - 20px);
    padding: 0 !important;
    margin: 10px;
  }
  body.homePage header .container {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 12px 20px;
    background: #061129;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    grid-template-columns: none;
    gap: 0;
  }
  body.homePage header .logoArea {
    background: transparent !important;
    padding-left: 0 !important;
    height: auto !important;
  }
  body.homePage header .logoArea img {
    filter: none !important;
    max-width: 110px !important;
  }
  body.homePage header .headerRightArea {
    height: auto !important;
    padding-right: 0 !important;
    padding-top: 0 !important;
    align-items: center !important;
    gap: 8px !important;
  }
  .megaMenu .megaMenu-inner {
    padding: 80px 20px 30px;
  }
  .megaMenu .megaMenuRight {
    padding-top: 0 !important;
    padding-bottom: 30px !important;
  }
  .megaMenu .megaMenuRight .megaMenuQuoteBtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background: #FF004D;
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    border-radius: 300px;
    margin-top: auto;
    width: fit-content;
    letter-spacing: 0.05em;
    text-decoration: none;
  }
  .megaMenu .megaMenuRight .inner {
    gap: 30px !important;
    margin-bottom: 30px;
  }
  .megaMenu .megaMenuRight .megaMenuContact {
    gap: 15px;
  }
  .megaMenu .megaMenuRight .megaMenuContact .megaContactItem .label {
    font-size: 11px;
    margin-bottom: 4px;
  }
  .megaMenu .megaMenuRight .megaMenuContact .megaContactItem p,
  .megaMenu .megaMenuRight .megaMenuContact .megaContactItem .phoneLink {
    font-size: 14px;
  }
  .megaMenu .megaMenuRight .megaMenuContact .megaContactItem .megaFooterLinks {
    gap: 10px 15px;
    margin-top: 15px;
  }
  .megaMenu .megaMenuRight .megaMenuContact .megaContactItem .megaFooterLinks a {
    font-size: 12px;
  }
  .megaMenu .megaMenuRight .menus .megaMenuTitle {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .megaMenu .megaMenuRight .menus .megaNav li {
    margin-bottom: 12px;
  }
  .megaMenu .megaMenuRight .menus .megaNav li a {
    font-size: 22px;
  }
}
@media screen and (min-width: 576px) and (max-width: 768px) {
  body.menu-open header .logoArea img {
    filter: brightness(0) saturate(100%) !important;
  }
  header {
    padding: 15px 25px;
    border-radius: 14px;
    box-sizing: border-box;
  }
  header .container {
    min-width: 0;
  }
  header .logoArea img {
    max-width: 130px;
  }
  header .headerRightArea .openMenuBtn {
    width: 48px;
    height: 48px;
  }
  body.homePage header {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    width: calc(100% - 20px);
    padding: 0 !important;
    margin: 0;
  }
  body.homePage header .container {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 15px 25px;
    background: #061129;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 14px;
    grid-template-columns: none;
    gap: 0;
  }
  body.homePage header .logoArea {
    background: transparent !important;
    padding-left: 0 !important;
    height: auto !important;
  }
  body.homePage header .logoArea img {
    filter: none !important;
    max-width: 130px !important;
  }
  body.homePage header .headerRightArea {
    height: auto !important;
    padding-right: 0 !important;
    padding-top: 0 !important;
    align-items: center !important;
  }
  .megaMenu .megaMenu-inner {
    padding: 40px 24px;
  }
}
@media screen and (min-width: 768px) and (max-width: 992px) {
  body.menu-open header .logoArea img {
    filter: brightness(0) saturate(100%) !important;
  }
  header {
    padding: 15px 30px;
    box-sizing: border-box;
  }
  header .container {
    min-width: 0;
  }
  body.homePage header {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    width: calc(100% - 20px);
    padding: 0 !important;
    margin: 0;
  }
  body.homePage header .container {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 15px 30px;
    background: #FFF;
    border-radius: 15px;
    grid-template-columns: none;
    gap: 0;
  }
  body.homePage header .logoArea {
    background: transparent !important;
    padding-left: 0 !important;
    height: auto !important;
  }
  body.homePage header .logoArea img {
    max-width: 140px !important;
  }
  body.homePage header .headerRightArea {
    height: auto !important;
    padding-right: 0 !important;
    padding-top: 0 !important;
    align-items: center !important;
  }
}
@media screen and (min-width: 993px) and (max-width: 1200px) {
  .megaMenu .megaMenu-left {
    max-width: 380px;
  }
  .megaMenu .megaMenuRight {
    padding-right: 30px;
    padding-top: 120px;
  }
  .megaMenu .megaMenuRight .menus .megaNav li a {
    font-size: 40px;
  }
}
@media screen and (min-width: 1201px) and (max-width: 1400px) {
  .megaMenu .megaMenu-left {
    max-width: 480px;
  }
  .megaMenu .megaMenuRight {
    padding-right: 50px;
    padding-top: 140px;
  }
  .megaMenu .megaMenuRight .menus .megaNav li a {
    font-size: 44px;
  }
}
/* ============================================================
   FOOTER & FOOTER TOP — RESPONSIVE
   ============================================================ */
/* ---------- Large desktop (<1600px) ---------- */
@media screen and (max-width: 1599px) {
  .footerTopSection {
    padding: 80px 0 280px;
  }
  .footerTopSection .footerTopContent {
    max-width: 720px;
  }
  .footerTopSection .footerTopContent .redIcon {
    margin-bottom: 50px;
  }
  .footerTopSection .footerTopContent h2 {
    font-size: 32px;
    line-height: 40px;
  }
  .footerTopSection .footerTopContent p {
    margin-bottom: 60px;
  }
  .footerTopSection .footerTopContent .actionButtons .actionBtn {
    gap: 32px;
    padding: 28px 24px 28px 36px;
  }
  .footerTopSection .footerTopContent .actionButtons .actionBtn span {
    font-size: 17px;
  }
  .footerTopSection .footerTopContent .actionButtons .actionBtn .btnArrow {
    width: 64px;
    height: 50px;
  }
  .footerTopSection .bottomPumpsImg {
    max-width: 82%;
  }
  .siteFooter .footerCol {
    padding: 120px 48px 48px;
  }
  .siteFooter .footerCol:not(:last-child) {
    padding-right: 36px;
  }
  .siteFooter .footerCol.footerColMiddle {
    padding-left: 48px;
  }
  .siteFooter .footerCol.footerColRight {
    padding-left: 36px;
    padding-right: 36px;
  }
  .siteFooter .footerColLeft .footerLogoArea {
    margin-bottom: 100px;
    gap: 36px;
  }
  .siteFooter .footerMiddleGrids {
    gap: 40px 48px;
  }
  .siteFooter .footerColRight .rightTopSeal {
    width: 180px;
    height: 180px;
    margin-right: 0;
  }
  .siteFooter .footerColRight .rightBottomArea {
    margin-top: 36px;
  }
  .siteFooter .footerColRight .rightBottomArea .redIcon {
    margin-bottom: 36px;
  }
  .siteFooter .footerColRight .rightBottomArea .rightTitle {
    font-size: 52px;
    line-height: 56px;
  }
  .footerBottom .footerBottomCard {
    padding: 22px 48px;
    min-height: 100px;
  }
}
/* ---------- Desktop narrow (lg–xxl / 993–1400px) ---------- */
@media screen and (min-width: 993px) and (max-width: 1400px) {
  .footerTopSection {
    padding: 72px 24px 240px;
  }
  .footerTopSection .footerTopContent .actionButtons {
    flex-wrap: wrap;
    max-width: 640px;
    margin: 0 auto;
  }
  .footerTopSection .footerTopContent .actionButtons .actionBtn {
    flex: 1 1 calc(50% - 5px);
    min-width: 240px;
    justify-content: space-between;
  }
  .siteFooter {
    flex-wrap: wrap;
  }
  .siteFooter .footerCol {
    flex: 1 1 100%;
    min-width: 0;
    border-right: none;
    justify-content: flex-start;
  }
  .siteFooter .footerColLeft {
    border-bottom: 1px solid #3F4346;
    padding: 80px 40px 48px;
    display: grid;
    grid-template-columns: minmax(240px, 380px) minmax(0, 1fr);
    column-gap: 48px;
    row-gap: 40px;
    align-items: start;
  }
  .siteFooter .footerColLeft .footerLogoArea {
    margin-bottom: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .siteFooter .footerColLeft .footerLogoArea .logoDesc {
    max-width: none;
  }
  .siteFooter .footerColLeft .footerContactInfo {
    margin-bottom: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 40px;
    align-content: start;
  }
  .siteFooter .footerColLeft .footerContactInfo .contactItem.socialLinksText {
    grid-column: 1/-1;
    margin-top: 0;
  }
  .siteFooter .footerColLeft .footerPolicies {
    grid-column: 1/-1;
  }
  .siteFooter .footerColMiddle {
    border-bottom: 1px solid #3F4346;
    padding: 48px 40px 52px;
    justify-content: flex-start;
  }
  .siteFooter .footerColRight {
    padding: 48px 40px 56px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 32px 48px;
  }
  .siteFooter .footerMiddleGrids {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 48px;
  }
  .siteFooter .footerMiddleGrids .footerMenuBox {
    display: flex;
    gap: 20px;
    min-width: 0;
  }
  .siteFooter .footerMiddleGrids .footerMenuBox:last-child {
    grid-column: 1 / -1;
  }
  .siteFooter .footerMiddleGrids .footerMenuBox .menu {
    min-width: 0;
  }
  .siteFooter .footerMiddleGrids .footerMenuBox ul li a {
    word-break: break-word;
  }
  .siteFooter .footerColRight .rightTopSeal {
    width: 160px;
    height: 160px;
    margin: 0;
    flex-shrink: 0;
    align-self: flex-start;
  }
  .siteFooter .footerColRight .rightBottomArea {
    margin-top: 0;
    flex: 1;
    min-width: 260px;
  }
  .siteFooter .footerColRight .rightBottomArea .redIcon {
    margin-bottom: 32px;
  }
  .siteFooter .footerColRight .rightBottomArea .rightTitle {
    font-size: 44px;
    line-height: 50px;
  }
}
/* ---------- Desktop narrow (lg–xl / 993–1200px) — menü 2 sütun ---------- */
@media screen and (min-width: 993px) and (max-width: 1200px) {
  .siteFooter .footerColLeft {
    grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
    column-gap: 32px;
  }
  .siteFooter .footerMiddleGrids {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 32px;
  }
  .siteFooter .footerMiddleGrids .footerMenuBox:last-child {
    grid-column: 1 / -1;
  }
  .siteFooter .footerColRight {
    flex-direction: column;
    gap: 24px;
  }
  .siteFooter .footerColRight .rightBottomArea .rightTitle {
    font-size: 38px;
    line-height: 44px;
  }
}
/* ---------- Desktop narrow (xl–xxl / 1200–1400px) — menü tam genişlik ---------- */
@media screen and (min-width: 1201px) and (max-width: 1400px) {
  .siteFooter .footerColLeft {
    grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
    column-gap: 64px;
  }
  .siteFooter .footerColLeft .footerContactInfo {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px 48px;
  }
  .siteFooter .footerColMiddle {
    flex: 1 1 100%;
    max-width: 100%;
    border-right: none;
    border-bottom: 1px solid #3F4346;
    padding: 48px 40px 52px;
  }
  .siteFooter .footerColMiddle .footerMiddleGrids {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 32px 48px;
  }
  .siteFooter .footerColMiddle .footerMiddleGrids .footerMenuBox {
    flex: none;
    min-width: 0;
    max-width: none;
  }
  .siteFooter .footerColMiddle .footerMiddleGrids .footerMenuBox:last-child {
    grid-column: 1 / -1;
  }
  .siteFooter .footerColRight {
    flex: 1 1 100%;
    max-width: 100%;
    flex-direction: row;
    align-items: flex-start;
    gap: 40px 64px;
    padding: 48px 40px 56px;
  }
  .siteFooter .footerColRight .rightTopSeal {
    width: 180px;
    height: 180px;
  }
  .siteFooter .footerColRight .rightBottomArea {
    flex: 1;
    min-width: 0;
    padding-top: 8px;
  }
  .siteFooter .footerColRight .rightBottomArea .rightTitle {
    font-size: 48px;
    line-height: 54px;
  }
}
/* ---------- Tablet landscape (<=lg / 992px) ---------- */
@media screen and (max-width: 992px) {
  .footerTopSection {
    padding: 64px 24px 220px;
  }
  .footerTopSection .footerTopContent h2 {
    font-size: 28px;
    line-height: 36px;
  }
  .footerTopSection .footerTopContent p {
    margin-bottom: 48px;
  }
  .footerTopSection .footerTopContent .actionButtons {
    flex-direction: column;
    width: 100%;
    max-width: 420px;
  }
  .footerTopSection .footerTopContent .actionButtons .actionBtn {
    width: 100%;
    justify-content: space-between;
    gap: 24px;
    padding: 24px 24px 24px 32px;
  }
  .footerTopSection .bottomPumpsImg {
    max-width: 88%;
  }
  .siteFooter {
    flex-direction: column;
  }
  .siteFooter .footerCol {
    flex: none;
    width: 100%;
    padding: 56px 40px;
    border-right: none;
    border-bottom: 1px solid #3F4346;
  }
  .siteFooter .footerCol:last-child {
    border-bottom: none;
  }
  .siteFooter .footerCol.footerColMiddle, .siteFooter .footerCol.footerColRight {
    padding: 56px 40px;
  }
  .siteFooter .footerColLeft {
    display: flex;
    flex-direction: column;
  }
  .siteFooter .footerColLeft .footerLogoArea {
    margin-bottom: 48px;
    gap: 28px;
    flex-direction: column;
    align-items: flex-start;
  }
  .siteFooter .footerColLeft .footerContactInfo {
    display: flex;
    flex-direction: column;
    margin-bottom: 36px;
    gap: 24px;
  }
  .siteFooter .footerColLeft .footerContactInfo .contactItem.socialLinksText {
    grid-column: auto;
  }
  .siteFooter .footerColLeft .footerPolicies {
    grid-column: auto;
  }
  .siteFooter .footerMiddleGrids {
    gap: 36px 40px;
  }
  .siteFooter .footerMiddleGrids .footerMenuBox {
    flex: 1 1 calc(50% - 20px);
    min-width: 220px;
  }
  .siteFooter .footerColRight .rightTopSeal {
    width: 170px;
    height: 170px;
    margin: 0 0 24px;
    align-self: flex-start;
  }
  .siteFooter .footerColRight .rightBottomArea {
    margin-top: 32px;
  }
  .siteFooter .footerColRight .rightBottomArea .rightTitle {
    font-size: 40px;
    line-height: 46px;
  }
  .footerBottom .footerBottomCard {
    padding: 20px 32px;
    min-height: 96px;
  }
}
/* ---------- Tablet portrait (<=md / 768px) ---------- */
@media screen and (max-width: 768px) {
  .footerTopSection {
    padding: 52px 20px 180px;
  }
  .footerTopSection .footerTopContent .redIcon {
    margin-bottom: 40px;
  }
  .footerTopSection .footerTopContent h2 {
    font-size: 26px;
    line-height: 34px;
  }
  .footerTopSection .footerTopContent p {
    font-size: 15px;
    line-height: 25px;
    margin-bottom: 36px;
  }
  .footerTopSection .footerTopContent .actionButtons .actionBtn {
    padding: 20px 20px 20px 28px;
  }
  .footerTopSection .footerTopContent .actionButtons .actionBtn span {
    font-size: 16px;
  }
  .footerTopSection .footerTopContent .actionButtons .actionBtn .btnArrow {
    width: 58px;
    height: 46px;
  }
  .footerTopSection .bottomPumpsImg {
    max-width: 92%;
  }
  .siteFooter .footerCol {
    padding: 48px 28px;
  }
  .siteFooter .footerCol.footerColMiddle, .siteFooter .footerCol.footerColRight {
    padding: 48px 28px;
  }
  .siteFooter .footerColLeft .footerLogoArea {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 40px;
  }
  .siteFooter .footerMiddleGrids {
    flex-direction: column;
    gap: 32px;
  }
  .siteFooter .footerMiddleGrids .footerMenuBox {
    flex: none;
    width: 100%;
    min-width: 0;
  }
  .siteFooter .footerColRight .rightTopSeal {
    width: 150px;
    height: 150px;
  }
  .siteFooter .footerColRight .rightBottomArea .rightTitle {
    font-size: 36px;
    line-height: 42px;
  }
  .footerBottom .footerBottomCard {
    padding: 20px 16px;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas: "nfpa" "copy" "stage";
    align-items: center;
    gap: 14px;
    text-align: center;
    min-height: auto;
  }
  .footerBottom .footerBottomCard .copyright {
    grid-area: copy;
    font-size: 12px;
    line-height: 1.5;
    text-wrap: balance;
  }
  .footerBottom .footerBottomCard .nfpaLogo {
    grid-area: nfpa;
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    justify-self: center;
  }
  .footerBottom .footerBottomCard .footerStageLogo {
    grid-area: stage;
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    justify-self: center;
    margin: 0;
    max-width: 84px;
  }
}
/* ---------- Mobile (<sm / 576px) ---------- */
@media screen and (max-width: 575px) {
  .footerTopSection {
    padding: 40px 16px 150px;
    border-radius: 12px;
  }
  .footerTopSection .footerTopContent .redIcon {
    margin-bottom: 32px;
  }
  .footerTopSection .footerTopContent h2 {
    font-size: 22px;
    line-height: 30px;
  }
  .footerTopSection .footerTopContent p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 28px;
  }
  .footerTopSection .footerTopContent .actionButtons {
    max-width: none;
  }
  .footerTopSection .footerTopContent .actionButtons .actionBtn {
    padding: 18px 16px 18px 20px;
    border-radius: 12px;
    gap: 16px;
  }
  .footerTopSection .footerTopContent .actionButtons .actionBtn span {
    font-size: 15px;
    line-height: 20px;
  }
  .footerTopSection .footerTopContent .actionButtons .actionBtn .btnArrow {
    width: 54px;
    height: 44px;
    border-radius: 10px;
  }
  .footerTopSection .footerTopContent .actionButtons .actionBtn .btnArrow img {
    width: 14px;
  }
  .footerTopSection .bottomPumpsImg {
    max-width: 100%;
  }
  .siteFooter {
    border-radius: 12px;
  }
  .siteFooter .footerCol {
    padding: 36px 16px;
  }
  .siteFooter .footerCol.footerColMiddle, .siteFooter .footerCol.footerColRight {
    padding: 36px 16px;
  }
  .siteFooter .footerColLeft .footerLogoArea {
    gap: 20px;
    margin-bottom: 32px;
  }
  .siteFooter .footerColLeft .footerLogoArea .footerLogo {
    height: 42px;
  }
  .siteFooter .footerColLeft .footerLogoArea .logoDesc {
    font-size: 15px;
    line-height: 22px;
    max-width: none;
  }
  .siteFooter .footerColLeft .footerContactInfo {
    gap: 20px;
    margin-bottom: 28px;
  }
  .siteFooter .footerColLeft .footerContactInfo .contactItem h6 {
    font-size: 13px;
    margin-bottom: 8px;
  }
  .siteFooter .footerColLeft .footerContactInfo .contactItem p {
    font-size: 15px;
    line-height: 22px;
  }
  .siteFooter .footerColLeft .footerContactInfo .contactItem.socialLinksText {
    margin-top: 8px;
    gap: 16px;
  }
  .siteFooter .footerColLeft .footerPolicies {
    gap: 10px 16px;
  }
  .siteFooter .footerColLeft .footerPolicies a {
    font-size: 13px;
    line-height: 18px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
  .siteFooter .footerMiddleGrids {
    gap: 28px;
  }
  .siteFooter .footerMiddleGrids .footerMenuBox {
    gap: 20px;
  }
  .siteFooter .footerMiddleGrids .footerMenuBox .dashIcon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
  }
  .siteFooter .footerMiddleGrids .footerMenuBox ul li a {
    font-size: 15px;
  }
  .siteFooter .footerColRight .rightTopSeal {
    width: 130px;
    height: 130px;
    margin-bottom: 20px;
  }
  .siteFooter .footerColRight .rightBottomArea {
    margin-top: 24px;
  }
  .siteFooter .footerColRight .rightBottomArea .redIcon {
    margin-bottom: 24px;
  }
  .siteFooter .footerColRight .rightBottomArea .rightTitle {
    font-size: 30px;
    line-height: 36px;
  }
  .footerBottom .footerBottomCard {
    padding: 16px 14px;
    border-radius: 12px;
    gap: 12px;
  }
  .footerBottom .footerBottomCard .copyright {
    font-size: 11px;
    line-height: 1.45;
  }
  .footerBottom .footerBottomCard .nfpaLogo {
    max-width: 40px;
  }
  .footerBottom .footerBottomCard .footerStageLogo {
    max-width: 72px;
  }
}
@media screen and (max-width: 575px) {
  .subpageHero {
    flex-direction: column;
    min-height: auto;
    border-radius: 12px;
    margin: 8px 0;
  }
  .subpageHero .heroLeft {
    padding: 82px 20px 26px;
  }
  .subpageHero .heroLeft .heroTitle {
    font-size: 32px;
    line-height: 38px;
    margin-bottom: 28px;
  }
  .subpageHero .heroLeft .scrollDownBtn {
    width: 44px;
    height: 42px;
    margin-bottom: 24px;
    border-radius: 10px;
  }
  .subpageHero .heroRight {
    max-width: 100%;
    min-height: 220px;
  }
  .subpageHero .heroRight .heroImg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .subpageHero .heroRight:after {
    width: 100%;
    height: 160px;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, #061129 0%, rgba(6, 17, 41, 0) 100%);
  }
  .subpageHero.categoryHero .heroLeft {
    padding: 82px 20px 30px;
  }
}
@media screen and (min-width: 576px) and (max-width: 768px) {
  .subpageHero {
    flex-direction: column;
    min-height: auto;
  }
  .subpageHero .heroLeft {
    padding: 96px 30px 36px;
  }
  .subpageHero .heroLeft .heroTitle {
    font-size: 44px;
    line-height: 50px;
    margin-bottom: 34px;
  }
  .subpageHero .heroLeft .scrollDownBtn {
    margin-bottom: 36px;
  }
  .subpageHero .heroRight {
    max-width: 100%;
    min-height: 340px;
  }
  .subpageHero .heroRight:after {
    width: 100%;
    height: 200px;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, #061129 0%, rgba(6, 17, 41, 0) 100%);
  }
  .subpageHero.categoryHero .heroLeft {
    padding: 96px 30px 36px;
  }
}
@media screen and (min-width: 768px) and (max-width: 992px) {
  .subpageHero {
    min-height: 460px;
  }
  .subpageHero .heroLeft {
    padding: 90px 44px 40px;
  }
  .subpageHero .heroLeft .heroTitle {
    font-size: 46px;
    line-height: 52px;
    margin-bottom: 46px;
  }
  .subpageHero .heroLeft .scrollDownBtn {
    margin-bottom: 44px;
  }
  .subpageHero .heroRight {
    max-width: 54%;
  }
  .subpageHero .heroRight:after {
    width: 380px;
  }
  .subpageHero.categoryHero .heroLeft {
    padding: 90px 44px 40px;
  }
}
@media screen and (min-width: 993px) and (max-width: 1200px) {
  .subpageHero {
    min-height: 500px;
  }
  .subpageHero .heroLeft {
    padding: 92px 52px 46px;
  }
  .subpageHero .heroLeft .heroTitle {
    font-size: 52px;
    line-height: 56px;
    margin-bottom: 60px;
  }
  .subpageHero .heroRight {
    max-width: 58%;
  }
  .subpageHero .heroRight:after {
    width: 520px;
  }
  .subpageHero.categoryHero .heroLeft {
    padding: 92px 52px 54px;
  }
}
@media screen and (min-width: 1201px) and (max-width: 1400px) {
  .subpageHero {
    min-height: 530px;
  }
  .subpageHero .heroLeft {
    padding: 96px 64px 54px;
  }
  .subpageHero .heroLeft .heroTitle {
    font-size: 56px;
    line-height: 60px;
    margin-bottom: 72px;
  }
  .subpageHero .heroRight {
    max-width: 60%;
  }
  .subpageHero .heroRight:after {
    width: 650px;
  }
  .subpageHero.categoryHero .heroLeft {
    padding: 96px 64px 60px;
  }
}
@media screen and (max-width: 992px) {
  .select2-container.filterModalSelect .select2-dropdown {
    margin-top: 6px;
    border-radius: 10px;
  }
  .select2-container.filterModalSelect .select2-dropdown .select2-results__option {
    font-size: 13px;
    padding: 10px 12px;
  }
  .select2-container.heroFilterSelect {
    min-width: 220px;
  }
  .select2-container.heroFilterSelect .select2-selection--single {
    height: 48px;
    border-radius: 10px;
  }
  .select2-container.heroFilterSelect .select2-selection__rendered {
    font-size: 14px;
    line-height: 48px;
    padding: 0 40px 0 18px;
  }
  .select2-container.heroFilterSelect .select2-selection__arrow {
    height: 48px;
  }
  .select2-container.heroFilterSelect .select2-dropdown .select2-results__option {
    font-size: 14px;
    padding: 12px 16px;
  }
}
@media screen and (max-width: 575px) {
  .select2-container.heroFilterSelect {
    min-width: 100%;
    width: 100% !important;
  }
  .select2-container.heroFilterSelect .select2-selection--single {
    height: 44px;
  }
  .select2-container.heroFilterSelect .select2-selection__rendered {
    font-size: 13px;
    line-height: 44px;
    padding: 0 36px 0 16px;
  }
  .select2-container.heroFilterSelect .select2-selection__arrow {
    height: 44px;
    width: 36px;
  }
}
@media screen and (max-width: 575px) {
  .heroBento {
    min-height: auto;
  }
  .heroBento .bentoGrid {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 8px;
  }
  .heroBento .bentoGrid.fullBgVariant .bentoLeft {
    padding-top: 80px;
    padding-left: 0;
    padding-bottom: 0;
  }
  .heroBento .bentoGrid.fullBgVariant .bentoRight {
    position: relative;
    height: 300px;
    margin-top: 8px;
  }
  .heroBento .bentoGrid .bentoLeft {
    padding-top: 10px;
    height: auto;
    gap: 8px;
  }
  .heroBento .bentoGrid .bentoLeft .bentoTitleBox {
    padding: 36px 20px;
  }
  .heroBento .bentoGrid .bentoLeft .bentoTitleBox h1 {
    font-size: 30px;
    line-height: 37px;
    margin-bottom: 24px;
  }
  .heroBento .bentoGrid .bentoLeft .bentoTitleBox .bentoActionBtn {
    padding: 8px 6px 8px 18px;
  }
  .heroBento .bentoGrid .bentoLeft .bentoTitleBox .bentoActionBtn span {
    font-size: 14px;
    margin-right: 12px;
  }
  .heroBento .bentoGrid .bentoLeft .bentoTitleBox .bentoActionBtn .btnImg {
    display: none;
  }
  .heroBento .bentoGrid .bentoLeft .bentoTitleBox .bentoActionBtn .btnArrow {
    width: 46px;
    height: 38px;
  }
  .heroBento .bentoGrid .bentoLeft .bentoDescBox {
    padding: 28px 20px;
  }
  .heroBento .bentoGrid .bentoLeft .bentoDescBox .descLabel {
    margin-bottom: 20px;
  }
  .heroBento .bentoGrid .bentoLeft .bentoDescBox p {
    font-size: 15px;
    line-height: 22px;
  }
  .heroBento .bentoGrid .bentoRight {
    height: 280px;
  }
  .heroBento .bentoGrid .bentoRight .cards {
    left: 12px;
    right: 12px;
    gap: 6px;
    z-index: 3;
    bottom: 110px;
  }
  .heroBento .bentoGrid .bentoRight .cards .card {
    flex: 1;
    min-width: 0;
    width: auto;
    max-width: 96px;
    padding: 10px 8px;
    gap: 10px;
    border-radius: 10px;
  }
  .heroBento .bentoGrid .bentoRight .cards .card .top {
    font-size: 28px;
    line-height: 1;
  }
  .heroBento .bentoGrid .bentoRight .cards .card .top span {
    font-size: 20px;
  }
  .heroBento .bentoGrid .bentoRight .cards .card .bottom {
    font-size: 9px;
    line-height: 1.25;
  }
  .heroBento .bentoGrid .bentoRight .cards .card .bottom:after {
    top: -16px;
    height: 10px;
    left: -8px;
    right: -8px;
  }
  .heroBento .bentoGrid .bentoRight .bentoExperience {
    width: 150px;
    padding: 10px;
  }
  .heroBento .bentoGrid .bentoRight .bentoExperience img {
    display: block;
    width: 100%;
    height: auto;
  }
  .heroBento .bentoGrid .bentoRight .bentoExperience .number {
    font-size: 48px;
  }
  .heroBento .bentoGrid .bentoRight .bentoExperience .text {
    width: 150px;
    height: 66px;
    font-size: 12px;
    padding: 5px 12px 12px;
    margin-top: -18px;
  }
  .heroBento .bentoGrid .bentoRight .bentoExperienceList {
    position: absolute;
    width: 110px;
    right: 12px;
    bottom: 12px;
    z-index: 4;
  }
  .quoteBanner {
    padding: 56px 0;
  }
  .quoteBanner .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .quoteBanner .quoteLeft {
    gap: 16px;
  }
  .quoteBanner .quoteLeft .badgeImg {
    width: 90px;
  }
  .quoteBanner .quoteRight p {
    font-size: 24px;
    line-height: 32px;
  }
  .quoteBanner.type2 .quoteRight p {
    font-size: 22px;
    line-height: 30px;
  }
  .homeSystems {
    margin-top: 60px;
  }
  .homeSystems .systemsTop {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 28px;
    padding: 0;
  }
  .homeSystems .systemsTop .systemsTopLeft {
    width: 100%;
  }
  .homeSystems .systemsTop .systemsTopLeft .subtitle {
    margin-bottom: 12px;
  }
  .homeSystems .systemsTop .systemsTopRight {
    margin-right: 0;
  }
  .homeSystems .systemsTop .systemsTopRight p {
    font-size: 18px;
    line-height: 26px;
  }
  .homeSystems .systemsMain {
    min-height: auto;
  }
  .homeSystems .systemsMain .systemsContent {
    padding: 36px 20px;
    flex-direction: column;
    gap: 28px;
  }
  .homeSystems .systemsMain .systemsContent .contentLeft h2 {
    font-size: 26px;
    line-height: 32px;
    margin-bottom: 16px;
  }
  .homeSystems .systemsMain .systemsContent .contentRight {
    margin-top: 0;
  }
  .homeSystems .systemsMain .systemsContent .contentRight .systemsList {
    width: 100%;
  }
  .homeSystems .systemsMain .systemsContent .contentRight .systemsList .systemItem {
    height: auto;
    padding: 18px 20px 26px;
  }
  .homeAboutGrid {
    margin-top: 30px;
    gap: 8px;
  }
  .homeAboutGrid .aboutRowTop {
    grid-template-columns: 1fr;
  }
  .homeAboutGrid .aboutRowTop .aboutTopLeft {
    min-height: 220px;
    padding: 28px 20px;
  }
  .homeAboutGrid .aboutRowTop .aboutTopRight {
    padding: 28px 20px;
  }
  .homeAboutGrid .aboutRowTop .aboutTopRight .redIcon {
    margin-bottom: 20px;
  }
  .homeAboutGrid .aboutRowTop .aboutTopRight .subtitle,
  .homeAboutGrid .aboutRowTop .aboutTopRight .descLabel {
    margin-bottom: 20px;
  }
  .homeAboutGrid .aboutRowTop .aboutTopRight p {
    font-size: 20px;
    line-height: 28px;
  }
  .homeAboutGrid .aboutRowBottom {
    grid-template-columns: 1fr;
  }
  .homeAboutGrid .aboutRowBottom .aboutBottomLeft {
    padding: 36px 20px;
    min-height: auto;
  }
  .homeAboutGrid .aboutRowBottom .aboutBottomLeft .redIcon {
    margin-bottom: 20px;
  }
  .homeAboutGrid .aboutRowBottom .aboutBottomLeft h2 {
    font-size: 26px;
    line-height: 34px;
  }
  .homeAboutGrid .aboutRowBottom .aboutBottomRight .aboutRightTop {
    grid-template-columns: 1fr;
  }
  .homeAboutGrid .aboutRowBottom .aboutBottomRight .aboutRightTop .factoryImgBox .infoBtn {
    padding: 14px;
  }
  .homeAboutGrid .aboutRowBottom .aboutBottomRight .aboutRightTop .factoryImgBox .infoBtn span {
    font-size: 13px;
  }
  .homeAboutGrid .aboutRowBottom .aboutBottomRight .aboutRightTop .factoryImgBox .infoBtn .plusIcon {
    width: 42px;
    height: 34px;
  }
  .homeAboutGrid .aboutRowBottom .aboutBottomRight .aboutRightTop .factoryDescBox {
    padding: 28px 20px;
  }
  .homeAboutGrid .aboutRowBottom .aboutBottomRight .aboutRightTop .factoryDescBox p {
    font-size: 15px;
    line-height: 22px;
  }
  .homeAboutGrid .aboutRowBottom .aboutBottomRight .aboutRightBottom.statsStrip {
    grid-template-columns: 1fr;
  }
  .homeAboutGrid .aboutRowBottom .aboutBottomRight .aboutRightBottom.statsStrip .statItem {
    padding: 28px 0;
    border-right: none;
    border-bottom: 2px solid #fff;
  }
  .homeAboutGrid .aboutRowBottom .aboutBottomRight .aboutRightBottom.statsStrip .statItem .bgNumber {
    font-size: 58px;
  }
  .homeDelivery {
    min-height: 480px;
  }
  .homeDelivery .deliveryTitle {
    top: 20px;
    left: 20px;
  }
  .homeDelivery .deliveryTitle h2 {
    font-size: 19px;
    line-height: 25px;
    margin-top: 16px;
  }
  .homeDelivery .deliveryDesc {
    bottom: 20px;
    left: 20px;
  }
  .homeDelivery .deliveryDesc p {
    font-size: 13px;
    line-height: 19px;
  }
  .homeDelivery .deliveryMap .mapBg {
    height: 480px;
  }
  .homeDelivery .deliveryMap .infoCard {
    width: calc(100% - 40px);
    left: 20px !important;
    padding: 25px;
    right: 20px !important;
    transform: none !important;
  }
  .homeDelivery .deliveryMap .infoCard.show {
    transform: none !important;
  }
  .homeDelivery .deliveryMap .infoCard .cardHeader {
    padding-bottom: 14px;
    margin-bottom: 14px;
  }
  .homeDelivery .deliveryMap .infoCard .cardHeader .cardTitle {
    font-size: 17px;
  }
  .homeDelivery .deliveryMap .infoCard .cardHeader .cardStep #currentStepNum {
    font-size: 22px;
  }
  .homeDelivery .deliveryMap .infoCard .cardBody .cardText {
    font-size: 13px;
    line-height: 19px;
  }
  .visionCardsSection {
    padding: 36px 0;
  }
  .visionCardsSection .sectionHeader {
    margin-bottom: 24px;
  }
  .visionCardsSection .sectionHeader h2 {
    font-size: 24px;
  }
  .visionCardsSection .visionGrid {
    grid-template-columns: 1fr;
  }
  .visionCardsSection .visionCard.leftCard .cardTop {
    height: 300px;
  }
  .visionCardsSection .visionCard.leftCard .cardTop .title {
    padding: 26px 20px;
    gap: 20px;
  }
  .visionCardsSection .visionCard.leftCard .cardTop .title h3 {
    font-size: 20px;
  }
  .visionCardsSection .visionCard.leftCard .cardTop .globeWrapper {
    overflow: hidden;
  }
  .visionCardsSection .visionCard.leftCard .cardTop .globeWrapper .hotspotsContainer .hotspot::after {
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
  }
  .visionCardsSection .visionCard.leftCard .cardTop .globeWrapper .hotspotsContainer .hotspot::before {
    top: -9px;
    left: -9px;
    right: -9px;
    bottom: -9px;
  }
  .visionCardsSection .visionCard.leftCard .cardTop .globeWrapper .hotspotsContainer .hotspotLabel {
    font-size: 10px;
    line-height: 1.2;
  }
  .visionCardsSection .visionCard.leftCard .cardBottom {
    padding: 26px 20px;
  }
  .visionCardsSection .visionCard.leftCard .cardBottom p {
    font-size: 15px;
    line-height: 22px;
  }
  .visionCardsSection .visionCard.rightCard {
    padding: 26px 20px 0;
    gap: 20px;
  }
  .visionCardsSection .visionCard.rightCard .cardTop {
    flex-direction: column;
    gap: 16px;
    padding-right: 0;
  }
  .visionCardsSection .visionCard.rightCard .cardTop .leftArea .topRow {
    margin-bottom: 20px;
  }
  .visionCardsSection .visionCard.rightCard .cardTop .leftArea .contentRow .texts h3 {
    font-size: 20px;
  }
  .visionCardsSection .visionCard.rightCard .cardTop .leftArea .contentRow .texts p {
    font-size: 15px;
    line-height: 22px;
  }
  .visionCardsSection .visionCard.rightCard .cardTop .rightImg {
    max-width: 100px;
  }
  .visionCardsSection .visionCard.rightCard .cardImageWrapper {
    flex-direction: column-reverse;
    align-items: stretch;
    gap: 16px;
  }
  .visionCardsSection .visionCard.rightCard .cardImageWrapper .certBtn {
    margin-bottom: 16px;
    padding: 18px;
    justify-content: space-between;
  }
  .visionCardsSection .visionCard.rightCard .cardImageWrapper .certBtn span {
    font-size: 14px;
  }
  .visionCardsSection .visionCard.rightCard .cardImageWrapper .certBtn .arrowIcon {
    width: 46px;
    height: 38px;
  }
  .industrialSolutionsSection {
    padding: 36px 0 0;
  }
  .industrialSolutionsSection .flexContainer {
    flex-direction: column;
    gap: 24px;
  }
  .industrialSolutionsSection .sectionHeader {
    max-width: 100%;
    margin-bottom: 24px;
  }
  .industrialSolutionsSection .sectionHeader .redIcon {
    margin-bottom: 20px;
  }
  .industrialSolutionsSection .sectionHeader h2 {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .industrialSolutionsSection .sectionHeader .leftSide .infoBox p {
    padding: 20px;
    font-size: 15px;
  }
  .industrialSolutionsSection .sectionHeader .leftSide .infoBox .showProductsBtn {
    padding: 14px 18px;
    font-size: 15px;
  }
  .industrialSolutionsSection .sectionHeader .leftSide .infoBox .showProductsBtn .btnIcon {
    width: 46px;
    height: 38px;
  }
  .industrialSolutionsSection .solutionsLayout {
    flex-direction: column;
    min-height: auto;
  }
  .industrialSolutionsSection .solutionsLayout .rightSide {
    margin-top: 0;
    padding-right: 0;
  }
  .industrialSolutionsSection .solutionsLayout .rightSide .cardsGrid {
    grid-template-columns: 1fr;
  }
  .industrialSolutionsSection .solutionsLayout .rightSide .cardsGrid .emptyCard {
    display: none;
  }
  .industrialSolutionsSection .solutionsLayout .rightSide .cardsGrid .glassCard {
    height: auto;
    padding: 26px 18px;
    background: #F0F3F7;
    border-color: #DCE3EC;
    min-height: 150px;
  }
  .industrialSolutionsSection .solutionsLayout .rightSide .cardsGrid .glassCard h4 {
    color: #00001B;
  }
  .industrialSolutionsSection .solutionsLayout .rightSide .cardsGrid .glassCard .cardNumber {
    color: #00001B;
  }
  .industrialSolutionsSection .solutionsLayout .rightSide .cardsGrid .glassCard.active {
    background: #061129;
  }
  .industrialSolutionsSection .solutionsLayout .rightSide .cardsGrid .glassCard.active h4 {
    color: #FF004D;
  }
  .industrialSolutionsSection .solutionsLayout .rightSide .cardsGrid .glassCard.active .cardNumber {
    color: #FF004D;
  }
  .industrialSolutionsSection .bottomDesc {
    font-size: 14px;
    line-height: 21px;
    padding: 36px 0;
  }
  .partnersSection {
    padding: 52px 0;
  }
  .partnersSection .partnersHeader {
    margin-bottom: 32px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .partnersSection .partnersHeader h2 {
    font-size: 20px;
  }
  .partnersSection .partnersGrid {
    grid-template-columns: repeat(2, 1fr);
  }
  .partnersSection .partnersGrid .partnerCard {
    height: 110px;
    padding: 14px;
  }
  .partnersSection .partnersFooter {
    margin-top: 32px;
  }
  .partnersSection .partnersFooter p {
    font-size: 13px;
    line-height: 20px;
  }
}
@media screen and (min-width: 576px) and (max-width: 768px) {
  .heroBento {
    min-height: auto;
  }
  .heroBento .bentoGrid {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .heroBento .bentoGrid.fullBgVariant .bentoLeft {
    padding-top: 100px;
  }
  .heroBento .bentoGrid.fullBgVariant .bentoRight {
    position: relative;
    height: 400px;
    margin-top: 10px;
  }
  .heroBento .bentoGrid .bentoLeft {
    padding-top: 100px;
    height: auto;
  }
  .heroBento .bentoGrid .bentoLeft .bentoTitleBox {
    padding: 60px 40px;
  }
  .heroBento .bentoGrid .bentoLeft .bentoTitleBox h1 {
    font-size: 44px;
    line-height: 50px;
  }
  .heroBento .bentoGrid .bentoLeft .bentoDescBox {
    padding: 40px;
  }
  .heroBento .bentoGrid .bentoRight {
    height: 400px;
  }
  .heroBento .bentoGrid .bentoRight .cards {
    left: 16px;
    right: auto;
    bottom: 18px;
    gap: 8px;
    z-index: 3;
    max-width: calc(100% - 150px);
  }
  .heroBento .bentoGrid .bentoRight .cards .card {
    width: 112px;
    padding: 12px 10px;
    gap: 14px;
  }
  .heroBento .bentoGrid .bentoRight .cards .card .top {
    font-size: 36px;
    line-height: 1;
  }
  .heroBento .bentoGrid .bentoRight .cards .card .top span {
    font-size: 26px;
  }
  .heroBento .bentoGrid .bentoRight .cards .card .bottom {
    font-size: 10px;
    line-height: 1.3;
  }
  .heroBento .bentoGrid .bentoRight .cards .card .bottom:after {
    top: -20px;
    height: 12px;
    left: -10px;
    right: -10px;
  }
  .heroBento .bentoGrid .bentoRight .bentoExperience,
  .heroBento .bentoGrid .bentoRight .bentoExperienceList {
    width: 170px;
  }
  .quoteBanner {
    padding: 80px 0;
  }
  .quoteBanner .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
  .quoteBanner .quoteRight p {
    font-size: 36px;
    line-height: 46px;
  }
  .homeSystems {
    margin-top: 100px;
  }
  .homeSystems .systemsTop {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
  }
  .homeSystems .systemsTop .systemsTopLeft {
    width: 100%;
  }
  .homeSystems .systemsTop .systemsTopRight {
    margin-right: 0;
  }
  .homeSystems .systemsTop .systemsTopRight p {
    font-size: 24px;
    line-height: 34px;
  }
  .homeSystems .systemsMain .systemsContent {
    padding: 60px 40px;
    flex-direction: column;
    gap: 40px;
  }
  .homeSystems .systemsMain .systemsContent .contentLeft h2 {
    font-size: 40px;
    line-height: 46px;
  }
  .homeSystems .systemsMain .systemsContent .contentRight {
    margin-top: 0;
  }
  .homeSystems .systemsMain .systemsContent .contentRight .systemsList {
    width: 100%;
  }
  .homeAboutGrid .aboutRowTop {
    grid-template-columns: 1fr;
  }
  .homeAboutGrid .aboutRowTop .aboutTopRight {
    padding: 50px;
  }
  .homeAboutGrid .aboutRowTop .aboutTopRight p {
    font-size: 28px;
    line-height: 38px;
  }
  .homeAboutGrid .aboutRowBottom {
    grid-template-columns: 1fr;
  }
  .homeAboutGrid .aboutRowBottom .aboutBottomLeft {
    min-height: auto;
    padding: 60px 50px;
  }
  .homeAboutGrid .aboutRowBottom .aboutBottomLeft h2 {
    font-size: 40px;
    line-height: 48px;
  }
  .homeAboutGrid .aboutRowBottom .aboutBottomRight .aboutRightTop {
    grid-template-columns: 1fr;
  }
  .homeAboutGrid .aboutRowBottom .aboutBottomRight .aboutRightBottom.statsStrip {
    grid-template-columns: repeat(2, 1fr);
  }
  .homeAboutGrid .aboutRowBottom .aboutBottomRight .aboutRightBottom.statsStrip .statItem {
    padding: 40px 0;
    border-bottom: 2px solid #fff;
  }
  .homeAboutGrid .aboutRowBottom .aboutBottomRight .aboutRightBottom.statsStrip .statItem:nth-child(2n) {
    border-right: none;
  }
  .homeDelivery {
    min-height: 650px;
  }
  .homeDelivery .deliveryTitle h2 {
    font-size: 28px;
  }
  .homeDelivery .deliveryMap .mapBg {
    height: 650px;
  }
  .homeDelivery .deliveryMap .infoCard {
    width: 380px;
  }
  .visionCardsSection .visionGrid {
    grid-template-columns: 1fr;
  }
  .visionCardsSection .visionCard.leftCard .cardTop {
    height: 400px;
  }
  .visionCardsSection .visionCard.leftCard .cardTop .title {
    padding: 40px;
  }
  .visionCardsSection .visionCard.leftCard .cardTop .title h3 {
    font-size: 28px;
  }
  .visionCardsSection .visionCard.leftCard .cardBottom {
    padding: 40px;
  }
  .visionCardsSection .visionCard.leftCard .cardBottom p {
    font-size: 18px;
  }
  .visionCardsSection .visionCard.rightCard {
    padding: 40px 40px 0;
  }
  .visionCardsSection .visionCard.rightCard .cardTop .leftArea .contentRow .texts h3 {
    font-size: 28px;
  }
  .visionCardsSection .visionCard.rightCard .cardTop .leftArea .contentRow .texts p {
    font-size: 18px;
  }
  .industrialSolutionsSection .flexContainer {
    flex-direction: column;
    gap: 50px;
  }
  .industrialSolutionsSection .sectionHeader {
    max-width: 100%;
  }
  .industrialSolutionsSection .sectionHeader .redIcon {
    margin-bottom: 24px;
  }
  .industrialSolutionsSection .sectionHeader h2 {
    font-size: 28px;
    margin-bottom: 40px;
  }
  .industrialSolutionsSection .solutionsLayout {
    flex-direction: column;
  }
  .industrialSolutionsSection .solutionsLayout .rightSide {
    margin-top: 0;
    padding-right: 0;
  }
  .industrialSolutionsSection .solutionsLayout .rightSide .cardsGrid {
    grid-template-columns: repeat(2, 1fr);
  }
  .industrialSolutionsSection .solutionsLayout .rightSide .cardsGrid .emptyCard {
    display: none;
  }
  .industrialSolutionsSection .solutionsLayout .rightSide .cardsGrid .glassCard {
    height: auto;
    padding: 26px 18px;
    background: #F0F3F7;
    border-color: #DCE3EC;
  }
  .industrialSolutionsSection .solutionsLayout .rightSide .cardsGrid .glassCard h4 {
    color: #00001B;
  }
  .industrialSolutionsSection .solutionsLayout .rightSide .cardsGrid .glassCard .cardNumber {
    color: #00001B;
  }
  .industrialSolutionsSection .solutionsLayout .rightSide .cardsGrid .glassCard.active {
    background: #061129;
  }
  .industrialSolutionsSection .solutionsLayout .rightSide .cardsGrid .glassCard.active h4 {
    color: #FF004D;
  }
  .industrialSolutionsSection .solutionsLayout .rightSide .cardsGrid .glassCard.active .cardNumber {
    color: #FF004D;
  }
  .partnersSection .partnersHeader h2 {
    font-size: 28px;
  }
  .partnersSection .partnersGrid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 768px) and (max-width: 992px) {
  .heroBento {
    min-height: auto;
  }
  .heroBento .bentoGrid {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .heroBento .bentoGrid.fullBgVariant .bentoLeft {
    padding-top: 110px;
  }
  .heroBento .bentoGrid.fullBgVariant .bentoRight {
    position: relative;
    height: 450px;
    margin-top: 10px;
  }
  .heroBento .bentoGrid .bentoLeft {
    padding-top: 110px;
    height: auto;
  }
  .heroBento .bentoGrid .bentoLeft .bentoTitleBox {
    padding: 60px;
  }
  .heroBento .bentoGrid .bentoLeft .bentoTitleBox h1 {
    font-size: 48px;
    line-height: 54px;
  }
  .heroBento .bentoGrid .bentoRight {
    height: 450px;
  }
  .heroBento .bentoGrid .bentoRight .cards {
    left: 20px;
    right: auto;
    bottom: 22px;
    gap: 8px;
    z-index: 3;
    max-width: calc(100% - 170px);
  }
  .heroBento .bentoGrid .bentoRight .cards .card {
    width: 122px;
    padding: 12px;
    gap: 16px;
  }
  .heroBento .bentoGrid .bentoRight .cards .card .top {
    font-size: 40px;
    line-height: 1;
  }
  .heroBento .bentoGrid .bentoRight .cards .card .top span {
    font-size: 28px;
  }
  .heroBento .bentoGrid .bentoRight .cards .card .bottom {
    font-size: 11px;
    line-height: 1.3;
  }
  .heroBento .bentoGrid .bentoRight .cards .card .bottom:after {
    top: -22px;
    height: 13px;
    left: -12px;
    right: -12px;
  }
  .heroBento .bentoGrid .bentoRight .bentoExperience,
  .heroBento .bentoGrid .bentoRight .bentoExperienceList {
    width: 190px;
  }
  .quoteBanner {
    padding: 100px 0;
  }
  .quoteBanner .quoteRight p {
    font-size: 40px;
    line-height: 52px;
  }
  .homeSystems {
    margin-top: 120px;
  }
  .homeSystems .systemsTop .systemsTopRight p {
    font-size: 28px;
    line-height: 38px;
  }
  .homeSystems .systemsMain .systemsContent {
    padding: 60px;
  }
  .homeSystems .systemsMain .systemsContent .contentLeft h2 {
    font-size: 48px;
    line-height: 54px;
  }
  .homeAboutGrid .aboutRowTop {
    grid-template-columns: 1fr;
  }
  .homeAboutGrid .aboutRowTop .aboutTopRight {
    padding: 60px;
  }
  .homeAboutGrid .aboutRowBottom {
    grid-template-columns: 1fr;
  }
  .homeAboutGrid .aboutRowBottom .aboutBottomLeft {
    min-height: auto;
    padding: 80px 60px;
  }
  .homeAboutGrid .aboutRowBottom .aboutBottomLeft h2 {
    font-size: 44px;
    line-height: 52px;
  }
  .homeAboutGrid .aboutRowBottom .aboutBottomRight .aboutRightBottom.statsStrip {
    grid-template-columns: repeat(2, 1fr);
  }
  .homeAboutGrid .aboutRowBottom .aboutBottomRight .aboutRightBottom.statsStrip .statItem {
    padding: 45px 0;
    border-bottom: 2px solid #fff;
  }
  .homeAboutGrid .aboutRowBottom .aboutBottomRight .aboutRightBottom.statsStrip .statItem:nth-child(2n) {
    border-right: none;
  }
  .homeDelivery {
    min-height: 750px;
  }
  .homeDelivery .deliveryMap .mapBg {
    height: 750px;
  }
  .visionCardsSection .visionGrid {
    grid-template-columns: 1fr;
  }
  .industrialSolutionsSection .flexContainer {
    flex-direction: column;
    gap: 60px;
  }
  .industrialSolutionsSection .sectionHeader .redIcon {
    margin-bottom: 24px;
  }
  .industrialSolutionsSection .solutionsLayout {
    flex-direction: column;
  }
  .industrialSolutionsSection .solutionsLayout .rightSide {
    margin-top: 0;
    padding-right: 0;
  }
  .industrialSolutionsSection .solutionsLayout .rightSide .cardsGrid {
    grid-template-columns: repeat(3, 1fr);
  }
  .industrialSolutionsSection .solutionsLayout .rightSide .cardsGrid .emptyCard {
    display: none;
  }
  .industrialSolutionsSection .solutionsLayout .rightSide .cardsGrid .glassCard {
    height: auto;
    padding: 26px 18px;
    background: #F0F3F7;
    border-color: #DCE3EC;
  }
  .industrialSolutionsSection .solutionsLayout .rightSide .cardsGrid .glassCard h4 {
    color: #00001B;
  }
  .industrialSolutionsSection .solutionsLayout .rightSide .cardsGrid .glassCard .cardNumber {
    color: #00001B;
  }
  .industrialSolutionsSection .solutionsLayout .rightSide .cardsGrid .glassCard.active {
    background: #061129;
  }
  .industrialSolutionsSection .solutionsLayout .rightSide .cardsGrid .glassCard.active h4 {
    color: #FF004D;
  }
  .industrialSolutionsSection .solutionsLayout .rightSide .cardsGrid .glassCard.active .cardNumber {
    color: #FF004D;
  }
  .partnersSection .partnersGrid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (min-width: 993px) and (max-width: 1200px) {
  .heroBento .bentoGrid .bentoLeft .bentoTitleBox {
    padding: 60px 40px;
  }
  .heroBento .bentoGrid .bentoLeft .bentoTitleBox h1 {
    font-size: 42px;
    line-height: 48px;
  }
  .heroBento .bentoGrid .bentoRight .cards {
    left: 28px;
    bottom: 120px;
    gap: 8px;
  }
  .heroBento .bentoGrid .bentoRight .cards .card {
    width: 118px;
    padding: 12px;
    gap: 16px;
  }
  .heroBento .bentoGrid .bentoRight .cards .card .top {
    font-size: 40px;
  }
  .heroBento .bentoGrid .bentoRight .cards .card .top span {
    font-size: 28px;
  }
  .heroBento .bentoGrid .bentoRight .cards .card .bottom {
    font-size: 11px;
  }
  .heroBento .bentoGrid .bentoRight .cards .card .bottom:after {
    top: -22px;
    height: 13px;
  }
  .quoteBanner .quoteRight p {
    font-size: 48px;
    line-height: 58px;
  }
  .homeSystems .systemsTop .systemsTopRight {
    margin-right: 0;
  }
  .homeSystems .systemsTop .systemsTopRight p {
    font-size: 28px;
    line-height: 38px;
  }
  .homeSystems .systemsMain .systemsContent {
    padding-right: 150px;
  }
  .homeSystems .systemsMain .systemsContent .contentLeft h2 {
    font-size: 48px;
    line-height: 54px;
  }
  .homeAboutGrid .aboutRowTop {
    grid-template-columns: 1fr 1fr;
  }
  .homeAboutGrid .aboutRowTop .aboutTopLeft {
    padding: 40px;
  }
  .homeAboutGrid .aboutRowTop .aboutTopRight {
    padding: 50px 40px;
  }
  .homeAboutGrid .aboutRowTop .aboutTopRight p {
    font-size: 28px;
    line-height: 38px;
  }
  .homeAboutGrid .aboutRowBottom {
    grid-template-columns: 38% 1fr;
  }
  .homeAboutGrid .aboutRowBottom .aboutBottomLeft {
    padding: 60px 40px;
  }
  .homeAboutGrid .aboutRowBottom .aboutBottomLeft h2 {
    font-size: 36px;
    line-height: 44px;
  }
  .homeAboutGrid .aboutRowBottom .aboutBottomRight .aboutRightTop .factoryImgBox .infoBtn {
    left: 15px;
  }
  .homeAboutGrid .aboutRowBottom .aboutBottomRight .aboutRightTop .factoryDescBox {
    padding: 30px 20px;
  }
  .homeAboutGrid .aboutRowBottom .aboutBottomRight .aboutRightTop .factoryDescBox p {
    font-size: 16px;
    line-height: 24px;
  }
  .homeAboutGrid .aboutRowBottom .aboutBottomRight .aboutRightBottom.statsStrip {
    grid-template-columns: repeat(2, 1fr);
  }
  .homeAboutGrid .aboutRowBottom .aboutBottomRight .aboutRightBottom.statsStrip .statItem {
    padding: 30px 40px;
    border-bottom: 2px solid #fff;
  }
  .homeAboutGrid .aboutRowBottom .aboutBottomRight .aboutRightBottom.statsStrip .statItem .bgNumber {
    font-size: 72px;
  }
  .homeAboutGrid .aboutRowBottom .aboutBottomRight .aboutRightBottom.statsStrip .statItem:nth-child(2n) {
    border-right: none;
  }
  .industrialSolutionsSection .solutionsLayout .rightSide {
    padding-right: 50px;
  }
  .partnersSection .partnersGrid {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media screen and (min-width: 1201px) and (max-width: 1400px) {
  .heroBento .bentoGrid .bentoLeft .bentoTitleBox h1 {
    font-size: 50px;
    line-height: 56px;
  }
  .heroBento .bentoGrid .bentoRight .cards {
    left: 40px;
    bottom: 160px;
  }
  .heroBento .bentoGrid .bentoRight .cards .card {
    width: 128px;
  }
  .quoteBanner .quoteRight p {
    font-size: 60px;
    line-height: 72px;
  }
  .industrialSolutionsSection .solutionsLayout .rightSide {
    padding-right: 100px;
  }
  .homeAboutGrid .aboutRowTop .aboutTopRight {
    padding: 60px 50px;
  }
  .homeAboutGrid .aboutRowTop .aboutTopRight p {
    font-size: 36px;
    line-height: 48px;
  }
  .homeAboutGrid .aboutRowBottom {
    grid-template-columns: 35% 1fr;
  }
  .homeAboutGrid .aboutRowBottom .aboutBottomLeft {
    padding: 80px 50px;
  }
  .homeAboutGrid .aboutRowBottom .aboutBottomLeft h2 {
    font-size: 44px;
    line-height: 52px;
  }
  .homeAboutGrid .aboutRowBottom .aboutBottomRight .aboutRightTop .factoryDescBox {
    padding: 40px 30px;
  }
  .homeAboutGrid .aboutRowBottom .aboutBottomRight .aboutRightTop .factoryDescBox p {
    font-size: 18px;
    line-height: 28px;
  }
  .homeAboutGrid .aboutRowBottom .aboutBottomRight .aboutRightBottom.statsStrip .statItem {
    padding: 30px 20px 30px 30px;
  }
  .homeAboutGrid .aboutRowBottom .aboutBottomRight .aboutRightBottom.statsStrip .statItem .bgNumber {
    font-size: 72px;
  }
}
@media screen and (min-width: 1401px) and (max-width: 1800px) {
  .heroBento .bentoGrid .bentoLeft .bentoTitleBox {
    padding: 30px 20px;
  }
  .heroBento .bentoGrid .bentoLeft .bentoTitleBox h1 {
    font-size: 50px !important;
    line-height: 56px !important;
    margin-bottom: 40px !important;
  }
  .heroBento .bentoGrid .bentoLeft .bentoDescBox {
    padding: 30px 20px !important;
  }
  .heroBento .bentoGrid .bentoLeft .bentoDescBox .descLabel {
    margin-bottom: 40px !important;
  }
  .homeSystems .systemsTop .systemsTopRight {
    margin-right: 40px !important;
    max-width: 800px !important;
  }
  .homeSystems .systemsTop .systemsTopRight p {
    font-size: 28px !important;
    line-height: 38px !important;
  }
  .homeSystems .systemsMain .systemsContent {
    padding: 80px 100px 120px 70px !important;
  }
  .homeAboutGrid .aboutRowBottom .aboutBottomRight .aboutRightBottom.statsStrip .statItem .bgNumber {
    font-size: 80px !important;
  }
  .industrialSolutionsSection {
    padding-bottom: 80px !important;
  }
  .industrialSolutionsSection .solutionsLayout .rightSide {
    padding-right: 80px !important;
    margin-top: 120px !important;
  }
  .industrialSolutionsSection .solutionsLayout .rightSide .cardsGrid .glassCard h4 {
    color: #00001B !important;
  }
  .industrialSolutionsSection .solutionsLayout .rightSide .cardsGrid .glassCard .cardNumber {
    color: #00001B !important;
  }
  .industrialSolutionsSection .solutionsLayout .rightSide .cardsGrid .glassCard.active h4 {
    color: #FF0033 !important;
  }
  .industrialSolutionsSection .solutionsLayout .rightSide .cardsGrid .glassCard.active .cardNumber {
    color: #FF0033 !important;
  }
}
@media screen and (max-width: 575px) {
  .corporateIntroSection {
    margin: 8px 0;
  }
  .corporateIntroSection .introCard {
    padding: 28px 16px;
    border-radius: 12px;
  }
  .corporateIntroSection .introCard .redIcon {
    margin-bottom: 20px;
  }
  .corporateIntroSection .introCard .introLeadText {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 28px;
  }
  .corporateIntroSection .introCard .introColumns {
    display: flex;
    flex-direction: column;
    gap: 22px;
  }
  .corporateIntroSection .introCard .introColumns:before {
    display: none;
  }
  .corporateIntroSection .introCard .introColumns .introLeftCol {
    padding-left: 0;
    gap: 16px;
    align-items: flex-start;
  }
  .corporateIntroSection .introCard .introColumns .introLeftCol .introParagraph {
    font-size: 15px;
    line-height: 24px;
  }
  .corporateIntroSection .introCard .introColumns .introRightCol .imgArea {
    aspect-ratio: 16/10;
  }
  .corporateVisionMissionSection {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 8px;
  }
  .corporateVisionMissionSection .visionMissionCard {
    min-height: auto;
    border-radius: 12px;
    padding: 28px 16px;
  }
  .corporateVisionMissionSection .visionMissionCard .redIcon {
    margin-bottom: 20px;
  }
  .corporateVisionMissionSection .visionMissionCard .cardTitle {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 20px;
  }
  .corporateVisionMissionSection .visionMissionCard .cardText {
    font-size: 15px;
    line-height: 24px;
  }
  .corporateValueChainSection {
    border-radius: 12px;
    padding: 34px 0 44px;
    margin-bottom: 8px;
  }
  .corporateValueChainSection .bgImageWrapper {
    top: 150px;
    opacity: 0.25;
  }
  .corporateValueChainSection .redIcon {
    margin-bottom: 20px;
  }
  .corporateValueChainSection .sectionTitle {
    font-size: 30px;
    line-height: 36px;
    margin-bottom: 20px;
  }
  .corporateValueChainSection .sectionTitle br {
    display: none;
  }
  .corporateValueChainSection .sectionTag {
    margin-bottom: 24px;
    font-size: 12px;
  }
  .corporateValueChainSection .valueChainSwiper .valueChainCard {
    border-radius: 12px;
    min-height: 240px;
    padding: 24px 18px;
  }
  .corporateValueChainSection .valueChainSwiper .valueChainCard .cardTitle {
    font-size: 18px;
    line-height: 24px;
  }
  .corporateValueChainSection .valueChainSwiper .valueChainCard .cardIcon {
    margin: 24px 0;
  }
  .corporateValueChainSection .valueChainSwiper .valueChainCard .cardDesc {
    font-size: 14px;
    line-height: 22px;
  }
  .corporateProductionSection {
    border-radius: 12px;
    padding: 34px 0 44px;
    margin-bottom: 8px;
  }
  .corporateProductionSection .productionIntro {
    margin-bottom: 40px;
  }
  .corporateProductionSection .productionIntro .introLead,
  .corporateProductionSection .productionIntro .introSub {
    font-size: 18px;
    line-height: 28px;
  }
  .corporateProductionSection .productionIntro .introLead {
    margin-bottom: 20px;
  }
  .corporateProductionSection .productionGallery {
    padding: 0;
    gap: 18px;
    flex-direction: column;
  }
  .corporateProductionSection .productionGallery:before {
    display: none;
  }
  .corporateProductionSection .productionGallery .galleryTag {
    width: 100%;
    font-size: 12px;
  }
  .corporateProductionSection .productionGallery .galleryImages {
    gap: 8px;
    display: grid;
    grid-template-columns: 1fr;
  }
  .corporateProductionSection .productionGallery .galleryImages .imgCol,
  .corporateProductionSection .productionGallery .galleryImages .imgCol.wideImg {
    aspect-ratio: 16/10;
  }
  .corporateQualitySection {
    margin-bottom: 8px;
  }
  .corporateQualitySection .qualityTopRow {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 8px;
  }
  .corporateQualitySection .qualityTopRow .numberCard {
    width: 100%;
    border-radius: 12px;
    padding: 24px 0;
  }
  .corporateQualitySection .qualityTopRow .numberCard .circleProgress {
    width: 120px;
    height: 120px;
  }
  .corporateQualitySection .qualityTopRow .numberCard .circleProgress .number {
    font-size: 24px;
  }
  .corporateQualitySection .qualityTopRow .textCard {
    border-radius: 12px;
    padding: 26px 16px;
  }
  .corporateQualitySection .qualityTopRow .textCard .cardLead {
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 18px;
  }
  .corporateQualitySection .qualityTopRow .textCard .cardSubTitle {
    font-size: 24px;
    line-height: 30px;
  }
  .corporateQualitySection .qualityBottomRow {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .corporateQualitySection .qualityBottomRow .futureCard {
    border-radius: 12px;
    padding: 26px 16px;
  }
  .corporateQualitySection .qualityBottomRow .futureCard .redIcon {
    margin-bottom: 18px;
  }
  .corporateQualitySection .qualityBottomRow .futureCard .cardText {
    font-size: 15px;
    line-height: 24px;
    margin: 0 0 22px;
  }
  .corporateQualitySection .qualityBottomRow .futureCard .cardTag {
    font-size: 12px;
  }
  .corporateQualitySection .qualityBottomRow .imageCard {
    border-radius: 12px;
    padding: 20px 16px 0;
  }
}
@media screen and (min-width: 576px) and (max-width: 768px) {
  .corporateIntroSection .introCard {
    padding: 42px 28px;
  }
  .corporateIntroSection .introCard .introLeadText {
    font-size: 26px;
    line-height: 36px;
    margin-bottom: 34px;
  }
  .corporateIntroSection .introCard .introColumns {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }
  .corporateIntroSection .introCard .introColumns:before {
    display: none;
  }
  .corporateIntroSection .introCard .introColumns .introLeftCol {
    padding-left: 0;
    align-items: flex-start;
  }
  .corporateIntroSection .introCard .introColumns .introLeftCol .introParagraph {
    font-size: 18px;
    line-height: 28px;
  }
  .corporateVisionMissionSection {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .corporateVisionMissionSection .visionMissionCard {
    min-height: auto;
    padding: 42px 28px;
  }
  .corporateVisionMissionSection .visionMissionCard .cardTitle {
    margin-bottom: 26px;
    font-size: 30px;
    line-height: 36px;
  }
  .corporateVisionMissionSection .visionMissionCard .cardText {
    font-size: 18px;
    line-height: 28px;
  }
  .corporateValueChainSection {
    padding: 54px 0 64px;
  }
  .corporateValueChainSection .bgImageWrapper {
    top: 120px;
    opacity: 0.3;
  }
  .corporateValueChainSection .sectionTitle {
    font-size: 42px;
    line-height: 46px;
    margin-bottom: 26px;
  }
  .corporateValueChainSection .sectionTitle br {
    display: none;
  }
  .corporateValueChainSection .sectionTag {
    margin-bottom: 34px;
  }
  .corporateValueChainSection .valueChainSwiper .valueChainCard {
    min-height: 270px;
    padding: 30px 24px;
  }
  .corporateProductionSection {
    padding: 64px 0 74px;
  }
  .corporateProductionSection .productionIntro {
    margin-bottom: 56px;
  }
  .corporateProductionSection .productionIntro .introLead,
  .corporateProductionSection .productionIntro .introSub {
    font-size: 26px;
    line-height: 38px;
  }
  .corporateProductionSection .productionGallery {
    display: flex;
    flex-direction: column;
    gap: 26px;
    padding: 0;
  }
  .corporateProductionSection .productionGallery:before {
    display: none;
  }
  .corporateProductionSection .productionGallery .galleryTag {
    width: 100%;
    font-size: 14px;
  }
  .corporateProductionSection .productionGallery .galleryImages {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .corporateProductionSection .productionGallery .galleryImages .imgCol.wideImg {
    grid-column: 1/-1;
    aspect-ratio: 16/9;
  }
  .corporateQualitySection .qualityTopRow {
    display: flex;
    flex-direction: column;
    margin-bottom: 8px;
  }
  .corporateQualitySection .qualityTopRow .numberCard {
    width: 100%;
    padding: 36px 0;
  }
  .corporateQualitySection .qualityTopRow .textCard {
    padding: 42px 28px;
  }
  .corporateQualitySection .qualityTopRow .textCard .cardLead {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 28px;
  }
  .corporateQualitySection .qualityTopRow .textCard .cardSubTitle {
    font-size: 30px;
  }
  .corporateQualitySection .qualityBottomRow {
    display: flex;
    flex-direction: column;
  }
  .corporateQualitySection .qualityBottomRow .futureCard {
    padding: 42px 28px;
  }
  .corporateQualitySection .qualityBottomRow .futureCard .cardText {
    font-size: 17px;
    line-height: 28px;
    margin: 30px 0;
  }
  .corporateQualitySection .qualityBottomRow .imageCard {
    padding: 28px 28px 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 992px) {
  .corporateIntroSection .introCard {
    padding: 56px 44px;
  }
  .corporateIntroSection .introCard .introLeadText {
    margin-bottom: 44px;
    font-size: 30px;
    line-height: 42px;
  }
  .corporateIntroSection .introCard .introColumns {
    display: flex;
    flex-direction: column;
    gap: 34px;
  }
  .corporateIntroSection .introCard .introColumns:before {
    display: none;
  }
  .corporateIntroSection .introCard .introColumns .introLeftCol {
    padding-left: 0;
    align-items: flex-start;
    gap: 24px;
  }
  .corporateIntroSection .introCard .introColumns .introLeftCol .introParagraph {
    max-width: 100%;
    font-size: 20px;
    line-height: 30px;
  }
  .corporateVisionMissionSection .visionMissionCard {
    min-height: auto;
    padding: 56px 44px;
  }
  .corporateVisionMissionSection .visionMissionCard .cardTitle {
    margin-bottom: 34px;
    font-size: 32px;
    line-height: 40px;
  }
  .corporateVisionMissionSection .visionMissionCard .cardText {
    font-size: 20px;
    line-height: 30px;
  }
  .corporateValueChainSection {
    padding: 70px 0 90px;
  }
  .corporateValueChainSection .sectionTitle {
    font-size: 44px;
    line-height: 48px;
    margin-bottom: 34px;
  }
  .corporateValueChainSection .sectionTag {
    margin-bottom: 42px;
  }
  .corporateValueChainSection .valueChainSwiper .valueChainCard {
    min-height: 300px;
    padding: 36px 30px;
  }
  .corporateProductionSection {
    padding: 90px 0 110px;
  }
  .corporateProductionSection .productionIntro {
    margin-bottom: 80px;
  }
  .corporateProductionSection .productionIntro .introLead,
  .corporateProductionSection .productionIntro .introSub {
    font-size: 30px;
    line-height: 42px;
  }
  .corporateProductionSection .productionGallery {
    gap: 34px;
    flex-direction: column;
    padding: 0;
  }
  .corporateProductionSection .productionGallery:before {
    display: none;
  }
  .corporateProductionSection .productionGallery .galleryImages {
    gap: 12px;
  }
  .corporateQualitySection .qualityTopRow .numberCard {
    width: 220px;
  }
  .corporateQualitySection .qualityTopRow .textCard {
    padding: 50px 44px;
  }
  .corporateQualitySection .qualityTopRow .textCard .cardLead {
    font-size: 20px;
    line-height: 30px;
  }
  .corporateQualitySection .qualityTopRow .textCard .cardSubTitle {
    font-size: 32px;
  }
  .corporateQualitySection .qualityBottomRow .futureCard {
    padding: 50px 44px;
  }
  .corporateQualitySection .qualityBottomRow .futureCard .cardText {
    margin: 36px 0;
    font-size: 18px;
    line-height: 28px;
  }
  .corporateQualitySection .qualityBottomRow .imageCard {
    padding: 30px 32px 0;
  }
}
@media screen and (min-width: 993px) and (max-width: 1200px) {
  .corporateIntroSection .introCard {
    padding: 62px 52px 90px;
  }
  .corporateIntroSection .introCard .introLeadText {
    font-size: 32px;
    line-height: 44px;
    margin-bottom: 70px;
  }
  .corporateIntroSection .introCard .introColumns {
    gap: 36px;
  }
  .corporateIntroSection .introCard .introColumns .introLeftCol {
    padding-left: 0;
    gap: 28px;
  }
  .corporateIntroSection .introCard .introColumns .introLeftCol .introParagraph {
    font-size: 20px;
    line-height: 30px;
  }
  .corporateVisionMissionSection .visionMissionCard {
    padding: 64px 52px;
    min-height: 440px;
  }
  .corporateVisionMissionSection .visionMissionCard .cardTitle {
    margin-bottom: 60px;
  }
  .corporateValueChainSection .sectionTitle {
    font-size: 44px;
    line-height: 48px;
  }
  .corporateValueChainSection .valueChainSwiper .valueChainCard {
    padding: 44px 32px 54px;
  }
  .corporateProductionSection .productionIntro {
    margin-bottom: 110px;
  }
  .corporateProductionSection .productionIntro .introLead,
  .corporateProductionSection .productionIntro .introSub {
    font-size: 30px;
    line-height: 42px;
  }
  .corporateProductionSection .productionGallery {
    gap: 46px;
    padding: 24px 0;
  }
  .corporateProductionSection .productionGallery .galleryImages {
    gap: 12px;
  }
  .corporateQualitySection .qualityTopRow .textCard {
    padding: 56px 52px;
  }
  .corporateQualitySection .qualityTopRow .textCard .cardLead {
    font-size: 22px;
    line-height: 32px;
  }
  .corporateQualitySection .qualityBottomRow .futureCard {
    padding: 56px 48px;
  }
  .corporateQualitySection .qualityBottomRow .imageCard {
    padding: 32px 38px 0;
  }
}
@media screen and (min-width: 1201px) and (max-width: 1400px) {
  .corporateIntroSection .introCard {
    padding: 70px 70px 120px;
  }
  .corporateIntroSection .introCard .introLeadText {
    margin-bottom: 90px;
  }
  .corporateIntroSection .introCard .introColumns {
    gap: 50px;
  }
  .corporateIntroSection .introCard .introColumns .introLeftCol {
    padding-left: 36px;
    gap: 36px;
  }
  .corporateVisionMissionSection .visionMissionCard {
    padding: 86px 60px;
  }
  .corporateValueChainSection {
    padding: 90px 0 140px;
  }
  .corporateValueChainSection .sectionTitle {
    font-size: 46px;
  }
  .corporateValueChainSection .valueChainSwiper .valueChainCard {
    min-height: 315px;
    padding: 56px 42px 70px;
  }
  .corporateProductionSection {
    padding: 110px 0 145px;
  }
  .corporateProductionSection .productionIntro {
    margin-bottom: 130px;
  }
  .corporateProductionSection .productionIntro .introLead,
  .corporateProductionSection .productionIntro .introSub {
    font-size: 32px;
    line-height: 46px;
  }
  .corporateProductionSection .productionGallery {
    gap: 64px;
  }
  .corporateProductionSection .productionGallery .galleryImages {
    gap: 14px;
  }
  .corporateQualitySection .qualityTopRow .numberCard {
    width: 280px;
  }
  .corporateQualitySection .qualityTopRow .textCard {
    padding: 62px 62px 68px 70px;
  }
  .corporateQualitySection .qualityBottomRow .futureCard {
    padding: 62px 58px;
  }
  .corporateQualitySection .qualityBottomRow .imageCard {
    padding: 36px 54px 0;
  }
}
@media screen and (max-width: 575px) {
  .customProductsBanner {
    width: 100%;
    margin: 8px 0 0;
    padding: 82px 16px 24px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  .customProductsBanner .bannerLeft {
    position: static;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .customProductsBanner .bannerLeft .left {
    order: 1;
  }
  .customProductsBanner .bannerLeft .right {
    order: 2;
    margin-top: 0;
  }
  .customProductsBanner .bannerLeft .bannerTitle {
    font-size: 30px;
    line-height: 36px;
    margin-bottom: 14px;
  }
  .customProductsBanner .bannerLeft .bannerSubtitle {
    font-size: 14px;
    line-height: 22px;
    margin: 0 0 18px;
  }
  .customProductsBanner .bannerLeft .scrollBtn {
    width: 44px;
    height: 42px;
    border-radius: 10px;
    margin: 0 0 18px;
  }
  .customProductsBanner .bannerLeft .bannerLabel {
    max-width: 100%;
    font-size: 12px;
    line-height: 18px;
  }
  .customProductsBanner .bannerRight {
    max-width: 100%;
    aspect-ratio: 16/10;
  }
  .productsContentSection .productsActiveFilters {
    padding: 18px 16px;
    border-radius: 12px;
    margin-bottom: 12px;
  }
  .productsContentSection .productsActiveFilters .filtersBody {
    flex-direction: column;
    align-items: stretch;
  }
  .productsContentSection .productsActiveFilters .filtersClearBtn {
    width: 100%;
    justify-content: center;
  }
  .productsContentSection .productsActiveFilters .filterChip {
    width: 100%;
    justify-content: space-between;
    min-height: 48px;
    padding: 10px 14px;
  }
  .productsContentSection .productsEmptyState .emptyCard {
    padding: 36px 20px;
    border-radius: 12px;
    gap: 24px;
  }
  .productsContentSection .productsEmptyState .emptyTitle {
    font-size: 24px;
    line-height: 30px;
  }
  .productsContentSection .productsEmptyState .emptyDesc {
    font-size: 15px;
    line-height: 24px;
  }
  .productsContentSection .productsEmptyState .emptyActions {
    flex-direction: column;
    width: 100%;
  }
  .productsContentSection .productsEmptyState .emptyBtn {
    width: 100%;
    min-height: 48px;
  }
  .productsContentSection .productsGrid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .productsContentSection .productGridCard {
    min-height: auto;
    padding: 24px 16px;
    border-radius: 12px;
  }
  .productsContentSection .productGridCard .cardImgBox {
    height: 200px;
  }
  .productsContentSection .productGridCard .cardInfo {
    margin-top: 22px;
  }
  .productsContentSection .productGridCard .cardInfo .cardName {
    font-size: 16px;
    line-height: 22px;
  }
  .productsCtaSection {
    padding: 8px 0;
  }
  .productsCtaSection .ctaGrid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .productsCtaSection .ctaCard {
    min-height: auto;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
  }
  .productsCtaSection .ctaCard .ctaTitle {
    font-size: 28px;
    line-height: 34px;
  }
  .productsCtaSection .ctaCard .ctaBtn {
    height: 44px;
    padding: 8px 14px;
    font-size: 13px;
    gap: 8px;
    border-radius: 24px;
  }
  .productsCtaSection .ctaCard.ctaLeft {
    padding: 30px 16px 18px;
    gap: 22px;
  }
  .productsCtaSection .ctaCard.ctaLeft .ctaTitle {
    margin: 20px 0 18px;
    font-size: 26px;
    line-height: 32px;
  }
  .productsCtaSection .ctaCard.ctaLeft .ctaImgBox {
    max-width: 260px;
    margin-left: auto;
  }
  .productsCtaSection .ctaCard.ctaRight {
    padding: 30px 16px 26px;
    overflow: hidden;
  }
  .productsCtaSection .ctaCard.ctaRight .ctaCardContent {
    max-width: 100%;
  }
  .productsCtaSection .ctaCard.ctaRight .ctaTitle {
    margin-bottom: 20px;
    font-size: 26px;
    line-height: 33px;
  }
  .productsCtaSection .ctaCard.ctaRight .ctaSubtext {
    margin-top: 16px;
    font-size: 14px;
    line-height: 22px;
  }
  .productsCtaSection .ctaCard.ctaRight .ctaImgBox {
    position: static;
    max-width: 220px;
    margin: 22px 0 0 auto;
  }
  .productsPage .categoryGridSection.type2 {
    margin-bottom: 8px;
  }
  .productsPage .categoryGridSection.type2 .categoryGrid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    align-items: stretch;
  }
  .productsPage .categoryGridSection.type2 .categoryCard {
    height: auto;
    min-height: 390px;
    border-radius: 12px;
    padding: 26px 16px 24px;
  }
  .productsPage .categoryGridSection.type2 .categoryCard .cardDesc {
    font-size: 14px;
    line-height: 22px;
  }
  .productsPage .categoryGridSection.type2 .categoryCard .cardMiddle {
    margin: 24px 0;
  }
  .productsPage .categoryGridSection.type2 .categoryCard .cardBottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .productsPage .categoryGridSection.type2 .categoryCard .cardBottom .cardTitle {
    font-size: 24px;
    line-height: 30px;
  }
  .productsPage .categoryGridSection.type2 .categoryCard .cardBottom .actionBtn {
    width: 100%;
    justify-content: space-between;
    padding: 10px 10px 10px 14px;
    border-radius: 10px;
  }
  .productsPage .categoryGridSection.type2 .categoryCard .cardBottom .actionBtn span {
    font-size: 14px;
  }
  .productsPage .categoryGridSection.type2 .categoryCard .cardBottom .actionBtn .arrowCircle {
    width: 44px;
    height: 36px;
    border-radius: 9px;
    margin-left: 10px;
  }
  .productsPage .categoryGridSection.type2 .categoryCard .cardImg {
    max-height: 52%;
    right: -18px;
  }
}
@media screen and (min-width: 576px) and (max-width: 768px) {
  .customProductsBanner {
    width: 100%;
    margin: 10px 0 0;
    padding: 96px 30px 34px;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .customProductsBanner .bannerLeft {
    position: static;
    display: flex;
    gap: 20px;
  }
  .customProductsBanner .bannerLeft .bannerTitle {
    font-size: 42px;
    line-height: 48px;
  }
  .customProductsBanner .bannerLeft .bannerSubtitle {
    font-size: 16px;
    line-height: 24px;
    max-width: 620px;
  }
  .customProductsBanner .bannerLeft .scrollBtn {
    margin: 22px 0;
  }
  .customProductsBanner .bannerLeft .bannerLabel {
    max-width: 100%;
  }
  .customProductsBanner .bannerRight {
    max-width: 100%;
    aspect-ratio: 16/8;
  }
  .productsContentSection .productsActiveFilters {
    padding: 18px 16px;
    border-radius: 12px;
    margin-bottom: 12px;
  }
  .productsContentSection .productsActiveFilters .filtersBody {
    flex-direction: column;
    align-items: stretch;
  }
  .productsContentSection .productsActiveFilters .filtersClearBtn {
    width: 100%;
    justify-content: center;
  }
  .productsContentSection .productsActiveFilters .filterChip {
    width: 100%;
    justify-content: space-between;
    min-height: 48px;
    padding: 10px 14px;
  }
  .productsContentSection .productsGrid {
    grid-template-columns: repeat(2, 1fr);
  }
  .productsContentSection .productGridCard {
    min-height: 340px;
    padding: 24px 20px;
  }
  .productsContentSection .productGridCard .cardImgBox {
    height: 180px;
  }
  .productsContentSection .productGridCard .cardInfo {
    margin-top: 24px;
  }
  .productsCtaSection .ctaGrid {
    grid-template-columns: 1fr;
  }
  .productsCtaSection .ctaCard {
    min-height: auto;
  }
  .productsCtaSection .ctaCard.ctaLeft {
    padding: 44px 30px 0;
    gap: 24px;
  }
  .productsCtaSection .ctaCard.ctaRight {
    padding: 40px 30px 40px;
  }
  .productsCtaSection .ctaCard.ctaRight .ctaCardContent {
    max-width: 100%;
  }
  .productsCtaSection .ctaCard.ctaRight .ctaSubtext {
    margin-top: 28px;
  }
  .productsCtaSection .ctaCard.ctaRight .ctaImgBox {
    position: static;
    max-width: 300px;
    margin: 26px 0 0 auto;
  }
  .productsPage .categoryGridSection.type2 .categoryGrid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    align-items: stretch;
  }
  .productsPage .categoryGridSection.type2 .categoryCard {
    min-height: 430px;
    padding: 40px 30px;
  }
  .productsPage .categoryGridSection.type2 .categoryCard .cardMiddle {
    margin: 34px 0;
  }
  .productsPage .categoryGridSection.type2 .categoryCard .cardBottom .cardTitle {
    font-size: 28px;
    line-height: 34px;
  }
}
@media screen and (min-width: 768px) and (max-width: 992px) {
  .customProductsBanner {
    width: calc(100% - 24px);
    padding: 105px 40px 56px;
    margin: 12px auto 0;
  }
  .customProductsBanner .bannerLeft {
    left: 40px;
    top: 78px;
    gap: 34px;
  }
  .customProductsBanner .bannerLeft .bannerTitle {
    font-size: 44px;
    line-height: 50px;
  }
  .customProductsBanner .bannerLeft .scrollBtn {
    margin: 34px 0;
  }
  .customProductsBanner .bannerRight {
    max-width: 68%;
    aspect-ratio: 16/9;
  }
  .productsContentSection .productsActiveFilters {
    padding: 18px 16px;
    border-radius: 12px;
    margin-bottom: 12px;
  }
  .productsContentSection .productsActiveFilters .filtersBody {
    flex-direction: column;
    align-items: stretch;
  }
  .productsContentSection .productsActiveFilters .filtersClearBtn {
    width: 100%;
    justify-content: center;
  }
  .productsContentSection .productsActiveFilters .filterChip {
    width: 100%;
    justify-content: space-between;
    min-height: 48px;
    padding: 10px 14px;
  }
  .productsContentSection .productsGrid {
    grid-template-columns: repeat(2, 1fr);
  }
  .productsContentSection .productGridCard {
    padding: 28px 24px;
    min-height: 360px;
  }
  .productsCtaSection .ctaCard {
    min-height: 460px;
  }
  .productsCtaSection .ctaCard .ctaTitle {
    font-size: 32px;
    line-height: 40px;
  }
  .productsCtaSection .ctaCard.ctaLeft {
    padding: 50px 35px 0;
  }
  .productsCtaSection .ctaCard.ctaLeft .ctaTitle {
    margin: 44px 0 24px;
  }
  .productsCtaSection .ctaCard.ctaRight {
    padding: 46px 34px 40px;
  }
  .productsCtaSection .ctaCard.ctaRight .ctaSubtext {
    margin-top: 28px;
    font-size: 16px;
    line-height: 24px;
  }
  .productsCtaSection .ctaCard.ctaRight .ctaImgBox {
    right: 20px;
    top: auto;
    bottom: 20px;
    max-width: 240px;
  }
  .productsPage .categoryGridSection.type2 .categoryGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    align-items: stretch;
  }
  .productsPage .categoryGridSection.type2 .categoryCard:nth-child(3) {
    grid-column: 1/-1;
  }
  .productsPage .categoryGridSection.type2 .categoryCard {
    min-height: 420px;
    padding: 54px 40px 44px;
  }
  .productsPage .categoryGridSection.type2 .categoryCard .cardBottom .cardTitle {
    font-size: 30px;
    line-height: 36px;
  }
}
@media screen and (min-width: 993px) and (max-width: 1200px) {
  .customProductsBanner {
    padding: 110px 56px 70px;
    width: calc(100% - 30px);
  }
  .customProductsBanner .bannerLeft {
    left: 56px;
    top: 85px;
    gap: 70px;
  }
  .customProductsBanner .bannerLeft .bannerTitle {
    font-size: 52px;
    line-height: 58px;
  }
  .customProductsBanner .bannerLeft .scrollBtn {
    margin: 70px 0;
  }
  .productsContentSection .productGridCard {
    padding: 30px 28px;
    min-height: 390px;
  }
  .productsContentSection .productGridCard .cardImgBox {
    height: 220px;
  }
  .productsCtaSection .ctaCard {
    min-height: 500px;
  }
  .productsCtaSection .ctaCard.ctaLeft {
    padding: 62px 46px 0;
    gap: 32px;
  }
  .productsCtaSection .ctaCard.ctaRight {
    padding: 52px 42px 52px;
  }
  .productsCtaSection .ctaCard.ctaRight .ctaImgBox {
    right: 24px;
    top: 52px;
    max-width: 290px;
  }
  .productsPage .categoryGridSection.type2 .categoryGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    align-items: stretch;
  }
  .productsPage .categoryGridSection.type2 .categoryCard:nth-child(3) {
    grid-column: 1/-1;
  }
  .productsPage .categoryGridSection.type2 .categoryCard {
    padding: 66px 46px 70px;
    min-height: 450px;
  }
  .productsPage .categoryGridSection.type2 .categoryCard .cardBottom .cardTitle {
    font-size: 28px;
    line-height: 34px;
  }
  .productsPage .categoryGridSection.type2 .categoryCard .cardBottom .actionBtn {
    padding: 12px 12px 12px 16px;
  }
  .productsPage .categoryGridSection.type2 .categoryCard .cardBottom .actionBtn .arrowCircle {
    width: 58px;
    height: 44px;
  }
}
@media screen and (min-width: 1201px) and (max-width: 1400px) {
  .customProductsBanner {
    width: calc(100% - 50px);
    padding: 120px 80px;
  }
  .customProductsBanner .bannerLeft {
    left: 80px;
    top: 92px;
    gap: 105px;
  }
  .customProductsBanner .bannerLeft .bannerTitle {
    font-size: 56px;
    line-height: 62px;
  }
  .customProductsBanner .bannerRight {
    max-width: 60%;
  }
  .productsContentSection .productGridCard {
    min-height: 400px;
    padding: 30px 34px;
  }
  .productsContentSection .productGridCard .cardImgBox {
    height: 240px;
  }
  .productsCtaSection .ctaCard.ctaLeft {
    padding: 78px 54px 0 60px;
  }
  .productsCtaSection .ctaCard.ctaRight {
    padding: 60px 46px 64px 60px;
  }
  .productsCtaSection .ctaCard.ctaRight .ctaImgBox {
    right: 34px;
    top: 62px;
    max-width: 360px;
  }
  .productsPage .categoryGridSection.type2 .categoryGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    align-items: stretch;
  }
  .productsPage .categoryGridSection.type2 .categoryCard:nth-child(3) {
    grid-column: auto;
  }
  .productsPage .categoryGridSection.type2 .categoryCard {
    padding: 82px 52px 92px;
    min-height: 500px;
  }
}
@media screen and (max-width: 575px) {
  .filterModalBackdrop {
    padding: 10px;
    overflow-y: auto;
    align-items: flex-start;
    -webkit-overflow-scrolling: touch;
  }
  .filterModalBackdrop .filterDropdown {
    width: 100%;
    max-width: 100%;
    border-radius: 12px;
    padding: 85px 14px 14px;
    max-height: calc(100vh - 20px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .filterModalBackdrop .dropdownClose {
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
  }
  .filterModalBackdrop .dropdownHeader {
    margin-bottom: 14px;
  }
  .filterModalBackdrop .dropdownHeader .dropdownTitle {
    font-size: 22px;
    line-height: 30px;
    margin: 0;
  }
  .filterModalBackdrop .dropdownSeparator {
    display: none;
  }
  .filterModalBackdrop .filterGrid {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 8px;
  }
  .filterModalBackdrop .filterGrid > * {
    min-width: 0;
  }
  .filterModalBackdrop .select2-container.filterModalSelect.select2-container--open {
    z-index: 2505;
  }
  .filterModalBackdrop .select2-container.filterModalSelect .select2-dropdown {
    margin-top: 6px;
    border-radius: 10px;
  }
  .filterModalBackdrop .select2-container.filterModalSelect .select2-results__option {
    font-size: 13px;
    padding: 10px 12px;
  }
  .filterModalBackdrop .filterField {
    height: 52px;
    border-radius: 10px;
    padding: 10px 10px 10px 16px;
  }
  .filterModalBackdrop .filterField .fieldLabel {
    font-size: 14px;
  }
  .filterModalBackdrop .filterField .fieldIcon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
  }
  .filterModalBackdrop .filterField.selectField {
    padding: 0;
    overflow: visible;
  }
  .filterModalBackdrop .filterField.selectField .select2-container.filterModalSelect .select2-selection--single {
    height: 52px;
    border: none;
    border-radius: 10px;
  }
  .filterModalBackdrop .filterField.selectField .select2-container.filterModalSelect .select2-selection__rendered {
    line-height: 52px;
    font-size: 14px;
    padding-left: 16px;
    padding-right: 46px;
  }
  .filterModalBackdrop .filterField.selectField .select2-container.filterModalSelect .select2-selection__arrow {
    width: 34px;
    height: 34px;
    right: 8px;
    top: 9px;
    border-radius: 8px;
  }
  .filterModalBackdrop .filterField.inputField .filterInput {
    padding: 14px 100px 14px 16px;
    font-size: 14px;
  }
  .filterModalBackdrop .filterField.inputField .fieldUnit {
    right: 14px;
    font-size: 11px;
  }
  .filterModalBackdrop .filterSubmitBtn {
    height: 52px;
    border-radius: 10px;
    font-size: 14px;
    width: 100%;
    max-width: none;
    grid-column: 1/-1;
  }
  body {
    padding-top: 73px !important;
  }
  .categoryFilterArea {
    width: calc(100% - 20px);
    max-width: none;
    bottom: 12px;
  }
  .categoryFilterArea .filterBarWrapper {
    width: 100%;
  }
  .categoryFilterArea .filterBar {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 8px;
    border-radius: 12px;
  }
  .categoryFilterArea .filterSearchBtn,
  .categoryFilterArea .filterActionBtn {
    width: 100%;
    min-height: 46px;
    border-radius: 10px;
    padding: 12px 14px;
  }
  .categoryFilterArea .filterSearchBtn {
    text-align: center;
  }
  .categoryFilterArea .filterSearchBtn span {
    font-size: 13px;
  }
  .categoryFilterArea .filterActionBtn {
    justify-content: center;
  }
  .categoryFilterArea .filterActionBtn .btnText {
    font-size: 13px;
    margin-right: 10px;
  }
  .categoryFilterArea .filterActionBtn .btnSeparator {
    height: 14px;
    margin-right: 10px;
  }
  .categoryGridSection:not(.type2) {
    margin-bottom: 8px;
  }
  .categoryGridSection:not(.type2) .categoryGrid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    align-items: stretch;
  }
  .categoryGridSection:not(.type2) .categoryCard {
    height: auto;
    min-height: 390px;
    border-radius: 12px;
    padding: 26px 16px 24px;
  }
  .categoryGridSection:not(.type2) .categoryCard .cardDesc {
    font-size: 14px;
    line-height: 22px;
  }
  .categoryGridSection:not(.type2) .categoryCard .cardMiddle {
    margin: 24px 0;
  }
  .categoryGridSection:not(.type2) .categoryCard .cardBottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .categoryGridSection:not(.type2) .categoryCard .cardBottom .cardTitle {
    font-size: 24px;
    line-height: 30px;
  }
  .categoryGridSection:not(.type2) .categoryCard .cardBottom .actionBtn {
    width: 100%;
    justify-content: space-between;
    padding: 10px 10px 10px 14px;
    border-radius: 10px;
  }
  .categoryGridSection:not(.type2) .categoryCard .cardBottom .actionBtn span {
    font-size: 14px;
  }
  .categoryGridSection:not(.type2) .categoryCard .cardBottom .actionBtn .arrowCircle {
    width: 44px;
    height: 36px;
    border-radius: 9px;
    margin-left: 10px;
  }
  .categoryGridSection:not(.type2) .categoryCard .cardImg {
    max-height: 52%;
    right: -18px;
  }
}
@media screen and (min-width: 576px) and (max-width: 768px) {
  .filterModalBackdrop {
    padding: 14px;
    overflow-y: auto;
    align-items: flex-start;
    -webkit-overflow-scrolling: touch;
  }
  .filterModalBackdrop .filterDropdown {
    width: 100%;
    max-width: 100%;
    border-radius: 14px;
    padding: 85px 20px 20px;
    max-height: calc(100vh - 28px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .filterModalBackdrop .dropdownClose {
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
  }
  .filterModalBackdrop .dropdownHeader {
    margin-bottom: 18px;
  }
  .filterModalBackdrop .dropdownHeader .dropdownTitle {
    font-size: 26px;
    line-height: 34px;
    margin: 0;
  }
  .filterModalBackdrop .dropdownSeparator {
    display: none;
  }
  .filterModalBackdrop .filterGrid {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 10px;
  }
  .filterModalBackdrop .filterGrid > * {
    min-width: 0;
  }
  .filterModalBackdrop .select2-container.filterModalSelect.select2-container--open {
    z-index: 2505;
  }
  .filterModalBackdrop .select2-container.filterModalSelect .select2-dropdown {
    margin-top: 6px;
    border-radius: 12px;
  }
  .filterModalBackdrop .select2-container.filterModalSelect .select2-results__option {
    font-size: 14px;
    padding: 10px 14px;
  }
  .filterModalBackdrop .filterField {
    height: 56px;
    border-radius: 12px;
    padding: 10px 10px 10px 20px;
  }
  .filterModalBackdrop .filterField .fieldLabel {
    font-size: 14px;
  }
  .filterModalBackdrop .filterField.selectField {
    padding: 0;
    overflow: visible;
  }
  .filterModalBackdrop .filterField.selectField .select2-container.filterModalSelect .select2-selection--single {
    height: 56px;
    border: none;
    border-radius: 12px;
  }
  .filterModalBackdrop .filterField.selectField .select2-container.filterModalSelect .select2-selection__rendered {
    line-height: 56px;
    font-size: 14px;
    padding-left: 20px;
    padding-right: 50px;
  }
  .filterModalBackdrop .filterField.selectField .select2-container.filterModalSelect .select2-selection__arrow {
    width: 36px;
    height: 36px;
    right: 10px;
    top: 10px;
    border-radius: 10px;
  }
  .filterModalBackdrop .filterSubmitBtn {
    height: 56px;
    border-radius: 12px;
    font-size: 14px;
    width: 100%;
    max-width: none;
    grid-column: 1/-1;
  }
  .categoryFilterArea {
    width: calc(100% - 30px);
    bottom: 16px;
  }
  .categoryFilterArea .filterBarWrapper {
    width: 100%;
  }
  .categoryFilterArea .filterBar {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 10px;
    border-radius: 14px;
  }
  .categoryFilterArea .filterSearchBtn,
  .categoryFilterArea .filterActionBtn {
    width: 100%;
    min-height: 52px;
    border-radius: 12px;
    padding: 14px 18px;
  }
  .categoryFilterArea .filterSearchBtn {
    text-align: center;
  }
  .categoryFilterArea .filterActionBtn {
    justify-content: center;
  }
  .categoryFilterArea .filterActionBtn .btnText {
    margin-right: 12px;
  }
  .categoryFilterArea .filterActionBtn .btnSeparator {
    margin-right: 12px;
  }
  .categoryGridSection:not(.type2) .categoryGrid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    align-items: stretch;
  }
  .categoryGridSection:not(.type2) .categoryCard {
    min-height: 430px;
    padding: 40px 30px;
  }
  .categoryGridSection:not(.type2) .categoryCard .cardMiddle {
    margin: 34px 0;
  }
  .categoryGridSection:not(.type2) .categoryCard .cardBottom .cardTitle {
    font-size: 28px;
    line-height: 34px;
  }
}
@media screen and (min-width: 768px) and (max-width: 992px) {
  .filterModalBackdrop {
    padding: 18px;
  }
  .filterModalBackdrop .filterDropdown {
    width: 100%;
    max-width: 100%;
    border-radius: 16px;
    padding: 85px 34px 30px;
  }
  .filterModalBackdrop .dropdownClose {
    top: 16px;
    right: 16px;
    width: 38px;
    height: 38px;
  }
  .filterModalBackdrop .dropdownHeader .dropdownTitle {
    font-size: 28px;
    line-height: 34px;
    margin-bottom: 2px;
  }
  .filterModalBackdrop .dropdownSeparator {
    display: none;
  }
  .filterModalBackdrop .filterGrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .filterModalBackdrop .filterField {
    height: 62px;
    border-radius: 12px;
    padding: 10px 10px 10px 20px;
  }
  .filterModalBackdrop .filterField.selectField {
    padding: 0;
    overflow: visible;
  }
  .filterModalBackdrop .filterField.selectField .select2-container.filterModalSelect .select2-selection--single {
    height: 62px;
    border-radius: 12px;
  }
  .filterModalBackdrop .filterField.selectField .select2-container.filterModalSelect .select2-selection__rendered {
    line-height: 62px;
    font-size: 15px;
    padding-left: 20px;
    padding-right: 52px;
  }
  .filterModalBackdrop .filterField.selectField .select2-container.filterModalSelect .select2-selection__arrow {
    width: 38px;
    height: 38px;
    right: 10px;
    top: 12px;
    border-radius: 10px;
  }
  .filterModalBackdrop .filterField.inputField .filterInput {
    padding: 14px 120px 14px 20px;
    font-size: 15px;
  }
  .filterModalBackdrop .filterField.inputField .fieldUnit {
    right: 14px;
    font-size: 11px;
  }
  .filterModalBackdrop .filterSubmitBtn {
    width: 100%;
    height: 62px;
    max-width: none;
    border-radius: 12px;
    font-size: 16px;
  }
  .categoryFilterArea {
    width: calc(100% - 36px);
    bottom: 18px;
  }
  .categoryFilterArea .filterBarWrapper {
    width: 100%;
  }
  .categoryFilterArea .filterBar {
    display: flex;
    gap: 10px;
    padding: 10px;
    border-radius: 16px;
  }
  .categoryFilterArea .filterSearchBtn {
    flex: 1;
    min-height: 56px;
    border-radius: 12px;
    padding: 16px 18px;
  }
  .categoryFilterArea .filterActionBtn {
    min-height: 56px;
    border-radius: 12px;
    padding: 16px 18px;
  }
  .categoryFilterArea .filterActionBtn .btnText {
    margin-right: 10px;
    font-size: 14px;
  }
  .categoryFilterArea .filterActionBtn .btnSeparator {
    margin-right: 10px;
  }
  .categoryGridSection:not(.type2) .categoryGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    align-items: stretch;
  }
  .categoryGridSection:not(.type2) .categoryCard:nth-child(3) {
    grid-column: 1/-1;
  }
  .categoryGridSection:not(.type2) .categoryCard {
    min-height: 420px;
    padding: 54px 40px 44px;
  }
  .categoryGridSection:not(.type2) .categoryCard .cardBottom .cardTitle {
    font-size: 30px;
    line-height: 36px;
  }
}
@media screen and (min-width: 993px) and (max-width: 1200px) {
  .filterModalBackdrop .filterDropdown {
    width: min(92vw, 980px);
    border-radius: 18px;
  }
  .filterModalBackdrop .dropdownHeader .dropdownTitle {
    font-size: 28px;
  }
  .filterModalBackdrop .dropdownSeparator {
    width: calc(100% + 108px);
    margin-left: -54px;
    margin-right: -54px;
    margin-bottom: 26px;
  }
  .filterModalBackdrop .dropdownSeparator .separatorPill {
    left: 70px;
  }
  .filterModalBackdrop .dropdownSeparator .bgIllustration {
    right: 54px;
    bottom: 76px;
    max-height: 100px;
  }
  .filterModalBackdrop .filterGrid {
    gap: 10px;
  }
  .filterModalBackdrop .filterField {
    height: 68px;
  }
  .filterModalBackdrop .filterField.selectField .select2-container.filterModalSelect .select2-selection--single {
    height: 68px;
  }
  .filterModalBackdrop .filterField.selectField .select2-container.filterModalSelect .select2-selection__rendered {
    line-height: 68px;
    padding-left: 26px;
  }
  .filterModalBackdrop .filterField.selectField .select2-container.filterModalSelect .select2-selection__arrow {
    top: 12px;
  }
  .filterModalBackdrop .filterSubmitBtn {
    width: 100%;
    max-width: none;
    height: 68px;
    font-size: 18px;
  }
  .categoryFilterArea {
    width: 560px;
  }
  .categoryFilterArea .filterBarWrapper {
    width: 100%;
  }
  .categoryFilterArea .filterBar {
    padding: 11px;
    border-radius: 18px;
  }
  .categoryFilterArea .filterSearchBtn {
    padding: 16px 22px;
  }
  .categoryFilterArea .filterActionBtn {
    padding: 16px 20px;
  }
  .categoryFilterArea .filterActionBtn .btnText {
    margin-right: 12px;
  }
  .categoryFilterArea .filterActionBtn .btnSeparator {
    margin-right: 12px;
  }
  .categoryGridSection:not(.type2) .categoryGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    align-items: stretch;
  }
  .categoryGridSection:not(.type2) .categoryCard:nth-child(3) {
    grid-column: 1/-1;
  }
  .categoryGridSection:not(.type2) .categoryCard {
    min-height: 450px;
    padding: 66px 46px 70px;
  }
  .categoryGridSection:not(.type2) .categoryCard .cardBottom .cardTitle {
    font-size: 28px;
    line-height: 34px;
  }
  .categoryGridSection:not(.type2) .categoryCard .cardBottom .actionBtn {
    padding: 12px 12px 12px 16px;
  }
  .categoryGridSection:not(.type2) .categoryCard .cardBottom .actionBtn .arrowCircle {
    width: 58px;
    height: 44px;
  }
}
@media screen and (min-width: 1201px) and (max-width: 1400px) {
  .filterModalBackdrop .filterDropdown {
    width: min(92vw, 1140px);
  }
  .filterModalBackdrop .dropdownSeparator {
    width: calc(100% + 144px);
    margin-left: -72px;
    margin-right: -72px;
  }
  .filterModalBackdrop .dropdownSeparator .separatorPill {
    left: 86px;
  }
  .filterModalBackdrop .filterSubmitBtn {
    width: 100%;
    max-width: none;
  }
  .categoryFilterArea {
    width: 610px;
  }
  .categoryFilterArea .filterBarWrapper {
    width: 100%;
  }
  .categoryGridSection:not(.type2) .categoryGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    align-items: stretch;
  }
  .categoryGridSection:not(.type2) .categoryCard:nth-child(3) {
    grid-column: auto;
  }
  .categoryGridSection:not(.type2) .categoryCard {
    min-height: 500px;
    padding: 82px 52px 92px;
  }
}
@media screen and (max-width: 575px) {
  .productDetailContainer {
    padding: 8px 0;
  }
  .productDetailContainer .detailTopGrid {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 8px;
  }
  .productDetailContainer .detailTopGrid .detailInfoCard {
    border-radius: 12px;
    min-height: auto;
    padding: 30px 16px;
  }
  .productDetailContainer .detailTopGrid .detailInfoCard .detailTitle {
    font-size: 28px;
    line-height: 34px;
    margin-bottom: 26px;
  }
  .productDetailContainer .detailTopGrid .detailInfoCard .detailActions {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
  }
  .productDetailContainer .detailTopGrid .detailInfoCard .detailActions .actionBtn {
    width: 100%;
    justify-content: center;
    padding: 10px 14px;
    height: 42px;
    font-size: 13px;
  }
  .productDetailContainer .detailTopGrid .detailInfoCard .specGrid {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .productDetailContainer .detailTopGrid .detailInfoCard .specGrid .specCell {
    padding: 12px 14px;
    font-size: 13px;
  }
  .productDetailContainer .detailTopGrid .detailInfoCard .scrollDownBtn {
    width: 44px;
    height: 42px;
    border-radius: 10px;
    margin: 20px 0;
  }
  .productDetailContainer .detailTopGrid .detailInfoCard .detailSummary {
    font-size: 15px;
    line-height: 22px;
  }
  .productDetailContainer .detailTopGrid .detailGalleryCard {
    border-radius: 12px;
    padding: 18px 16px 20px;
    min-height: auto;
  }
  .productDetailContainer .detailTopGrid .detailGalleryCard .galleryWrapper {
    height: auto;
    gap: 10px;
  }
  .productDetailContainer .detailTopGrid .detailGalleryCard .productMainSwiper {
    height: 240px;
  }
  .productDetailContainer .detailTopGrid .detailGalleryCard .productThumbGrid {
    width: 100%;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    overflow: visible;
  }
  .productDetailContainer .detailTopGrid .detailGalleryCard .productThumbGrid .thumbItem {
    border-radius: 10px;
    padding: 8px;
  }
  .productDetailContainer .detailBottomGrid {
    gap: 8px;
  }
  .productDetailContainer .detailBottomGrid .bottomSummaryCard,
  .productDetailContainer .detailBottomGrid .bottomChartCard {
    border-radius: 12px;
    padding: 28px 16px;
  }
  .productDetailContainer .detailBottomGrid .bottomSummaryCard .redIcon {
    margin: 24px 0;
  }
  .productDetailContainer .detailBottomGrid .bottomSummaryCard .summarySubheading,
  .productDetailContainer .detailBottomGrid .bottomSummaryCard .summaryDesc,
  .productDetailContainer .detailBottomGrid .bottomSummaryCard .highlightList .listTitle,
  .productDetailContainer .detailBottomGrid .bottomSummaryCard .highlightList ul li {
    font-size: 15px;
    line-height: 22px;
  }
  .productDetailContainer .sectionTag {
    font-size: 12px;
  }
  .productDetailContainer .bottomTechnicCard {
    border-radius: 12px;
    margin-top: 8px;
    padding: 30px 16px;
    gap: 24px;
  }
  .productDetailContainer .bottomTechnicCard .technicLeft {
    padding-bottom: 0;
  }
  .productDetailContainer .bottomTechnicCard .technicLeft .redIcon {
    margin: 24px 0 20px;
  }
  .productDetailContainer .bottomTechnicCard .technicLeft .technicGrid {
    gap: 6px;
  }
  .productDetailContainer .bottomTechnicCard .technicLeft .technicGrid .technicRow {
    flex-direction: column;
    gap: 6px;
  }
  .productDetailContainer .bottomTechnicCard .technicLeft .technicGrid .techCell {
    width: 100%;
    font-size: 13px;
    padding: 10px 12px;
  }
  .productDetailContainer .bottomTechnicCard .technicLeft .technicGrid .techCell.techLabel {
    width: 100%;
  }
  .productDetailContainer .bottomTechnicCard .technicRight .techImageWrapper {
    min-height: 260px;
  }
  .productDetailContainer .bottomTechnicCard .technicRight .techImageWrapper .techImg {
    max-height: 260px;
  }
  .productDetailContainer .detailFeatures .mainTitleArea {
    padding: 24px 16px;
  }
  .productDetailContainer .detailFeatures .mainTitleArea .title {
    margin-bottom: 18px;
  }
  .productDetailContainer .detailFeaturesGrid {
    gap: 8px;
    margin: 8px 0;
  }
  .productDetailContainer .detailFeaturesGrid .featureCard {
    border-radius: 12px;
    min-height: auto;
    padding: 26px 16px;
  }
  .productDetailContainer .detailFeaturesGrid .featureCard .cardHeader {
    gap: 12px;
    margin-bottom: 20px;
  }
  .productDetailContainer .detailFeaturesGrid .featureCard .cardHeader .iconBox {
    width: 48px;
    height: 48px;
    border-radius: 10px;
  }
  .productDetailContainer .detailFeaturesGrid .featureCard .cardHeader .cardHeading {
    font-size: 18px;
  }
  .productDetailContainer .detailFeaturesGrid .featureCard .cardBody {
    padding-left: 0;
  }
  .productDetailContainer .detailFeaturesGrid .featureCard .cardBody .cardText {
    font-size: 14px;
    line-height: 22px;
  }
  .productDetailContainer .productsCtaSection .ctaGrid {
    gap: 8px;
  }
  .productDetailContainer .productsCtaSection .ctaCard.documentCenterCard {
    border-radius: 12px;
    padding: 28px 16px;
  }
  .productDetailContainer .productsCtaSection .ctaCard.documentCenterCard .sectionTag {
    margin-bottom: 20px;
  }
  .productDetailContainer .productsCtaSection .ctaCard.documentCenterCard .redIcon {
    margin-bottom: 16px;
  }
  .productDetailContainer .productsCtaSection .ctaCard.documentCenterCard .documentTable {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .productDetailContainer .productsCtaSection .ctaCard.documentCenterCard .documentTable .tableHeader,
  .productDetailContainer .productsCtaSection .ctaCard.documentCenterCard .documentTable .tableRow {
    min-width: 560px;
    grid-template-columns: 2.2fr 1.2fr 1fr 44px;
    padding: 12px 0;
  }
  .productDetailContainer .productsCtaSection .ctaCard.ctaRight {
    border-radius: 12px;
    min-height: auto;
    padding: 28px 16px;
  }
  .productDetailContainer .productsCtaSection .ctaCard.ctaRight .ctaTitle {
    font-size: 24px;
    line-height: 32px;
  }
  .productDetailContainer .productsCtaSection .ctaCard.ctaRight .ctaSubtext {
    margin-top: 18px;
    font-size: 14px;
    line-height: 22px;
  }
  .productDetailContainer .productsCtaSection .ctaCard.ctaRight .ctaImgBox {
    position: static;
    max-width: 200px;
    margin: 16px 0 0 auto;
  }
  .productDetailContainer .mainTitleArea {
    padding: 24px 16px;
  }
  .productDetailContainer .mainTitleArea .title {
    margin-bottom: 18px;
  }
  .productDetailContainer .relatedProductsGrid {
    grid-template-columns: 1fr;
    gap: 8px;
    margin: 8px 0;
  }
  .productDetailContainer .relatedProductsGrid .relatedProductCard {
    border-radius: 12px;
    min-height: auto;
    padding: 24px 16px;
  }
  .productDetailContainer .relatedProductsGrid .relatedProductCard .cardImgBox {
    height: 180px;
    margin-bottom: 16px;
  }
  .productDetailContainer .relatedProductsGrid .relatedProductCard .cardFooter .cardName {
    font-size: 16px;
    line-height: 21px;
    max-width: none;
  }
  .productDetailContainer .relatedProductsGrid .relatedProductCard .cardFooter .arrowBtn {
    width: 42px;
    height: 42px;
    border-radius: 10px;
  }
}
@media screen and (min-width: 576px) and (max-width: 768px) {
  .productDetailContainer .detailTopGrid {
    grid-template-columns: 1fr;
  }
  .productDetailContainer .detailTopGrid .detailInfoCard {
    padding: 44px 28px;
    min-height: auto;
  }
  .productDetailContainer .detailTopGrid .detailInfoCard .detailTitle {
    font-size: 36px;
    line-height: 42px;
    margin-bottom: 32px;
  }
  .productDetailContainer .detailTopGrid .detailInfoCard .detailActions {
    margin-bottom: 30px;
  }
  .productDetailContainer .detailTopGrid .detailInfoCard .specGrid {
    grid-template-columns: 1fr 1fr;
  }
  .productDetailContainer .detailTopGrid .detailInfoCard .specGrid .specCell {
    padding: 12px 14px;
  }
  .productDetailContainer .detailTopGrid .detailInfoCard .scrollDownBtn {
    margin: 26px 0;
  }
  .productDetailContainer .detailTopGrid .detailGalleryCard {
    padding: 26px 24px;
  }
  .productDetailContainer .detailTopGrid .detailGalleryCard .galleryWrapper {
    flex-direction: column;
    gap: 12px;
    height: auto;
  }
  .productDetailContainer .detailTopGrid .detailGalleryCard .productMainSwiper {
    height: 320px;
  }
  .productDetailContainer .detailTopGrid .detailGalleryCard .productThumbGrid {
    width: 100%;
    grid-template-columns: repeat(4, 1fr);
    overflow: visible;
  }
  .productDetailContainer .detailTopGrid .detailGalleryCard .productThumbGrid .thumbItem {
    padding: 12px;
  }
  .productDetailContainer .detailBottomGrid .bottomSummaryCard,
  .productDetailContainer .detailBottomGrid .bottomChartCard {
    padding: 40px 28px;
  }
  .productDetailContainer .bottomTechnicCard {
    padding: 40px 28px;
    gap: 28px;
  }
  .productDetailContainer .bottomTechnicCard .technicLeft {
    padding-bottom: 0;
  }
  .productDetailContainer .detailFeatures .mainTitleArea {
    padding: 36px 28px;
  }
  .productDetailContainer .detailFeaturesGrid .featureCard {
    padding: 34px 28px;
  }
  .productDetailContainer .detailFeaturesGrid .featureCard .cardBody {
    padding-left: 0;
  }
  .productDetailContainer .productsCtaSection .ctaCard.documentCenterCard {
    padding: 40px 28px;
  }
  .productDetailContainer .productsCtaSection .ctaCard.documentCenterCard .documentTable {
    overflow-x: auto;
  }
  .productDetailContainer .productsCtaSection .ctaCard.documentCenterCard .documentTable .tableHeader,
  .productDetailContainer .productsCtaSection .ctaCard.documentCenterCard .documentTable .tableRow {
    min-width: 640px;
  }
  .productDetailContainer .mainTitleArea {
    padding: 36px 28px;
  }
  .productDetailContainer .relatedProductsGrid {
    grid-template-columns: repeat(2, 1fr);
  }
  .productDetailContainer .relatedProductsGrid .relatedProductCard {
    min-height: 420px;
    padding: 34px 24px;
  }
  .productDetailContainer .relatedProductsGrid .relatedProductCard .cardImgBox {
    height: 220px;
  }
}
@media screen and (min-width: 768px) and (max-width: 992px) {
  .productDetailContainer .detailTopGrid {
    grid-template-columns: 1fr;
  }
  .productDetailContainer .detailTopGrid .detailGalleryCard {
    padding: 26px 24px;
  }
  .productDetailContainer .detailTopGrid .detailGalleryCard .galleryWrapper {
    flex-direction: column;
    gap: 12px;
    height: auto;
  }
  .productDetailContainer .detailTopGrid .detailGalleryCard .productMainSwiper {
    height: 320px;
    width: 100%;
  }
  .productDetailContainer .detailTopGrid .detailGalleryCard .productThumbGrid {
    width: 100%;
    max-height: none;
    grid-template-columns: repeat(4, 1fr);
    overflow: visible;
  }
  .productDetailContainer .detailTopGrid .detailGalleryCard .productThumbGrid .thumbItem {
    padding: 10px;
  }
  .productDetailContainer .detailBottomGrid {
    grid-template-columns: 1fr;
  }
  .productDetailContainer .bottomTechnicCard {
    padding: 54px 40px;
    flex-direction: column;
    gap: 34px;
  }
  .productDetailContainer .bottomTechnicCard .technicLeft {
    max-width: 100%;
    padding-bottom: 0;
  }
  .productDetailContainer .detailFeaturesGrid {
    grid-template-columns: 1fr;
  }
  .productDetailContainer .productsCtaSection .ctaGrid {
    grid-template-columns: 1fr;
  }
}
@media screen and (min-width: 993px) and (max-width: 1200px) {
  .productDetailContainer .detailTopGrid .detailInfoCard {
    padding: 56px 48px;
  }
  .productDetailContainer .detailTopGrid .detailGalleryCard {
    padding: 30px 24px;
  }
  .productDetailContainer .detailTopGrid .detailGalleryCard .galleryWrapper {
    gap: 16px;
  }
  .productDetailContainer .detailTopGrid .detailGalleryCard .productThumbGrid {
    width: 100%;
    grid-template-columns: repeat(4, 1fr);
  }
  .productDetailContainer .detailTopGrid .detailGalleryCard .productThumbGrid .thumbItem {
    padding: 12px;
  }
  .productDetailContainer .bottomTechnicCard {
    gap: 48px;
    padding: 64px 56px 0 48px;
  }
  .productDetailContainer .detailFeaturesGrid .featureCard {
    padding: 42px 34px;
  }
  .productDetailContainer .productsCtaSection .ctaCard.documentCenterCard {
    padding: 54px 48px;
  }
  .productDetailContainer .mainTitleArea {
    padding: 56px 54px;
  }
  .productDetailContainer .relatedProductsGrid .relatedProductCard {
    padding: 46px 34px 36px;
    min-height: 460px;
  }
  .productDetailContainer .relatedProductsGrid .relatedProductCard .cardImgBox {
    height: 250px;
  }
}
@media screen and (min-width: 1201px) and (max-width: 1400px) {
  .productDetailContainer .detailTopGrid .detailInfoCard {
    padding: 70px 62px;
  }
  .productDetailContainer .detailTopGrid .detailGalleryCard {
    padding: 34px 30px;
  }
  .productDetailContainer .bottomTechnicCard {
    padding: 70px 90px 0 60px;
    gap: 70px;
  }
  .productDetailContainer .detailFeaturesGrid .featureCard {
    padding: 50px 52px;
  }
}
@media screen and (max-width: 575px) {
  .solutionsIntroSection {
    margin: 8px 0;
  }
  .solutionsIntroSection .introCard {
    border-radius: 12px;
    padding: 24px 16px 28px;
  }
  .solutionsIntroSection .introCard .redIcon {
    margin-bottom: 16px;
  }
  .solutionsIntroSection .introCard .introText {
    font-size: 15px;
    line-height: 24px;
  }
  .solutionsAreasSection {
    border-radius: 12px;
    margin-bottom: 8px;
    padding: 24px 16px 18px;
  }
  .solutionsAreasSection .areasHeader {
    padding: 0;
    margin-bottom: 20px;
  }
  .solutionsAreasSection .areasHeader .areasTitle {
    font-size: 22px;
    line-height: 30px;
    margin: 0 0 14px;
  }
  .solutionsAreasSection .areasHeader .redIcon {
    margin-bottom: 14px;
  }
  .solutionsAreasSection .areasHeader .areasDesc {
    font-size: 14px;
    line-height: 22px;
  }
  .solutionsAreasSection .areasLayout {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .solutionsAreasSection .areasVisualCard {
    min-height: 260px;
    border-radius: 12px;
  }
  .solutionsAreasSection .areasVisualCard .visualTitle {
    left: 14px;
    top: 14px;
    font-size: 16px;
  }
  .solutionsAreasSection .areasVisualCard .visualStep {
    left: 12px;
    bottom: 12px;
    width: 52px;
    height: 52px;
    border-radius: 10px;
  }
  .solutionsAreasSection .areasVisualCard .visualStep .circleProgress {
    width: 32px;
    height: 32px;
  }
  .solutionsAreasSection .areasVisualCard .visualStep .circleProgress .activeNumber {
    font-size: 12px;
  }
  .solutionsAreasSection .areasList {
    gap: 8px;
  }
  .solutionsAreasSection .areaItem {
    min-height: auto;
    border-radius: 12px;
    padding: 16px 14px;
  }
  .solutionsAreasSection .areaItem .redIcon {
    margin-bottom: 10px;
  }
  .solutionsAreasSection .areaItem h4 {
    font-size: 16px;
    line-height: 22px;
  }
  .solutionsAreasSection .areaItem p {
    font-size: 13px;
    line-height: 20px;
  }
  .solutionsProcessSection {
    border-radius: 12px;
    margin-bottom: 8px;
    padding: 24px 16px;
    overflow: visible;
    height: auto;
  }
  .solutionsProcessSection .processSticky {
    flex-direction: column;
    gap: 24px;
  }
  .solutionsProcessSection .processLeft {
    flex: none;
    max-width: 100%;
  }
  .solutionsProcessSection .processLeft .processTitle {
    font-size: 22px;
    line-height: 30px;
    max-width: 100%;
  }
  .solutionsProcessSection .processLeft .redIcon {
    margin: 16px 0;
  }
  .solutionsProcessSection .processLeft .processDesc {
    font-size: 15px;
    line-height: 24px;
  }
  .solutionsProcessSection .processRight {
    height: auto;
    padding-top: 0;
  }
  .solutionsProcessSection .processSteps {
    gap: 24px;
    min-height: auto;
    padding: 0;
    transform: none !important;
    transition: none;
  }
  .solutionsProcessSection .processStep {
    grid-template-columns: 40px 1fr;
    gap: 14px;
    opacity: 1 !important;
  }
  .solutionsProcessSection .processStep::after {
    display: none;
  }
  .solutionsProcessSection .processStep .stepNo {
    font-size: 40px;
    color: #061129;
  }
  .solutionsProcessSection .processStep .stepContent {
    padding-top: 6px;
  }
  .solutionsProcessSection .processStep .stepContent h4 {
    font-size: 16px;
    line-height: 22px;
    margin: 0 0 6px;
    color: #061129;
  }
  .solutionsProcessSection .processStep .stepContent p {
    font-size: 14px;
    line-height: 22px;
    color: #7D8798;
  }
  .solutionsProcessSection .processStep.active .stepNo {
    font-size: 40px;
    color: #FE084F;
  }
  .solutionsProcessSection .processStep.active .stepContent {
    padding-top: 6px;
  }
  .solutionsProcessSection .processStep.active .stepContent h4 {
    font-size: 16px;
    color: #FE084F;
    margin: 0 0 6px;
  }
  .solutionsProcessSection .processStep.active .stepContent p {
    font-size: 14px;
    color: #061129;
  }
  .solutionsSectorsSection {
    margin-bottom: 8px;
    margin-top: 8px;
  }
  .solutionsStrengthSection {
    border-radius: 12px;
    margin-bottom: 8px;
  }
  .solutionsStrengthSection .strengthInner {
    padding: 24px 16px;
    gap: 20px;
  }
  .solutionsStrengthSection .strengthHeader {
    flex-direction: column;
    gap: 12px;
  }
  .solutionsStrengthSection .strengthTitle {
    font-size: 22px;
    line-height: 30px;
  }
  .solutionsStrengthSection .strengthBody {
    margin: 0;
    gap: 20px;
    align-items: flex-start;
    width: 100%;
  }
  .solutionsStrengthSection .middle {
    width: 100%;
  }
  .solutionsStrengthSection .middle .strengthBadge {
    position: static;
    transform: none;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    margin-bottom: 16px;
  }
  .solutionsStrengthSection .middle .strengthMain {
    font-size: 32px;
    line-height: 40px;
    white-space: normal;
    text-align: left;
  }
  .solutionsStrengthSection .strengthFeatured {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    width: 100%;
  }
  .solutionsStrengthSection .strengthTagRow {
    width: 100%;
    gap: 12px;
  }
  .solutionsStrengthSection .strengthTagRow.left {
    justify-content: flex-start;
  }
  .solutionsStrengthSection .strengthTagRow.right {
    justify-content: flex-start;
    flex-direction: row-reverse;
  }
  .solutionsStrengthSection .strengthLine {
    display: none;
  }
  .solutionsStrengthSection .strengthTag {
    font-size: 14px;
  }
  .solutionsStrengthSection .strengthDesc {
    font-size: 14px;
    line-height: 22px;
  }
}
@media screen and (min-width: 576px) and (max-width: 768px) {
  .solutionsIntroSection .introCard {
    padding: 32px 28px 38px;
  }
  .solutionsIntroSection .introCard .introText {
    font-size: 17px;
    line-height: 27px;
  }
  .solutionsAreasSection {
    padding: 34px 0 24px;
  }
  .solutionsAreasSection .areasHeader {
    padding: 0 28px;
    margin-bottom: 24px;
  }
  .solutionsAreasSection .areasHeader .areasTitle {
    font-size: 28px;
    line-height: 36px;
  }
  .solutionsAreasSection .areasHeader .areasDesc {
    font-size: 15px;
    line-height: 24px;
  }
  .solutionsAreasSection .areasLayout {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .solutionsAreasSection .areasVisualCard {
    min-height: 320px;
    border-radius: 12px;
  }
  .solutionsAreasSection .areasVisualCard .visualStep .circleProgress {
    width: 36px;
    height: 36px;
  }
  .solutionsAreasSection .areasVisualCard .visualStep .circleProgress .activeNumber {
    font-size: 13px;
  }
  .solutionsAreasSection .areaItem {
    min-height: auto;
    padding: 18px 16px;
  }
  .solutionsAreasSection .areaItem h4 {
    font-size: 17px;
    line-height: 24px;
  }
  .solutionsAreasSection .areaItem p {
    font-size: 14px;
    line-height: 22px;
  }
  .solutionsProcessSection {
    padding: 28px;
    overflow: visible;
    height: auto;
  }
  .solutionsProcessSection .processSticky {
    flex-direction: column;
    gap: 28px;
  }
  .solutionsProcessSection .processLeft {
    flex: none;
    max-width: 100%;
  }
  .solutionsProcessSection .processLeft .processTitle {
    font-size: 26px;
    line-height: 34px;
    max-width: 100%;
  }
  .solutionsProcessSection .processLeft .redIcon {
    margin: 20px 0;
  }
  .solutionsProcessSection .processLeft .processDesc {
    font-size: 17px;
    line-height: 27px;
  }
  .solutionsProcessSection .processRight {
    height: auto;
    padding-top: 0;
  }
  .solutionsProcessSection .processSteps {
    gap: 28px;
    min-height: auto;
    padding: 0;
    transform: none !important;
    transition: none;
  }
  .solutionsProcessSection .processStep {
    grid-template-columns: 48px 1fr;
    gap: 16px;
    opacity: 1 !important;
  }
  .solutionsProcessSection .processStep::after {
    display: none;
  }
  .solutionsProcessSection .processStep .stepNo {
    font-size: 48px;
    color: #061129;
  }
  .solutionsProcessSection .processStep .stepContent {
    padding-top: 8px;
  }
  .solutionsProcessSection .processStep .stepContent h4 {
    font-size: 18px;
    line-height: 26px;
    margin: 0 0 8px;
    color: #061129;
  }
  .solutionsProcessSection .processStep .stepContent p {
    font-size: 15px;
    line-height: 23px;
    color: #7D8798;
  }
  .solutionsProcessSection .processStep.active .stepNo {
    font-size: 48px;
    color: #FE084F;
  }
  .solutionsProcessSection .processStep.active .stepContent {
    padding-top: 8px;
  }
  .solutionsProcessSection .processStep.active .stepContent h4 {
    font-size: 18px;
    color: #FE084F;
    margin: 0 0 8px;
  }
  .solutionsProcessSection .processStep.active .stepContent p {
    font-size: 15px;
    color: #061129;
  }
  .solutionsStrengthSection .strengthInner {
    padding: 32px 28px;
    gap: 32px;
  }
  .solutionsStrengthSection .strengthHeader {
    flex-direction: column;
    gap: 14px;
  }
  .solutionsStrengthSection .strengthTitle {
    font-size: 26px;
    line-height: 34px;
  }
  .solutionsStrengthSection .strengthFeatured {
    gap: 20px;
  }
  .solutionsStrengthSection .strengthTagRow {
    gap: 16px;
  }
  .solutionsStrengthSection .strengthTag {
    font-size: 14px;
  }
  .solutionsStrengthSection .strengthLine {
    display: block;
  }
  .solutionsStrengthSection .middle .strengthBadge {
    position: static;
    transform: none;
    width: 54px;
    height: 54px;
    border-radius: 14px;
  }
  .solutionsStrengthSection .strengthMain {
    font-size: 36px;
    line-height: 44px;
    white-space: normal;
  }
  .solutionsStrengthSection .strengthDesc {
    font-size: 15px;
    line-height: 24px;
  }
}
@media screen and (min-width: 768px) and (max-width: 992px) {
  .solutionsIntroSection .introCard {
    padding: 44px 44px 50px;
  }
  .solutionsIntroSection .introCard .introText {
    font-size: 22px;
    line-height: 34px;
  }
  .solutionsAreasSection {
    padding: 50px 0 38px;
  }
  .solutionsAreasSection .areasHeader {
    padding: 0 44px;
    margin-bottom: 40px;
  }
  .solutionsAreasSection .areasHeader .areasTitle {
    font-size: 30px;
    line-height: 40px;
  }
  .solutionsAreasSection .areasHeader .areasDesc {
    font-size: 16px;
    line-height: 26px;
  }
  .solutionsAreasSection .areasLayout {
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 8px;
  }
  .solutionsAreasSection .areasVisualCard {
    min-height: 460px;
  }
  .solutionsAreasSection .areasVisualCard .visualStep .circleProgress {
    width: 44px;
    height: 44px;
  }
  .solutionsAreasSection .areasVisualCard .visualStep .circleProgress .activeNumber {
    font-size: 16px;
  }
  .solutionsAreasSection .areaItem {
    min-height: auto;
    padding: 20px 16px;
  }
  .solutionsAreasSection .areaItem h4 {
    font-size: 17px;
    line-height: 24px;
  }
  .solutionsAreasSection .areaItem p {
    font-size: 14px;
    line-height: 22px;
  }
  .solutionsProcessSection {
    padding: 34px 44px;
    overflow: visible;
    height: auto;
  }
  .solutionsProcessSection .processSticky {
    flex-direction: column;
    gap: 36px;
  }
  .solutionsProcessSection .processLeft {
    flex: none;
    max-width: 100%;
  }
  .solutionsProcessSection .processLeft .processTitle {
    font-size: 30px;
    line-height: 40px;
    max-width: 100%;
  }
  .solutionsProcessSection .processLeft .redIcon {
    margin: 28px 0;
  }
  .solutionsProcessSection .processLeft .processDesc {
    font-size: 20px;
    line-height: 30px;
  }
  .solutionsProcessSection .processRight {
    height: auto;
    padding-top: 0;
  }
  .solutionsProcessSection .processSteps {
    gap: 36px;
    min-height: auto;
    padding: 0;
    transform: none !important;
    transition: none;
  }
  .solutionsProcessSection .processStep {
    grid-template-columns: 64px 1fr;
    gap: 20px;
    opacity: 1 !important;
  }
  .solutionsProcessSection .processStep::after {
    display: none;
  }
  .solutionsProcessSection .processStep .stepNo {
    font-size: 64px;
    color: #061129;
  }
  .solutionsProcessSection .processStep .stepContent {
    padding-top: 12px;
  }
  .solutionsProcessSection .processStep .stepContent h4 {
    font-size: 22px;
    line-height: 30px;
    margin: 0 0 10px;
    color: #061129;
  }
  .solutionsProcessSection .processStep .stepContent p {
    font-size: 17px;
    line-height: 26px;
    color: #7D8798;
  }
  .solutionsProcessSection .processStep.active .stepNo {
    font-size: 64px;
    color: #FE084F;
  }
  .solutionsProcessSection .processStep.active .stepContent {
    padding-top: 12px;
  }
  .solutionsProcessSection .processStep.active .stepContent h4 {
    font-size: 22px;
    color: #FE084F;
    margin: 0 0 10px;
  }
  .solutionsProcessSection .processStep.active .stepContent p {
    font-size: 17px;
    color: #061129;
  }
  .solutionsStrengthSection .strengthInner {
    padding: 50px 44px;
    gap: 44px;
  }
  .solutionsStrengthSection .strengthHeader {
    flex-direction: row;
    gap: 32px;
  }
  .solutionsStrengthSection .strengthTitle {
    font-size: 30px;
    line-height: 40px;
  }
  .solutionsStrengthSection .strengthFeatured {
    gap: 40px;
  }
  .solutionsStrengthSection .strengthMain {
    font-size: 44px;
    line-height: 52px;
  }
  .solutionsStrengthSection .strengthDesc {
    font-size: 17px;
    line-height: 28px;
  }
}
@media screen and (min-width: 993px) and (max-width: 1200px) {
  .solutionsIntroSection .introCard {
    padding: 55px 60px 65px;
  }
  .solutionsIntroSection .introCard .introText {
    font-size: 28px;
    line-height: 42px;
  }
  .solutionsAreasSection .areasHeader {
    padding: 0 60px;
  }
  .solutionsAreasSection .areasHeader .areasTitle {
    font-size: 32px;
  }
  .solutionsAreasSection .areasLayout {
    grid-template-columns: minmax(0, 1fr) 480px;
  }
  .solutionsAreasSection .areasVisualCard {
    min-height: 520px;
  }
  .solutionsAreasSection .areaItem {
    min-height: 200px;
  }
  .solutionsProcessSection {
    padding: 28px 60px;
  }
  .solutionsProcessSection .processSticky {
    gap: 120px;
  }
  .solutionsProcessSection .processLeft {
    flex: 0 0 500px;
    max-width: 500px;
  }
  .solutionsProcessSection .processLeft .processTitle {
    font-size: 30px;
  }
  .solutionsProcessSection .processLeft .processDesc {
    font-size: 28px;
    line-height: 40px;
  }
  .solutionsProcessSection .processSteps {
    gap: 160px;
  }
  .solutionsProcessSection .processStep {
    gap: 60px;
  }
  .solutionsProcessSection .processStep.active .stepNo {
    font-size: 140px;
  }
  .solutionsProcessSection.step-2-active {
    --process-shift: -160px;
  }
  .solutionsStrengthSection .strengthInner {
    padding: 55px 60px;
    gap: 50px;
  }
  .solutionsStrengthSection .strengthTitle {
    font-size: 30px;
  }
  .solutionsStrengthSection .strengthMain {
    font-size: 44px;
    line-height: 52px;
  }
}
@media screen and (min-width: 1201px) and (max-width: 1400px) {
  .solutionsAreasSection .areasLayout {
    grid-template-columns: minmax(0, 1fr) 560px;
  }
  .solutionsAreasSection .areasVisualCard {
    min-height: 540px;
  }
  .solutionsProcessSection .processSticky {
    gap: 160px;
  }
  .solutionsProcessSection .processLeft {
    flex: 0 0 600px;
    max-width: 600px;
  }
}
@media screen and (max-width: 575px) {
  .productionHero .heroRight .heroChip {
    right: 16px;
    bottom: 20px;
    width: min(220px, 55%);
  }
  .productionIntroSection {
    margin: 8px 0;
  }
  .productionIntroSection .introCard {
    padding: 28px 16px;
    border-radius: 12px;
  }
  .productionIntroSection .introCard .redIcon {
    margin-bottom: 20px;
  }
  .productionIntroSection .introCard .introText {
    font-size: 18px;
    line-height: 28px;
  }
  .productionJourneySection {
    margin-bottom: 8px;
  }
  .productionJourneySection .journeyHeader {
    padding: 32px 16px 24px;
  }
  .productionJourneySection .journeyHeader .journeyDecor {
    display: none;
  }
  .productionJourneySection .journeyHeader .journeyTitle {
    font-size: 28px;
    line-height: 34px;
    max-width: none;
  }
  .productionJourneySection.categorySolutionsSection {
    padding: 0 8px 8px;
  }
  .productionJourneySection.categorySolutionsSection .solutionsFlex {
    flex-direction: column;
    gap: 8px;
  }
  .productionJourneySection.categorySolutionsSection .solutionsLeft {
    width: 100%;
  }
  .productionJourneySection.categorySolutionsSection .solutionsLeft .graphicWrapper {
    min-height: 420px;
  }
  .productionJourneySection.categorySolutionsSection .solutionsLeft .graphicWrapper .graphicImg {
    min-height: 420px;
  }
  .productionJourneySection.categorySolutionsSection .solutionsLeft .graphicWrapper .titleArea {
    left: 16px;
    top: 24px;
    gap: 16px;
    max-width: calc(100% - 32px);
  }
  .productionJourneySection.categorySolutionsSection .solutionsLeft .graphicWrapper .titleArea .sectionTitle {
    font-size: 18px;
    line-height: 24px;
  }
  .productionJourneySection.categorySolutionsSection .solutionsLeft .graphicWrapper .interactiveOverlay {
    left: 16px;
    right: 16px;
    bottom: 16px;
    width: auto;
    max-width: none;
  }
  .productionJourneySection.categorySolutionsSection .solutionsLeft .graphicWrapper .interactiveOverlay .numberBox {
    width: 86px;
    height: 80px;
  }
  .productionJourneySection.categorySolutionsSection .solutionsLeft .graphicWrapper .interactiveOverlay .descBox {
    width: 100%;
    max-width: none;
    padding: 20px 16px;
    box-sizing: border-box;
  }
  .productionJourneySection.categorySolutionsSection .solutionsLeft .graphicWrapper .interactiveOverlay .descBox p {
    font-size: 15px;
    line-height: 22px;
  }
  .productionJourneySection.categorySolutionsSection .solutionsRight {
    width: 100%;
  }
  .productionJourneySection.categorySolutionsSection .solutionsRight .solutionsGrid {
    grid-template-columns: 1fr;
    height: auto;
  }
  .productionJourneySection.categorySolutionsSection .solutionsRight .solutionCard {
    min-height: 120px;
    padding: 20px 16px 28px;
  }
  .productionJourneySection.categorySolutionsSection .solutionsRight .solutionCard .cardTop {
    margin-bottom: 16px;
  }
  .productionJourneySection.categorySolutionsSection .solutionsRight .solutionCard .cardTitle {
    font-size: 16px;
    line-height: 22px;
  }
  .productionPhilosophySection {
    margin-bottom: 8px;
  }
  .productionPhilosophySection .philosophyCard {
    padding: 28px 16px;
    border-radius: 12px;
  }
  .productionPhilosophySection .philosophyCard .redIcon {
    margin-bottom: 20px;
  }
  .productionPhilosophySection .philosophyCard .philosophyText {
    font-size: 18px;
    line-height: 28px;
  }
  .productionQualitySection {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 8px;
  }
  .productionQualitySection .qualityLeft,
  .productionQualitySection .qualityRight {
    min-height: auto;
    border-radius: 12px;
  }
  .productionQualitySection .qualityLeft {
    padding: 28px 16px;
    gap: 24px;
  }
  .productionQualitySection .qualityLeft .qualityLead {
    font-size: 15px;
    line-height: 24px;
    max-width: none;
  }
  .productionQualitySection .qualityLeft .qualityTitle {
    font-size: 28px;
    line-height: 34px;
    max-width: none;
  }
  .productionQualitySection .qualityRight {
    padding: 28px 16px 24px;
  }
  .productionQualitySection .qualityRight .qualityVisualTitle {
    font-size: 28px;
    line-height: 34px;
    margin-bottom: 20px;
    padding-left: 0;
    max-width: none;
  }
  .productionQualitySection .qualityRight .qualityVisual {
    min-height: 260px;
    margin-top: 0;
  }
  .productionQualitySection .qualityRight .qualityVector {
    top: 50%;
    transform: translate(-50%, -50%);
    height: auto;
    max-height: 220px;
  }
  .productionQualitySection .qualityRight .qualityCrystal {
    width: min(220px, 65%);
    right: 0;
    bottom: 0;
  }
  .productionQualitySection .qualityRight .qualityBadge {
    left: 0;
    bottom: 0;
  }
  .productionQualitySection .qualityRight .qualityBadge .circleProgress {
    width: 100px;
    height: 100px;
  }
  .productionQualitySection .qualityRight .qualityBadge .circleProgress .number {
    font-size: 28px;
  }
  .productionTechSection {
    margin-bottom: 8px;
  }
  .productionTechSection .techInner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 16px;
    border-radius: 12px;
    min-height: auto;
  }
  .productionTechSection .techLeft {
    position: relative;
    min-height: auto;
    padding-top: 0;
    padding-bottom: 0;
  }
  .productionTechSection .techLeft .redIcon {
    order: 2;
    margin: 24px 0 0;
  }
  .productionTechSection .techLeft .techTitle {
    order: 1;
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 0;
    max-width: none;
  }
  .productionTechSection .techLeft .techVisuals {
    order: 3;
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    transform: none;
    width: 100%;
    height: auto;
    margin: 28px 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: auto;
  }
  .productionTechSection .techLeft .techVisuals .techPress {
    width: min(240px, 78%);
    max-height: 200px;
    object-fit: contain;
  }
  .productionTechSection .techRight {
    min-height: auto;
    align-items: flex-start;
  }
  .productionTechSection .techRight .techVector {
    display: none;
  }
  .productionTechSection .techRight .techText {
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    max-width: none;
  }
  .productionTechSection.type2 .techInner {
    display: block;
    padding: 0;
    background: transparent;
  }
  .productionTechSection.type2 .techLeft,
  .productionTechSection.type2 .techRight {
    border-radius: 12px;
    height: auto;
  }
  .productionTechSection.type2 .techLeft {
    padding: 28px 16px;
    margin-bottom: 8px;
  }
  .productionTechSection.type2 .techLeft .redIcon {
    margin-top: 24px;
  }
  .productionTechSection.type2 .techLeft .techVisuals {
    order: 3;
    position: relative;
    right: auto;
    left: auto;
    bottom: auto;
    transform: none;
    width: 100%;
    height: auto;
    margin: 28px 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .productionTechSection.type2 .techLeft .techVisuals .techPress {
    width: min(240px, 78%);
    max-height: 200px;
    object-fit: contain;
  }
  .productionTechSection.type2 .techRight {
    padding: 28px 16px;
  }
  .productionTechSection.type2 .techRight .techText {
    font-size: 18px;
    line-height: 28px;
  }
}
@media screen and (min-width: 576px) and (max-width: 768px) {
  .productionJourneySection .journeyHeader {
    padding: 48px 32px 32px;
  }
  .productionJourneySection .journeyHeader .journeyTitle {
    font-size: 36px;
    line-height: 42px;
  }
  .productionJourneySection.categorySolutionsSection {
    padding: 0 16px 16px;
  }
  .productionJourneySection.categorySolutionsSection .solutionsFlex {
    flex-direction: column;
    gap: 16px;
  }
  .productionJourneySection.categorySolutionsSection .solutionsLeft .graphicWrapper {
    min-height: 460px;
  }
  .productionJourneySection.categorySolutionsSection .solutionsLeft .graphicWrapper .titleArea {
    left: 32px;
    top: 32px;
    max-width: calc(100% - 64px);
  }
  .productionJourneySection.categorySolutionsSection .solutionsLeft .graphicWrapper .titleArea .sectionTitle {
    font-size: 22px;
    line-height: 28px;
  }
  .productionJourneySection.categorySolutionsSection .solutionsLeft .graphicWrapper .interactiveOverlay {
    left: 24px;
    right: 24px;
    bottom: 24px;
  }
  .productionJourneySection.categorySolutionsSection .solutionsLeft .graphicWrapper .interactiveOverlay .descBox {
    max-width: 100%;
  }
  .productionJourneySection.categorySolutionsSection .solutionsRight .solutionsGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .productionQualitySection {
    grid-template-columns: 1fr;
  }
  .productionQualitySection .qualityLeft,
  .productionQualitySection .qualityRight {
    min-height: auto;
  }
  .productionQualitySection .qualityLeft {
    padding: 48px 32px;
    gap: 32px;
  }
  .productionQualitySection .qualityLeft .qualityTitle {
    font-size: 36px;
    line-height: 42px;
  }
  .productionQualitySection .qualityRight {
    padding: 48px 32px;
  }
  .productionQualitySection .qualityRight .qualityVisualTitle {
    font-size: 36px;
    line-height: 42px;
    padding-left: 0;
  }
  .productionQualitySection .qualityRight .qualityVisual {
    min-height: 300px;
  }
  .productionTechSection .techInner {
    grid-template-columns: 1fr;
    padding: 48px 32px;
  }
  .productionTechSection .techLeft {
    padding-bottom: 0;
  }
  .productionTechSection .techLeft .techVisuals {
    order: 3;
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    transform: none;
    width: 100%;
    height: auto;
    margin: 32px 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: auto;
  }
  .productionTechSection .techLeft .techVisuals .techPress {
    width: min(280px, 72%);
    max-height: 220px;
    object-fit: contain;
  }
  .productionTechSection .techRight .techText {
    font-size: 22px;
    line-height: 32px;
  }
}
@media screen and (min-width: 768px) and (max-width: 992px) {
  .productionJourneySection.categorySolutionsSection .solutionsFlex {
    flex-direction: column;
    gap: 16px;
  }
  .productionJourneySection.categorySolutionsSection .solutionsLeft .graphicWrapper {
    min-height: 500px;
  }
  .productionJourneySection.categorySolutionsSection .solutionsRight .solutionsGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .productionQualitySection {
    grid-template-columns: 1fr;
  }
  .productionQualitySection .qualityLeft .qualityTitle,
  .productionQualitySection .qualityRight .qualityVisualTitle {
    font-size: 44px;
    line-height: 50px;
  }
  .productionQualitySection .qualityRight .qualityVisual {
    min-height: 320px;
  }
  .productionIntroSection .introCard .introText,
  .productionPhilosophySection .philosophyCard .philosophyText {
    font-size: 26px;
    line-height: 38px;
  }
  .productionJourneySection .journeyHeader .journeyTitle {
    font-size: 44px;
    line-height: 50px;
  }
  .productionTechSection .techInner {
    grid-template-columns: 1fr;
    padding-bottom: 240px;
  }
  .productionTechSection .techRight .techText {
    font-size: 24px;
    line-height: 34px;
  }
}
@media screen and (min-width: 993px) and (max-width: 1200px) {
  .productionQualitySection .qualityLeft .qualityTitle,
  .productionQualitySection .qualityRight .qualityVisualTitle {
    font-size: 48px;
    line-height: 54px;
  }
  .productionTechSection .techRight .techText {
    font-size: 26px;
    line-height: 36px;
  }
  .productionJourneySection.categorySolutionsSection .solutionsLeft .graphicWrapper {
    min-height: 520px;
  }
}
@media screen and (min-width: 993px) and (max-width: 1399px) {
  .productionJourneySection.categorySolutionsSection .solutionsFlex {
    flex-wrap: nowrap;
  }
  .productionJourneySection.categorySolutionsSection .solutionsLeft {
    flex: 1.2;
  }
  .productionJourneySection.categorySolutionsSection .solutionsRight {
    flex: 1;
  }
}
@media screen and (max-width: 575px) {
  .referencesHero .heroRight .heroBg {
    object-position: center;
  }
  .referencesPage .referencesPhilosophySection .philosophyCard {
    padding: 28px 16px;
    border-radius: 12px;
  }
  .referencesPage .referencesPhilosophySection .philosophyText {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 24px;
  }
  .referencesPage .referencesPhilosophySection .philosophyScrollBtn {
    width: 48px;
    height: 44px;
  }
  .referencesProjectsSection {
    margin-bottom: 8px;
  }
  .referencesProjectsSection .projectsHeader {
    padding: 32px 16px 24px;
  }
  .referencesProjectsSection .projectsHeader .projectsDecor {
    display: none;
  }
  .referencesProjectsSection .projectsHeader .projectsTitle {
    font-size: 28px;
    line-height: 34px;
  }
  .referencesProjectsSection .projectsHeader .projectsScrollBtn {
    width: 48px;
    height: 44px;
    margin-top: 24px;
  }
  .referencesProjectsSection .projectsSliderWrap {
    padding: 0 8px 8px;
  }
  .referencesProjectsSection .projectImage img {
    height: 200px;
  }
  .referencesProjectsSection .projectBody {
    padding: 18px 16px 20px;
  }
  .referencesProjectsSection .projectName,
  .referencesProjectsSection .projectDesc {
    max-width: none;
  }
  .referencesSolutionsSection.categorySolutionsSection .solutionsLeft .graphicWrapper {
    min-height: 420px;
  }
  .referencesSolutionsSection.categorySolutionsSection .solutionsLeft .graphicWrapper .graphicImg {
    min-height: 420px;
  }
  .referencesSolutionsSection.categorySolutionsSection .solutionsLeft .graphicWrapper .titleArea {
    left: 16px;
    top: 24px;
  }
  .referencesSolutionsSection.categorySolutionsSection .solutionsLeft .graphicWrapper .titleArea .sectionTitle {
    font-size: 18px;
    line-height: 22px;
    max-width: none;
  }
  .referencesSolutionsSection.categorySolutionsSection .solutionsLeft .graphicWrapper .interactiveOverlay {
    left: 16px;
    right: 16px;
    bottom: 16px;
    width: auto;
  }
  .referencesSolutionsSection.categorySolutionsSection .solutionsLeft .graphicWrapper .interactiveOverlay .descBox {
    padding: 20px 16px;
  }
  .referencesSolutionsSection.categorySolutionsSection .solutionsLeft .graphicWrapper .interactiveOverlay .descBox p {
    font-size: 15px;
    line-height: 22px;
  }
  .referencesStatsSection {
    padding: 0 8px;
  }
  .referencesStatsSection .statsStrip {
    grid-template-columns: repeat(2, 1fr);
    border-radius: 12px;
  }
  .referencesStatsSection .statsStrip .statItem {
    padding: 32px 0;
    min-height: 140px;
  }
  .referencesStatsSection .statsStrip .statItem:nth-child(2) {
    border-right: none;
  }
  .referencesStatsSection .statsStrip .statItem .bgNumber {
    font-size: 52px;
  }
  .referencesStatsSection .statsStrip .statItem .statText {
    font-size: 11px;
  }
  .referencesPartnershipSection .partnershipInner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px 16px;
    border-radius: 12px;
  }
  .referencesPartnershipSection .partnershipLeft .partnershipDecor {
    display: none;
  }
  .referencesPartnershipSection .partnershipLeft .partnershipTitle {
    padding-top: 0;
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 24px;
  }
  .referencesPartnershipSection .partnershipLeft .redIcon {
    margin-bottom: 20px;
  }
  .referencesPartnershipSection .partnershipLeft .partnershipText {
    font-size: 18px;
    line-height: 28px;
  }
  .referencesPartnershipSection .partnershipVisual {
    min-height: auto;
  }
  .referencesPartnershipSection .mosaicGrid {
    max-width: none;
    margin: 0;
  }
  .referencesPartnershipSection .partnershipBadge {
    width: min(220px, 70%);
  }
}
@media screen and (max-width: 1199px) {
  .referencesPage .referencesPhilosophySection .philosophyText {
    font-size: 36px;
    line-height: 46px;
  }
  .referencesPartnershipSection .partnershipInner {
    grid-template-columns: 1fr;
  }
  .referencesPartnershipSection .partnershipLeft .partnershipTitle {
    font-size: 36px;
    line-height: 46px;
  }
  .referencesPartnershipSection .partnershipLeft .partnershipText {
    font-size: 24px;
    line-height: 34px;
  }
}
@media screen and (max-width: 575px) {
  .rndHero.splitHero {
    flex-direction: column;
    gap: 8px;
  }
  .rndHero.splitHero .heroLeft,
  .rndHero.splitHero .heroIntroPanel {
    min-height: auto;
  }
  .rndHero.splitHero .heroLeft {
    padding: 60px 16px 40px;
  }
  .rndHero.splitHero .heroLeft .heroTitle {
    font-size: 28px;
    line-height: 34px;
    margin-bottom: 40px;
  }
  .rndHero.splitHero .heroIntroPanel {
    padding: 28px 16px;
  }
  .rndHero.splitHero .heroIntroPanel .introText p {
    font-size: 15px;
    line-height: 24px;
  }
  .rndPage .rndInnovationSection {
    padding: 32px 16px 40px;
  }
  .rndPage .rndInnovationSection .innovationWatermark {
    font-size: 32px;
    top: 36px;
    white-space: normal;
    text-align: center;
    width: calc(100% - 32px);
  }
  .rndPage .rndInnovationSection .innovationInner {
    padding-top: 36px;
  }
  .rndPage .rndInnovationSection .innovationBadge {
    width: 160px;
    height: 160px;
  }
  .rndPage .rndInnovationSection .innovationFooter {
    gap: 24px;
  }
  .rndPage .rndInnovationSection .innovationText {
    font-size: 15px;
    line-height: 24px;
  }
  .rndPage .rndJourneySection {
    padding: 32px 16px;
  }
  .rndPage .rndJourneySection .journeyVector {
    display: none;
  }
  .rndPage .rndJourneySection:after {
    display: none;
  }
  .rndPage .rndJourneySection .journeyGrid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .rndPage .rndJourneySection .journeyGrid .journeyLeft .redIcon {
    margin-bottom: 20px;
  }
  .rndPage .rndJourneySection .journeyGrid .journeyLeft .journeyTitle {
    font-size: 26px;
    line-height: 32px;
  }
  .rndPage .rndJourneySection .journeyGrid .journeyVisual {
    max-width: min(220px, 68vw);
    margin: 0 auto;
  }
  .rndPage .rndJourneySection .journeyGrid .journeyVisual .journeyChip {
    transform: rotate(-10deg);
  }
  .rndPage .rndJourneySection .journeyGrid .journeyStep {
    gap: 20px;
    padding-top: 0;
  }
  .rndPage .rndJourneySection .journeyGrid .journeyStep .stepTitle {
    font-size: 26px;
    line-height: 32px;
  }
  .rndPage .rndJourneySection .journeyGrid .journeyStep .stepCircle {
    width: 96px;
    height: 96px;
  }
  .rndPage .rndJourneySection .journeyGrid .journeyStep .stepNum {
    font-size: 30px;
  }
  .rndPage .rndJourneySection .journeyGrid .journeyStep .stepDesc {
    font-size: 15px;
    line-height: 23px;
    max-width: none;
  }
  .rndPage .rndWorkAreasSection .workAreasSticky {
    min-height: auto;
    padding: 32px 16px 40px;
  }
  .rndPage .rndWorkAreasSection .workAreasInner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .rndPage .rndWorkAreasSection .workAreasLeft {
    gap: 24px;
  }
  .rndPage .rndWorkAreasSection .workAreasLeft .workAreasTitle {
    font-size: 24px;
    line-height: 30px;
  }
  .rndPage .rndWorkAreasSection .workAreasLeft .workAreasDesc {
    font-size: 18px;
    line-height: 28px;
    max-width: none;
  }
  .rndPage .rndWorkAreasSection .workAreasViewport {
    --row-h-sm: 72px;
    --row-h-lg: 210px;
    --row-h-md: 160px;
    --line-x: 40px;
    overflow: visible;
  }
  .rndPage .rndWorkAreasSection .workAreaConnectorTop {
    height: 36px;
    transform: translate(8px, -50%);
  }
  .rndPage .rndWorkAreasSection .workAreaConnectorBot {
    height: 88px;
    transform: translate(8px, -50%);
  }
  .rndPage .rndWorkAreasSection .workAreaItem {
    padding-right: 0;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 16px;
    align-items: flex-start;
  }
  .rndPage .rndWorkAreasSection .workAreaItem .areaNo {
    font-size: 28px;
  }
  .rndPage .rndWorkAreasSection .workAreaItem .areaName {
    font-size: 14px;
    line-height: 20px;
    min-width: 0;
  }
  .rndPage .rndWorkAreasSection .workAreaItem .areaBody {
    gap: 12px;
    width: 100%;
  }
  .rndPage .rndWorkAreasSection .workAreaItem:not(.active) .areaIcon {
    display: none;
  }
  .rndPage .rndWorkAreasSection .workAreaItem.active {
    padding-top: 4px;
  }
  .rndPage .rndWorkAreasSection .workAreaItem.active .areaNo {
    font-size: 72px;
  }
  .rndPage .rndWorkAreasSection .workAreaItem.active .areaName {
    font-size: 20px;
    line-height: 26px;
  }
  .rndPage .rndWorkAreasSection .workAreaItem.active .areaBody {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .rndPage .rndWorkAreasSection .workAreaItem.active .areaIcon {
    align-self: flex-start;
  }
  .rndPage .rndWorkAreasSection .workAreaItem .areaIcon {
    width: 72px;
    height: 72px;
    border-width: 3px;
  }
  .rndPage .rndWorkAreasSection .workAreaItem .areaIcon img {
    width: 34px;
  }
  .rndPage .rndWorkAreasSection .workAreaItem .areaIcon::after {
    width: 44px;
    height: 44px;
    filter: blur(24px);
  }
  .rndPage .productionTechSection.type2 .techInner .techLeft {
    padding: 32px 16px;
  }
  .rndPage .productionTechSection.type2 .techInner .techLeft .redIcon {
    margin-top: 24px;
  }
  .rndPage .productionTechSection.type2 .techInner .techLeft .techTitle {
    font-size: 28px;
    line-height: 34px;
    max-width: none;
  }
  .rndPage .productionTechSection.type2 .techInner .techLeft .techVisuals {
    order: 3;
    position: relative;
    right: auto;
    left: auto;
    bottom: auto;
    transform: none;
    width: 100%;
    height: auto;
    margin: 28px 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .rndPage .productionTechSection.type2 .techInner .techLeft .techVisuals .techPress {
    width: min(240px, 78%);
    max-height: 200px;
    object-fit: contain;
  }
  .rndPage .productionTechSection.type2 .techInner .techRight {
    padding: 32px 16px;
  }
  .rndPage .productionTechSection.type2 .techInner .techRight .techText {
    font-size: 18px;
    line-height: 28px;
  }
  .rndPage .productionTechSection.type2 .techInner .techRight .techVector {
    left: 16px;
    right: 16px;
    width: calc(100% - 32px);
    height: 140px;
  }
}
@media screen and (min-width: 576px) and (max-width: 768px) {
  .rndPage .rndInnovationSection {
    padding: 48px 32px 56px;
  }
  .rndPage .rndInnovationSection .innovationWatermark {
    font-size: 56px;
  }
  .rndPage .rndInnovationSection .innovationBadge {
    width: 240px;
    height: 240px;
  }
  .rndPage .rndInnovationSection .innovationText {
    font-size: 18px;
    line-height: 28px;
  }
  .rndPage .rndJourneySection .journeyVector {
    display: none;
  }
  .rndPage .rndJourneySection:after {
    display: none;
  }
  .rndPage .rndJourneySection .journeyGrid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .rndPage .rndJourneySection .journeyGrid .journeyLeft .journeyTitle {
    font-size: 30px;
    line-height: 36px;
  }
  .rndPage .rndJourneySection .journeyGrid .journeyVisual {
    max-width: min(260px, 52vw);
    margin: 0 auto;
  }
  .rndPage .rndJourneySection .journeyGrid .journeyStep {
    padding-top: 0;
  }
  .rndPage .rndJourneySection .journeyGrid .journeyStep .stepTitle {
    font-size: 30px;
    line-height: 36px;
  }
  .rndPage .rndJourneySection .journeyGrid .journeyStep .stepCircle {
    width: 108px;
    height: 108px;
  }
  .rndPage .rndJourneySection .journeyGrid .journeyStep .stepDesc {
    font-size: 16px;
    line-height: 25px;
    max-width: none;
  }
  .rndPage .rndWorkAreasSection .workAreasSticky {
    padding: 48px 32px 56px;
  }
  .rndPage .rndWorkAreasSection .workAreasInner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .rndPage .rndWorkAreasSection .workAreasLeft {
    gap: 32px;
  }
  .rndPage .rndWorkAreasSection .workAreasLeft .workAreasDesc {
    font-size: 24px;
    line-height: 34px;
    max-width: none;
  }
  .rndPage .rndWorkAreasSection .workAreasViewport {
    --row-h-sm: 96px;
    --row-h-lg: 260px;
    --row-h-md: 200px;
    --line-x: 56px;
    overflow: visible;
  }
  .rndPage .rndWorkAreasSection .workAreaItem {
    padding-right: 0;
    grid-template-columns: 100px minmax(0, 1fr);
    gap: 24px;
    align-items: flex-start;
  }
  .rndPage .rndWorkAreasSection .workAreaItem .areaName {
    min-width: 0;
  }
  .rndPage .rndWorkAreasSection .workAreaItem:not(.active) .areaIcon {
    display: none;
  }
  .rndPage .rndWorkAreasSection .workAreaItem.active {
    padding-top: 6px;
  }
  .rndPage .rndWorkAreasSection .workAreaItem.active .areaBody {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
  }
  .rndPage .rndWorkAreasSection .workAreaItem.active .areaIcon {
    align-self: flex-start;
  }
  .rndPage .rndWorkAreasSection .workAreaItem.active .areaNo {
    font-size: clamp(88px, 14vw, 120px);
  }
  .rndPage .rndWorkAreasSection .workAreaItem.active .areaName {
    font-size: 28px;
    line-height: 34px;
  }
  .rndPage .rndWorkAreasSection .workAreaItem .areaIcon {
    width: 100px;
    height: 100px;
  }
  .rndPage .rndWorkAreasSection .workAreaItem .areaIcon img {
    width: 42px;
  }
  .rndPage .productionTechSection.type2 .techInner .techLeft {
    padding: 48px 32px;
  }
  .rndPage .productionTechSection.type2 .techInner .techLeft .techTitle {
    font-size: 34px;
    line-height: 40px;
  }
  .rndPage .productionTechSection.type2 .techInner .techLeft .techVisuals {
    order: 3;
    position: relative;
    right: auto;
    left: auto;
    bottom: auto;
    transform: none;
    width: 100%;
    height: auto;
    margin: 32px 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .rndPage .productionTechSection.type2 .techInner .techLeft .techVisuals .techPress {
    width: min(280px, 72%);
    max-height: 220px;
    object-fit: contain;
  }
  .rndPage .productionTechSection.type2 .techInner .techRight {
    padding: 48px 32px;
  }
  .rndPage .productionTechSection.type2 .techInner .techRight .techText {
    font-size: 22px;
    line-height: 32px;
  }
}
@media screen and (min-width: 768px) and (max-width: 992px) {
  .rndHero.splitHero .heroLeft,
  .rndHero.splitHero .heroIntroPanel {
    min-height: 480px;
  }
  .rndHero.splitHero .heroIntroPanel .introText p {
    font-size: 20px;
    line-height: 28px;
  }
  .rndPage .rndInnovationSection {
    padding: 56px 48px 64px;
  }
  .rndPage .rndInnovationSection .innovationText {
    font-size: 20px;
    line-height: 30px;
  }
  .rndPage .rndJourneySection .journeyGrid .journeyLeft .journeyTitle {
    font-size: 36px;
    line-height: 40px;
  }
  .rndPage .rndJourneySection .journeyGrid .journeyStep .stepTitle {
    font-size: 36px;
    line-height: 40px;
  }
  .rndPage .rndWorkAreasSection .workAreasSticky {
    padding: 56px 48px 64px;
    min-height: auto;
  }
  .rndPage .rndWorkAreasSection .workAreasInner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .rndPage .rndWorkAreasSection .workAreasLeft {
    gap: 48px;
  }
  .rndPage .rndWorkAreasSection .workAreasLeft .workAreasDesc {
    font-size: 28px;
    line-height: 38px;
  }
  .rndPage .rndWorkAreasSection .workAreasViewport {
    --row-h-sm: 108px;
    --row-h-lg: 260px;
    --row-h-md: 220px;
    --line-x: 80px;
  }
  .rndPage .rndWorkAreasSection .workAreaItem {
    padding-right: 60px;
    grid-template-columns: 160px minmax(0, 1fr);
    gap: 32px;
  }
  .rndPage .rndWorkAreasSection .workAreaItem.active .areaNo {
    font-size: clamp(100px, 11vw, 150px);
  }
  .rndPage .rndWorkAreasSection .workAreaItem.active .areaName {
    font-size: 32px;
    line-height: 38px;
  }
  .rndPage .productionTechSection.type2 .techInner .techLeft {
    padding: 64px 40px 120px;
  }
  .rndPage .productionTechSection.type2 .techInner .techLeft .techTitle {
    font-size: 36px;
    line-height: 42px;
  }
  .rndPage .productionTechSection.type2 .techInner .techRight {
    padding: 64px 48px;
  }
  .rndPage .productionTechSection.type2 .techInner .techRight .techText {
    font-size: 24px;
    line-height: 34px;
  }
}
@media screen and (min-width: 993px) and (max-width: 1200px) {
  .rndPage .rndWorkAreasSection .workAreasLeft .workAreasDesc {
    font-size: 32px;
    line-height: 42px;
  }
  .rndPage .rndWorkAreasSection .workAreaItem.active .areaName {
    font-size: 36px;
    line-height: 40px;
  }
  .rndPage .productionTechSection.type2 .techInner .techRight .techText {
    font-size: 26px;
    line-height: 38px;
  }
}
@media (max-width: 1599.98px) {
  .rndPage .rndJourneySection .journeyGrid {
    grid-template-columns: 1fr;
  }
  .rndPage .rndJourneySection .journeyGrid .journeyVisual {
    margin: 0 auto;
  }
  .rndPage .rndJourneySection .journeyGrid .journeyStep {
    display: flex;
    flex-direction: column;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .rndPage .rndWorkAreasSection .workAreasInner {
    grid-template-columns: 1fr;
  }
  .rndPage .rndWorkAreasSection .workAreasViewport {
    overflow: visible;
  }
  .rndPage .rndWorkAreasSection .workAreaItem:not(.active) .areaIcon {
    display: none;
  }
  .rndPage .rndWorkAreasSection .workAreaItem.active .areaBody {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
@media screen and (min-width: 1600px) {
  .contactPage .contactFaqSection .faqList {
    margin-top: 190px;
  }
}
@media screen and (max-width: 1599px) {
  .contactHero.productionHero .heroLeft .heroTitle {
    font-size: 48px;
    line-height: 52px;
  }
  .contactPage .contactMapSection .contactMapInner {
    grid-template-columns: 1fr;
  }
  .contactPage .contactMapSection .contactInfoStack {
    flex-direction: row;
    align-items: stretch;
    gap: 10px;
  }
  .contactPage .contactMapSection .contactInfoCard,
  .contactPage .contactMapSection .contactMessageCard {
    flex: 1;
    min-width: 0;
    width: auto;
  }
  .contactPage .contactMapSection .contactInfoCard {
    padding: 40px 32px;
    gap: 24px;
    align-items: flex-start;
  }
  .contactPage .contactMapSection .contactMessageCard {
    padding: 40px 32px;
    gap: 24px;
    align-items: flex-start;
  }
  .contactPage .contactMapSection .contactMessageCard .messageText {
    max-width: none;
  }
  .contactPage .contactFormSection .contactFormInner {
    grid-template-columns: 1fr;
  }
  .contactPage .contactFormSection .formIntro,
  .contactPage .contactFormSection .formPanel {
    min-height: auto;
  }
  .contactPage .contactFormSection .formIntro {
    gap: 32px;
    padding: 48px 40px 56px;
  }
  .contactPage .contactFormSection .contactArea {
    padding: 48px 40px 64px;
  }
  .contactPage .contactFormSection .contactArea .contactFormAlert {
    margin-bottom: 24px;
    padding: 16px 18px;
    font-size: 14px;
  }
  .contactPage .contactFormSection .contactArea .dropdownSeparator {
    width: calc(100% + 80px);
    margin-left: -40px;
    margin-right: -40px;
  }
  .contactPage .contactFormSection .contactArea .dropdownSeparator .separatorPill {
    left: 40px;
  }
  .contactPage .contactFormSection .contactArea .dropdownSeparator .bgIllustration {
    right: 40px;
    max-height: 90px;
  }
  .contactPage .contactFormSection .contactArea .filterSubmitBtn {
    margin-top: 20px;
  }
  .contactPage .contactFaqSection {
    padding: 48px 40px 80px;
  }
  .contactPage .contactFaqSection .faqInner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .contactPage .contactFaqSection .faqIntro {
    gap: 32px;
  }
  .contactPage .contactFaqSection .faqList {
    margin-top: 0;
  }
}
@media screen and (max-width: 992px) {
  .contactPage .contactMapSection .contactInfoStack {
    flex-direction: column;
  }
  .contactPage .contactMapSection .contactInfoCard .infoColumns {
    grid-template-columns: 1fr;
  }
  .contactPage .contactFormSection .contactArea .filterGrid {
    grid-template-columns: 1fr;
  }
  .contactPage .contactFormSection .contactArea .filterField {
    height: 52px;
    border-radius: 10px;
  }
  .contactPage .contactFormSection .contactArea .filterField.selectField .select2-container.filterModalSelect .select2-selection--single {
    height: 52px;
  }
  .contactPage .contactFormSection .contactArea .filterField.selectField .select2-container.filterModalSelect .select2-selection__rendered {
    line-height: 52px;
    font-size: 14px;
    padding-left: 16px;
    padding-right: 46px;
  }
  .contactPage .contactFormSection .contactArea .filterField.selectField .select2-container.filterModalSelect .select2-selection__arrow {
    width: 34px;
    height: 34px;
    right: 8px;
    top: 9px;
    border-radius: 8px;
  }
  .contactPage .contactFormSection .contactArea .filterField.inputField .filterInput {
    padding: 14px 16px;
    font-size: 14px;
  }
  .contactPage .contactFormSection .contactArea .filterField.inputField.textareaField {
    grid-column: 1 / -1;
    min-height: 52px;
  }
  .contactPage .contactFormSection .contactArea .filterField.inputField.textareaField .filterInput {
    min-height: 140px;
    height: auto;
    padding: 16px;
  }
  .contactPage .contactFormSection .contactArea .filterSubmitBtn {
    width: 100%;
    max-width: none;
    height: 52px;
    margin-top: 10px;
    font-size: 16px;
    grid-column: 1/-1;
  }
  .contactPage .contactFormSection .contactArea .dropdownSeparator .bgIllustration {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .contactHero.productionHero .heroLeft .heroTitle {
    font-size: 40px;
    line-height: 46px;
  }
  .contactPage .contactMapSection .mapVisual {
    min-height: 360px;
  }
  .contactPage .contactMapSection .mapVisual .mapImg {
    min-height: 360px;
  }
  .contactPage .contactMapSection .mapVisual .mapDirectionsBtn {
    left: 24px;
    bottom: 24px;
    height: 72px;
  }
  .contactPage .contactMapSection .contactInfoCard {
    padding: 32px 24px;
    gap: 20px;
  }
  .contactPage .contactMapSection .contactMessageCard {
    padding: 32px 24px;
    gap: 20px;
  }
  .contactPage .contactFormSection .formIntro {
    padding: 36px 28px 44px;
  }
  .contactPage .contactFormSection .formIntro .formLead {
    font-size: 28px;
    line-height: 34px;
    max-width: none;
  }
  .contactPage .contactFormSection .contactArea {
    padding: 36px 28px 48px;
  }
  .contactPage .contactFormSection .contactArea .dropdownHeader .dropdownTitle {
    font-size: 26px;
    line-height: 32px;
  }
  .contactPage .contactFormSection .contactArea .dropdownSeparator {
    width: calc(100% + 56px);
    margin-left: -28px;
    margin-right: -28px;
    height: 64px;
    margin-bottom: 28px;
  }
  .contactPage .contactFormSection .contactArea .dropdownSeparator .separatorPill {
    left: 28px;
  }
  .contactPage .contactFormSection .contactArea .dropdownSeparator .bgIllustration {
    right: 28px;
    max-height: 72px;
  }
  .contactPage .contactFaqSection {
    padding: 40px 28px 64px;
  }
  .contactPage .contactFaqSection .faqIntro .faqTitle {
    font-size: 28px;
    line-height: 36px;
  }
  .contactPage .contactFaqSection .faqIntro .faqDesc {
    font-size: 22px;
    line-height: 30px;
    max-width: none;
  }
}
@media screen and (max-width: 575px) {
  .contactHero.fullHero .heroLeft .heroSubtitle,
  .documentsHero.fullHero .heroLeft .heroSubtitle,
  .partnershipHero.fullHero .heroLeft .heroSubtitle,
  .blogHero.fullHero .heroLeft .heroSubtitle {
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 32px;
  }
  .contactHero.productionHero .heroLeft .heroTitle {
    font-size: 28px;
    line-height: 34px;
  }
  .contactHero.productionHero .heroRight {
    min-height: 220px;
  }
  .contactHero.productionHero .heroRight .heroBg {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .contactHero.productionHero .heroRight:after {
    width: 100%;
  }
  .contactPage .contactMapSection {
    padding: 0 8px;
  }
  .contactPage .contactMapSection .contactMapInner {
    gap: 8px;
  }
  .contactPage .contactMapSection .mapVisual {
    min-height: 240px;
  }
  .contactPage .contactMapSection .mapVisual .mapImg {
    min-height: 240px;
    aspect-ratio: auto;
  }
  .contactPage .contactMapSection .mapVisual .mapPin {
    width: 28px;
  }
  .contactPage .contactMapSection .mapVisual .mapDirectionsBtn {
    left: 16px;
    bottom: 16px;
    width: min(259px, 100% - 32px);
    height: 56px;
  }
  .contactPage .contactMapSection .mapVisual .mapDirectionsBtn .directionsLabel {
    font-size: 14px;
    line-height: 18px;
    padding: 0 10px;
  }
  .contactPage .contactMapSection .mapVisual .mapDirectionsBtn .directionsIcon {
    flex: 0 0 52px;
  }
  .contactPage .contactMapSection .mapVisual .mapDirectionsBtn .directionsIcon .directionArrow {
    width: 18px;
  }
  .contactPage .contactMapSection .contactInfoCard {
    padding: 24px 20px;
    gap: 16px;
  }
  .contactPage .contactMapSection .contactMessageCard {
    padding: 24px 20px;
    gap: 16px;
  }
  .contactPage .contactMapSection .contactMessageCard .messageText {
    font-size: 16px;
    line-height: 24px;
  }
  .contactPage .contactFormSection {
    padding: 0 8px;
  }
  .contactPage .contactFormSection .contactFormInner {
    gap: 8px;
  }
  .contactPage .contactFormSection .formIntro {
    padding: 28px 16px;
    gap: 24px;
  }
  .contactPage .contactFormSection .formIntro .formLead {
    font-size: 22px;
    line-height: 30px;
  }
  .contactPage .contactFormSection .contactArea {
    padding: 28px 16px 36px;
    border-radius: 15px;
  }
  .contactPage .contactFormSection .contactArea .dropdownHeader {
    max-width: none;
  }
  .contactPage .contactFormSection .contactArea .dropdownHeader .dropdownTitle {
    font-size: 22px;
    line-height: 28px;
  }
  .contactPage .contactFormSection .contactArea .dropdownSeparator {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    height: 56px;
    margin-bottom: 24px;
  }
  .contactPage .contactFormSection .contactArea .dropdownSeparator .separatorPill {
    left: 16px;
  }
  .contactPage .contactFaqSection {
    padding: 28px 16px 48px;
  }
  .contactPage .contactFaqSection .faqInner {
    gap: 24px;
  }
  .contactPage .contactFaqSection .faqIntro {
    gap: 24px;
  }
  .contactPage .contactFaqSection .faqIntro .faqTitle {
    font-size: 24px;
    line-height: 30px;
  }
  .contactPage .contactFaqSection .faqIntro .faqDesc {
    font-size: 16px;
    line-height: 26px;
  }
  .contactPage .contactFaqSection .faqList {
    margin-top: 0;
    padding: 4px 16px;
    border-radius: 12px;
  }
  .contactPage .contactFaqSection .faqItem .faqQuestion {
    font-size: 16px;
    line-height: 24px;
    padding: 20px 0;
    gap: 16px;
  }
  .contactPage .contactFaqSection .faqItem .faqToggle {
    width: 36px;
    height: 36px;
    border-radius: 8px;
  }
  .contactPage .contactFaqSection .faqItem .faqToggle::after {
    width: 11px;
    height: 10px;
  }
  .contactPage .contactFaqSection .faqItem .faqAnswer p {
    font-size: 15px;
    line-height: 24px;
    padding-bottom: 20px;
  }
}
@media screen and (min-width: 769px) and (max-width: 992px) {
  .contactPage .contactFormSection .formIntro .formLead {
    font-size: 28px;
    line-height: 34px;
  }
  .contactPage .contactFaqSection .faqIntro .faqDesc {
    font-size: 22px;
    line-height: 30px;
  }
}
/* ============================================================
   DOCUMENTS PAGE — RESPONSIVE
   ============================================================ */
/* ---------- Large desktop (<1600px) ---------- */
@media screen and (max-width: 1599px) {
  .documentsHero.productionHero .heroLeft {
    max-width: 760px;
  }
  .documentsHero.productionHero .heroLeft .heroTitle {
    font-size: 48px;
    line-height: 52px;
  }
  .documentsPage .documentsCatalogSection {
    padding: 90px 0 110px;
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .documentsPage .documentsCatalogSection .catalogHeader {
    padding: 0 16px;
  }
  .documentsPage .documentsCatalogSection .catalogHeader .catalogTitle {
    margin-bottom: 40px;
    font-size: 48px;
    line-height: 52px;
  }
  .documentsPage .documentsCatalogSection .catalogHeader .catalogIcon {
    margin-bottom: 40px;
  }
  .documentsPage .documentsCatalogSection .catalogHeader .catalogDesc {
    max-width: 720px;
  }
  .documentsPage .documentsCatalogSection .catalogGrid {
    padding: 0 16px;
  }
  .documentsPage .documentsSearchSection {
    margin-bottom: 120px;
  }
  .documentsPage .documentsSearchSection .searchInner {
    grid-template-columns: 1fr;
    column-gap: 0;
    gap: 40px;
    min-height: auto;
    padding: 70px 60px 90px;
  }
  .documentsPage .documentsSearchSection .searchIntro .searchTitle {
    margin-top: 40px;
  }
  .documentsPage .documentsSearchSection .searchForm {
    margin-top: 0;
    max-width: none;
  }
  .documentsPage .documentsSearchSection .searchWatermark,
  .documentsPage .documentsSearchSection .searchSeal {
    display: none;
  }
}
/* ---------- Tablet landscape (<=lg / 992px) ---------- */
@media screen and (max-width: 992px) {
  .documentsPage .documentsCatalogSection {
    padding: 60px 0 70px;
    gap: 32px;
  }
  .documentsPage .documentsCatalogSection .catalogGrid {
    grid-template-columns: 1fr;
  }
  .documentsPage .documentsSearchSection {
    margin-bottom: 80px;
  }
  .documentsPage .documentsSearchSection .searchInner {
    padding: 48px 32px 60px;
  }
  .documentsPage .documentsSearchSection .searchIntro .searchTitle {
    font-size: 28px;
    line-height: 34px;
    margin: 28px 0 20px;
  }
  .documentsPage .documentsSearchSection .searchIntro .searchDesc {
    font-size: 20px;
    line-height: 28px;
  }
  .documentsPage .documentsSearchSection .searchField {
    height: 76px;
    padding: 0 24px 0 28px;
    gap: 10px;
  }
  .documentsPage .documentsSearchSection .searchField .searchPrefix {
    font-size: 26px;
    line-height: 30px;
  }
  .documentsPage .documentsSearchSection .searchField:focus-within, .documentsPage .documentsSearchSection .searchField:has(input:not(:placeholder-shown)) {
    padding-left: 24px;
  }
  .documentsPage .documentsSearchSection .searchField input {
    font-size: 16px;
  }
  .documentsPage .documentsSearchSection .searchField input::placeholder {
    font-size: 16px;
  }
}
/* ---------- Tablet portrait (<=md / 768px) ---------- */
@media screen and (max-width: 768px) {
  .documentsPage .documentsCatalogSection {
    padding: 48px 0 56px;
  }
  .documentsPage .documentsCatalogSection .catalogHeader .catalogTitle {
    font-size: 40px;
    line-height: 46px;
    margin-bottom: 28px;
  }
  .documentsPage .documentsCatalogSection .catalogHeader .catalogIcon {
    margin-bottom: 28px;
  }
  .documentsPage .documentsCatalogSection .catalogHeader .catalogDesc {
    font-size: 18px;
    line-height: 26px;
  }
  .documentsPage .documentsCatalogSection .catalogCard {
    height: auto;
    min-height: 0;
    padding-right: 40px;
  }
  .documentsPage .documentsCatalogSection .catalogCard .catalogCardBody {
    padding: 32px 20px 32px 32px;
    gap: 28px;
  }
  .documentsPage .documentsCatalogSection .catalogCard .catalogCardImage {
    max-width: 220px;
  }
}
/* ---------- Mobile (<sm / 576px) ---------- */
@media screen and (max-width: 575px) {
  .documentsHero.productionHero .heroLeft .heroTitle {
    font-size: 28px;
    line-height: 34px;
    margin-bottom: 24px;
  }
  .documentsHero.productionHero .heroLeft .heroFilterBar {
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
  }
  .documentsHero.productionHero .heroLeft .heroFilterBar .heroFilterSelect {
    max-width: none;
    flex: 1;
    min-width: 0;
  }
  .documentsHero.productionHero .heroLeft .heroTag {
    padding-top: 32px;
  }
  .documentsHero.productionHero .heroRight {
    min-height: 220px;
  }
  .documentsHero.productionHero .heroRight .heroBg {
    object-position: center;
  }
  .documentsHero.productionHero .heroRight:after {
    width: 100%;
  }
  .documentsPage .documentsCatalogSection {
    padding: 32px 0 40px;
    gap: 24px;
  }
  .documentsPage .documentsCatalogSection .catalogHeader {
    padding: 0 8px;
  }
  .documentsPage .documentsCatalogSection .catalogHeader .catalogTitle {
    font-size: 28px;
    line-height: 34px;
    margin-bottom: 20px;
  }
  .documentsPage .documentsCatalogSection .catalogHeader .catalogIcon {
    width: 44px;
    height: auto;
    margin-bottom: 20px;
  }
  .documentsPage .documentsCatalogSection .catalogHeader .catalogDesc {
    font-size: 16px;
    line-height: 26px;
  }
  .documentsPage .documentsCatalogSection .catalogGrid {
    padding: 0 8px;
    gap: 8px;
  }
  .documentsPage .documentsCatalogSection .catalogCard {
    flex-direction: column;
    align-items: stretch;
    padding-right: 0;
  }
  .documentsPage .documentsCatalogSection .catalogCard .catalogCardImage {
    order: -1;
    width: 100%;
    margin-top: 0;
    padding: 20px 20px 0;
  }
  .documentsPage .documentsCatalogSection .catalogCard .catalogCardBody {
    padding: 24px 20px 28px;
    gap: 20px;
  }
  .documentsPage .documentsSearchSection {
    margin-bottom: 40px;
    padding: 0 8px;
  }
  .documentsPage .documentsSearchSection .searchInner {
    padding: 32px 16px;
    gap: 24px;
  }
  .documentsPage .documentsSearchSection .searchIntro .searchTitle {
    font-size: 24px;
    line-height: 30px;
    margin: 24px 0 18px;
  }
  .documentsPage .documentsSearchSection .searchIntro .searchDesc {
    font-size: 16px;
    line-height: 26px;
  }
  .documentsPage .documentsSearchSection .searchField {
    height: 64px;
    padding: 0 16px 0 20px;
    gap: 8px;
  }
  .documentsPage .documentsSearchSection .searchField .searchPrefix {
    font-size: 20px;
    line-height: 24px;
  }
  .documentsPage .documentsSearchSection .searchField:focus-within, .documentsPage .documentsSearchSection .searchField:has(input:not(:placeholder-shown)) {
    padding-left: 18px;
  }
  .documentsPage .documentsSearchSection .searchField input {
    font-size: 15px;
  }
  .documentsPage .documentsSearchSection .searchField input::placeholder {
    font-size: 15px;
  }
  .documentsPage .documentsSearchSection .searchField .searchSubmit {
    width: 20px;
    height: 20px;
  }
  .documentsPage .documentsSearchSection .searchField .searchSubmit svg {
    width: 20px;
    height: 20px;
  }
}
/* ============================================================
   PARTNERSHIP PAGE — RESPONSIVE
   ============================================================ */
/* ---------- Large desktop (<1600px) ---------- */
@media screen and (max-width: 1599px) {
  .partnershipHero.productionHero .heroLeft .heroTitle {
    font-size: 48px;
    line-height: 52px;
  }
  .partnershipPage .partnershipIntroSection .introText,
  .partnershipPage .partnershipClosingSection .introText {
    font-size: 26px;
    line-height: 38px;
  }
  .partnershipPage .partnershipClosingSection .introCard {
    padding: 56px 48px 60px;
  }
  .partnershipPage {
    /* Vision grid — left (globe) card */
  }
  .partnershipPage .visionCardsArea .visionCard.leftCard .cardTop {
    height: 480px;
  }
  .partnershipPage .visionCardsArea .visionCard.leftCard .cardTop .title {
    padding: 56px 48px;
    gap: 36px;
  }
  .partnershipPage .visionCardsArea .visionCard.leftCard .cardTop .title h3 {
    font-size: 30px;
  }
  .partnershipPage .visionCardsArea .visionCard.leftCard .cardBottom {
    padding: 44px 48px 50px;
  }
  .partnershipPage .visionCardsArea .visionCard.leftCard .cardBottom p {
    font-size: 18px;
    line-height: 25px;
  }
  .partnershipPage .visionCardsArea {
    /* Vision grid — partners card */
  }
  .partnershipPage .visionCardsArea .partnersCard {
    padding: 56px 48px 60px;
  }
  .partnershipPage .visionCardsArea .partnersCard .redIcon {
    margin-bottom: 40px;
  }
  .partnershipPage .visionCardsArea .partnersCard .partnersTitle {
    font-size: 30px;
    line-height: 38px;
  }
  .partnershipPage .visionCardsArea .partnersCard .partnersLead {
    font-size: 20px;
    line-height: 28px;
  }
  .partnershipPage {
    /* Form */
  }
  .partnershipPage .partnershipFormSection .partnershipFormInner {
    padding: 56px 48px 60px;
  }
  .partnershipPage .partnershipFormSection .formDecor {
    right: 48px;
    top: 48px;
  }
  .partnershipPage .partnershipFormSection .formTitle {
    font-size: 32px;
    line-height: 40px;
  }
  .partnershipPage .partnershipFormSection .formSeparator {
    width: calc(100% + 96px);
    margin-left: -48px;
    margin-right: -48px;
  }
  .partnershipPage .partnershipFormSection .formSeparator .separatorPill {
    left: 80px;
  }
  .partnershipPage .partnershipFormSection .partnershipForm {
    padding-right: 0;
  }
}
/* ---------- Tablet landscape (<=lg / 992px) ---------- */
@media screen and (max-width: 992px) {
  .partnershipHero.productionHero .heroLeft .heroTitle {
    font-size: 40px;
    line-height: 46px;
  }
  .partnershipPage {
    /* Stack the two vision cards */
  }
  .partnershipPage .visionCardsArea .visionGrid {
    grid-template-columns: 1fr;
  }
  .partnershipPage .visionCardsArea .visionCard.leftCard .cardTop {
    height: 440px;
  }
  .partnershipPage .visionCardsArea .visionCard.leftCard .cardTop .title {
    padding: 44px 40px;
    gap: 28px;
  }
  .partnershipPage .visionCardsArea .visionCard.leftCard .cardTop .title h3 {
    font-size: 28px;
  }
  .partnershipPage .visionCardsArea .visionCard.leftCard .cardBottom {
    padding: 40px 40px 44px;
  }
  .partnershipPage .visionCardsArea .partnersCard {
    padding: 48px 40px;
  }
  .partnershipPage .visionCardsArea .partnersCard .redIcon {
    margin-bottom: 36px;
  }
  .partnershipPage .visionCardsArea .partnersCard .partnersTitle {
    font-size: 28px;
    line-height: 36px;
  }
  .partnershipPage {
    /* Form — 2 columns */
  }
  .partnershipPage .partnershipFormSection .partnershipFormInner .filterGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .partnershipPage .partnershipFormSection .formTitle {
    font-size: 30px;
    line-height: 38px;
  }
}
/* ---------- Tablet portrait (<=md / 768px) ---------- */
@media screen and (max-width: 768px) {
  .partnershipHero.productionHero .heroLeft .heroTitle {
    font-size: 34px;
    line-height: 40px;
  }
  .partnershipPage .partnershipIntroSection .introText,
  .partnershipPage .partnershipClosingSection .introText {
    font-size: 22px;
    line-height: 32px;
  }
  .partnershipPage .visionCardsArea .visionCard.leftCard .cardTop {
    height: 360px;
  }
  .partnershipPage .visionCardsArea .visionCard.leftCard .cardTop .title {
    padding: 36px 32px;
  }
  .partnershipPage .visionCardsArea .visionCard.leftCard .cardTop .title h3 {
    font-size: 26px;
  }
  .partnershipPage .visionCardsArea .visionCard.leftCard .cardBottom {
    padding: 32px 32px 36px;
  }
  .partnershipPage .visionCardsArea .partnersCard {
    padding: 40px 32px;
  }
  .partnershipPage .visionCardsArea .partnersCard .partnersLead {
    margin-bottom: 36px;
  }
  .partnershipPage .visionCardsArea .partnersCard {
    /* Partner list -> two columns flowing by rows */
  }
  .partnershipPage .visionCardsArea .partnersCard .partnerTypesList {
    grid-auto-flow: row;
    grid-template-rows: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
}
/* ---------- Mobile (<sm / 576px) ---------- */
@media screen and (max-width: 575px) {
  .partnershipHero.productionHero .heroLeft .heroTitle {
    font-size: 28px;
    line-height: 34px;
  }
  .partnershipHero.productionHero .heroRight {
    min-height: 220px;
  }
  .partnershipHero.productionHero .heroRight .heroBg {
    object-position: center;
  }
  .partnershipHero.productionHero .heroRight:after {
    width: 100%;
  }
  .partnershipPage .partnershipIntroSection .introText,
  .partnershipPage .partnershipClosingSection .introText {
    font-size: 18px;
    line-height: 28px;
  }
  .partnershipPage .partnershipClosingSection .introCard {
    padding: 28px 16px;
  }
  .partnershipPage .partnershipClosingSection .introCard .redIcon {
    margin-bottom: 20px;
  }
  .partnershipPage {
    /* Vision cards */
  }
  .partnershipPage .visionCardsArea .visionCard {
    border-radius: 14px;
  }
  .partnershipPage .visionCardsArea .visionCard.leftCard .cardTop {
    height: 300px;
  }
  .partnershipPage .visionCardsArea .visionCard.leftCard .cardTop .title {
    padding: 24px 16px;
    gap: 16px;
  }
  .partnershipPage .visionCardsArea .visionCard.leftCard .cardTop .title h3 {
    font-size: 22px;
    line-height: 28px;
  }
  .partnershipPage .visionCardsArea .visionCard.leftCard .cardBottom {
    padding: 24px 16px 28px;
  }
  .partnershipPage .visionCardsArea .visionCard.leftCard .cardBottom p {
    font-size: 16px;
    line-height: 24px;
  }
  .partnershipPage .visionCardsArea .partnersCard {
    padding: 28px 16px;
  }
  .partnershipPage .visionCardsArea .partnersCard .redIcon {
    margin-bottom: 24px;
  }
  .partnershipPage .visionCardsArea .partnersCard .partnersTitle {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 18px;
  }
  .partnershipPage .visionCardsArea .partnersCard .partnersLead {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 28px;
  }
  .partnershipPage .visionCardsArea .partnersCard .partnerTypesList {
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    grid-template-rows: none;
    gap: 16px;
    padding: 24px 20px;
    background-size: 18px 18px;
  }
  .partnershipPage .visionCardsArea .partnersCard .partnerTypesList li {
    font-size: 16px;
  }
  .partnershipPage {
    /* Form */
  }
  .partnershipPage .partnershipFormSection .partnershipFormInner {
    padding: 28px 16px;
  }
  .partnershipPage .partnershipFormSection .formDecor {
    display: none;
  }
  .partnershipPage .partnershipFormSection .formTitle {
    font-size: 24px;
    line-height: 30px;
  }
  .partnershipPage .partnershipFormSection .formSeparator {
    height: 60px;
    margin: 10px -16px 24px;
    width: calc(100% + 32px);
  }
  .partnershipPage .partnershipFormSection .formSeparator .separatorPill {
    left: 44px;
    top: 30px;
    width: 28px;
    height: 28px;
  }
  .partnershipPage .partnershipFormSection .partnershipFormInner .filterGrid {
    grid-template-columns: 1fr;
  }
  .partnershipPage .partnershipFormSection .filterSubmitBtn {
    width: 100%;
    min-width: 0;
    margin-top: 28px;
  }
}
/* ============================================================
   BLOG & BLOG DETAIL PAGES — RESPONSIVE
   (banner -> components/blog-detail-banner)
   (card grid -> components/blog-card)
   ============================================================ */
/* ---------- Large desktop (<1600px) ---------- */
@media screen and (max-width: 1599px) {
  .blogDetailPage .blogArticle {
    padding: 56px 48px 60px;
  }
  .blogDetailPage .blogArticle .redIcon {
    margin-bottom: 44px;
  }
}
/* ---------- Tablet landscape (<=lg / 992px) ---------- */
@media screen and (max-width: 992px) {
  .blogDetailPage .blogArticle {
    padding: 48px 40px 52px;
  }
  .blogDetailPage .blogArticle .redIcon {
    margin-bottom: 36px;
  }
  .blogDetailPage .blogArticle h2 {
    margin-top: 32px;
  }
}
/* ---------- Tablet portrait (<=md / 768px) ---------- */
@media screen and (max-width: 768px) {
  .blogDetailPage .blogArticle {
    padding: 40px 32px 44px;
  }
  .blogDetailPage .blogArticle h2 {
    font-size: 22px;
    line-height: 30px;
  }
  .blogDetailPage .blogArticle p {
    font-size: 17px;
    line-height: 28px;
  }
}
/* ---------- Mobile (<sm / 576px) ---------- */
@media screen and (max-width: 575px) {
  .blogDetailPage .blogArticle {
    padding: 28px 16px;
  }
  .blogDetailPage .blogArticle .redIcon {
    margin-bottom: 24px;
  }
  .blogDetailPage .blogArticle h2 {
    font-size: 20px;
    line-height: 28px;
    margin: 28px 0 12px;
  }
  .blogDetailPage .blogArticle p {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 18px;
  }
}
/* ============================================================
   404 PAGE — RESPONSIVE
   ============================================================ */
/* ---------- Large desktop (<1600px) ---------- */
@media screen and (max-width: 1599px) {
  .page404Grid {
    min-height: 620px;
  }
  .page404Main {
    min-height: 620px;
  }
  .page404Main .page404MainContent {
    min-height: 620px;
    padding: 80px 56px 100px;
    gap: 72px;
  }
  .page404Main .page404Headline {
    gap: 72px;
  }
  .page404Main .page404Lead {
    font-size: 18px;
    line-height: 28px;
  }
  .page404Main .page404Code {
    font-size: 56px;
    line-height: 56px;
  }
  .page404Main .page404Title {
    font-size: 34px;
    line-height: 44px;
  }
  .page404Side {
    min-height: 620px;
  }
  .page404InfoCard {
    padding: 80px 40px 40px;
  }
  .page404InfoCard .page404InfoText {
    font-size: 32px;
    line-height: 42px;
    padding-left: 32px;
  }
  .page404InfoCard .page404Seal {
    margin-top: 40px;
  }
}
/* ---------- Desktop narrow (lg–xxl / 993–1400px) — sağ kolon dar, butonlar alt alta ---------- */
@media screen and (min-width: 993px) and (max-width: 1400px) {
  .page404Grid {
    grid-template-columns: minmax(0, 1.45fr) minmax(300px, 1fr);
  }
  .page404InfoCard {
    padding: 64px 32px 32px;
  }
  .page404InfoCard .page404InfoText {
    font-size: 28px;
    line-height: 38px;
    padding-left: 24px;
  }
  .page404InfoCard .page404Seal {
    margin-top: 32px;
    width: min(160px, 100%);
  }
  .page404Actions {
    grid-template-columns: 1fr;
  }
  .page404ActionBtn {
    min-height: 96px;
    padding: 20px 20px 20px 24px;
  }
  .page404ActionBtn span:first-child {
    font-size: 16px;
    line-height: 20px;
  }
  .page404ActionBtn .btnArrow {
    width: 62px;
    height: 48px;
  }
}
/* ---------- Tablet landscape (<=lg / 992px) ---------- */
@media screen and (max-width: 992px) {
  .page404Grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .page404Main {
    min-height: 520px;
    background-position: right bottom;
  }
  .page404Main .page404MainContent {
    min-height: 520px;
    padding: 64px 48px 80px;
    gap: 56px;
  }
  .page404Main .page404Headline {
    gap: 56px;
  }
  .page404Main .page404Code {
    font-size: 52px;
    line-height: 52px;
  }
  .page404Main .page404Title {
    font-size: 30px;
    line-height: 40px;
    max-width: 340px;
  }
  .page404Side {
    min-height: 0;
  }
  .page404InfoCard {
    min-height: 0;
    padding: 64px 48px 48px;
  }
  .page404InfoCard .page404InfoText {
    font-size: 28px;
    line-height: 38px;
    padding-left: 24px;
  }
}
/* ---------- Tablet portrait (<=md / 768px) ---------- */
@media screen and (max-width: 768px) {
  .page404Main {
    min-height: 460px;
    background-size: cover;
  }
  .page404Main .page404MainContent {
    min-height: 460px;
    padding: 48px 32px 64px;
    gap: 40px;
  }
  .page404Main .page404Headline {
    gap: 40px;
  }
  .page404Main .page404Lead {
    font-size: 17px;
    line-height: 27px;
  }
  .page404Main .page404Code {
    font-size: 48px;
    line-height: 48px;
    letter-spacing: -1px;
  }
  .page404Main .page404Title {
    font-size: 26px;
    line-height: 34px;
    max-width: 300px;
  }
  .page404InfoCard {
    padding: 48px 32px 32px;
  }
  .page404InfoCard .page404InfoText {
    font-size: 24px;
    line-height: 32px;
    padding-left: 16px;
  }
  .page404InfoCard .page404Seal {
    margin-top: 32px;
    width: min(160px, 100%);
  }
  .page404ActionBtn {
    min-height: 96px;
    padding: 20px 20px 20px 24px;
  }
  .page404ActionBtn span:first-child {
    font-size: 16px;
  }
  .page404ActionBtn .btnArrow {
    width: 62px;
    height: 48px;
  }
}
/* ---------- Mobile (<sm / 576px) ---------- */
@media screen and (max-width: 575px) {
  .page404Section {
    margin: 8px;
  }
  .page404Main {
    min-height: 400px;
    background-position: center bottom;
  }
  .page404Main .page404MainContent {
    min-height: 400px;
    padding: 28px 16px 48px;
    gap: 32px;
  }
  .page404Main .page404Headline {
    gap: 28px;
  }
  .page404Main .page404Lead {
    font-size: 16px;
    line-height: 26px;
  }
  .page404Main .page404Code {
    font-size: 40px;
    line-height: 40px;
  }
  .page404Main .page404Title {
    font-size: 22px;
    line-height: 30px;
    max-width: none;
  }
  .page404InfoCard {
    padding: 28px 16px 24px;
  }
  .page404InfoCard .page404InfoText {
    font-size: 20px;
    line-height: 28px;
    padding-left: 0;
  }
  .page404InfoCard .page404Seal {
    margin-top: 24px;
    width: min(140px, 100%);
  }
  .page404Actions {
    grid-template-columns: 1fr;
  }
  .page404ActionBtn {
    min-height: 88px;
    padding: 18px 16px 18px 20px;
  }
  .page404ActionBtn span:first-child {
    font-size: 15px;
    line-height: 20px;
  }
  .page404ActionBtn .btnArrow {
    width: 58px;
    height: 46px;
  }
}
/* ============================================================
   COOKIE POLICY — RESPONSIVE
   ============================================================ */
/* ---------- Large desktop (<1600px) ---------- */
@media screen and (max-width: 1599px) {
  .cookiePolicyCard {
    padding: 64px 56px 100px;
  }
  .cookiePolicyGrid {
    grid-template-columns: minmax(240px, 560px) minmax(0, 1fr);
    gap: 40px 72px;
  }
  .cookiePolicySidebar .cookiePolicyDivider {
    margin: 48px 0;
  }
  .cookiePolicySidebar .cookiePolicyTitle {
    font-size: 52px;
    line-height: 56px;
    letter-spacing: -1.04px;
  }
  .cookiePolicyContent {
    padding-top: 48px;
  }
  .cookiePolicyBlock + .cookiePolicyBlock {
    margin-top: 48px;
  }
  .cookiePolicyBlock h2 {
    font-size: 32px;
    line-height: 38px;
  }
}
/* ---------- Desktop narrow (lg–xxl / 993–1400px) ---------- */
@media screen and (min-width: 993px) and (max-width: 1400px) {
  .cookiePolicyGrid {
    grid-template-columns: minmax(220px, 420px) minmax(0, 1fr);
    gap: 32px 48px;
  }
  .cookiePolicySidebar .cookiePolicyDivider {
    margin: 40px 0;
  }
  .cookiePolicySidebar .cookiePolicyTitle {
    font-size: 48px;
    line-height: 52px;
    letter-spacing: -0.96px;
  }
  .cookiePolicyContent {
    padding-top: 40px;
  }
  .cookiePolicyBlock + .cookiePolicyBlock {
    margin-top: 44px;
  }
  .cookiePolicyBlock h2 {
    font-size: 30px;
    line-height: 36px;
    margin-bottom: 20px;
  }
  .cookiePolicyBlock p,
  .cookiePolicyBlock .cookiePolicyList li {
    font-size: 18px;
    line-height: 27px;
  }
  .cookiePolicyBlock .cookiePolicyList li::before {
    font-size: 18px;
    line-height: 27px;
  }
}
/* ---------- Tablet landscape (<=lg / 992px) ---------- */
@media screen and (max-width: 992px) {
  .cookiePolicyCard {
    padding: 48px 40px 80px;
  }
  .cookiePolicyGrid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .cookiePolicySidebar {
    position: static;
  }
  .cookiePolicySidebar .cookiePolicyDivider {
    margin: 40px 0;
  }
  .cookiePolicySidebar .cookiePolicyTitle {
    font-size: 44px;
    line-height: 50px;
    max-width: none;
  }
  .cookiePolicyContent {
    max-width: none;
    padding-top: 0;
  }
  .cookiePolicyBlock + .cookiePolicyBlock {
    margin-top: 48px;
  }
  .cookiePolicyBlock h2 {
    font-size: 28px;
    line-height: 34px;
    margin-bottom: 20px;
  }
  .cookiePolicyBlock p,
  .cookiePolicyBlock .cookiePolicyList li {
    font-size: 18px;
    line-height: 27px;
  }
  .cookiePolicyBlock .cookiePolicyList li::before {
    font-size: 18px;
    line-height: 27px;
  }
}
/* ---------- Tablet portrait (<=md / 768px) ---------- */
@media screen and (max-width: 768px) {
  .cookiePolicyCard {
    padding: 36px 24px 64px;
  }
  .cookiePolicySidebar .cookiePolicyDivider {
    margin: 32px 0;
  }
  .cookiePolicySidebar .cookiePolicyTitle {
    font-size: 36px;
    line-height: 42px;
  }
  .cookiePolicyBlock + .cookiePolicyBlock {
    margin-top: 40px;
  }
  .cookiePolicyBlock h2 {
    font-size: 24px;
    line-height: 30px;
  }
  .cookiePolicyBlock p,
  .cookiePolicyBlock .cookiePolicyList li {
    font-size: 17px;
    line-height: 26px;
  }
  .cookiePolicyBlock .cookiePolicyList li::before {
    font-size: 17px;
    line-height: 26px;
  }
}
/* ---------- Mobile (<sm / 576px) ---------- */
@media screen and (max-width: 575px) {
  .cookiePolicySection {
    margin-top: 4px;
    margin-bottom: 8px;
  }
  .cookiePolicyCard {
    padding: 28px 16px 48px;
    border-radius: 12px;
  }
  .cookiePolicyGrid {
    gap: 32px;
  }
  .cookiePolicySidebar .cookiePolicyUpdate {
    font-size: 14px;
  }
  .cookiePolicySidebar .cookiePolicyDivider {
    margin: 24px 0;
  }
  .cookiePolicySidebar .cookiePolicyTitle {
    font-size: 30px;
    line-height: 36px;
    letter-spacing: -0.6px;
  }
  .cookiePolicyBlock + .cookiePolicyBlock {
    margin-top: 32px;
  }
  .cookiePolicyBlock h2 {
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 16px;
  }
  .cookiePolicyBlock p,
  .cookiePolicyBlock .cookiePolicyList li {
    font-size: 16px;
    line-height: 25px;
  }
  .cookiePolicyBlock .cookiePolicyList li::before {
    font-size: 16px;
    line-height: 25px;
  }
}
/* ============================================================
   MEDIA CENTER — RESPONSIVE
   (desktop base: grid 1fr 300px, image aspect-ratio 300/310)
   ============================================================ */
/* ---------- Large desktop (<1600px) ---------- */
@media screen and (max-width: 1599px) {
  .mediaHero.productionHero .heroLeft .heroTitle {
    font-size: 52px;
    line-height: 56px;
  }
  .mediaCenterDetailPage .mediaGalleryGrid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .mediaCenterPage .mediaCard .mediaCardLink {
    grid-template-columns: minmax(0, 1fr) min(300px, 46%);
  }
  .mediaCenterPage .mediaCard .mediaCardContent {
    padding: 36px 12px 36px clamp(20px, 3.5vw, 56px);
  }
  .mediaCenterPage .mediaCard .mediaCardImage {
    max-width: 100%;
  }
  .mediaCenterPage .mediaCard .mediaCardImage img {
    min-height: 240px;
    max-height: 290px;
  }
}
/* ---------- Desktop narrow (lg–xxl / 993–1400px) ---------- */
@media screen and (min-width: 993px) and (max-width: 1400px) {
  .mediaCenterDetailPage .mediaGalleryGrid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .mediaCenterPage .mediaGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .mediaCenterPage .mediaCard .mediaCardLink {
    grid-template-columns: minmax(0, 1fr) min(280px, 42%);
  }
  .mediaCenterPage .mediaCard .mediaCardContent {
    padding: 32px 12px 32px 28px;
    gap: 20px;
  }
  .mediaCenterPage .mediaCard .mediaCardImage {
    max-width: 100%;
    padding: 11px 11px 11px 0;
  }
  .mediaCenterPage .mediaCard .mediaCardImage img {
    min-height: 230px;
    max-height: 280px;
  }
}
/* ---------- Tablet landscape (<=lg / 992px) — kart dikey ---------- */
@media screen and (max-width: 992px) {
  .mediaHero.productionHero .heroLeft .heroTitle {
    font-size: 44px;
    line-height: 50px;
  }
  .mediaHero.productionHero .heroLeft .scrollDownBtn {
    margin-top: 32px;
  }
  .mediaHeroDetail.productionHero .heroLeft .heroMeta {
    gap: 32px;
  }
  .mediaCenterDetailPage .mediaGalleryGrid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .mediaCenterDetailPage .mediaGallerySection {
    margin-bottom: 56px;
  }
  .mediaCenterPage .mediaGridSection {
    margin-bottom: 56px;
  }
  .mediaCenterPage .mediaGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .mediaCenterPage .mediaCard {
    min-height: 0;
  }
  .mediaCenterPage .mediaCard .mediaCardLink {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    min-height: 0;
  }
  .mediaCenterPage .mediaCard .mediaCardImage {
    order: -1;
    width: 100%;
    max-width: none;
    aspect-ratio: auto;
    margin: 0;
    padding: 11px 11px 0;
  }
  .mediaCenterPage .mediaCard .mediaCardImage img {
    width: 100%;
    height: 240px;
    min-height: 0;
    max-height: none;
  }
  .mediaCenterPage .mediaCard .mediaCardContent {
    justify-content: flex-start;
    padding: 24px 24px 28px;
    gap: 20px;
  }
}
/* ---------- Tablet portrait (<=md / 768px) — tek sütun ---------- */
@media screen and (max-width: 768px) {
  .mediaHero.productionHero .heroLeft .heroSubtitle {
    font-size: 18px;
    line-height: 28px;
  }
  .mediaCenterDetailPage .mediaGalleryGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .mediaCenterDetailPage .mediaGallerySection {
    margin-bottom: 48px;
  }
  .mediaCenterPage .mediaGridSection {
    margin-bottom: 48px;
  }
  .mediaCenterPage .mediaGrid {
    grid-template-columns: 1fr;
  }
  .mediaCenterPage .mediaCard .mediaCardImage img {
    height: 260px;
  }
  .mediaCenterPage .mediaCard .mediaCardContent {
    padding: 28px 24px 32px;
  }
  .mediaCenterPage .mediaCard .mediaCardTitle {
    font-size: 22px;
    line-height: 30px;
  }
}
/* ---------- Mobile (<sm / 576px) ---------- */
@media screen and (max-width: 575px) {
  .mediaHero.productionHero .heroLeft .heroTitle {
    font-size: 32px;
    line-height: 38px;
  }
  .mediaHeroDetail.productionHero .heroLeft .mediaBackBtn {
    width: 48px;
    height: 52px;
    border-radius: 12px;
  }
  .mediaHeroDetail.productionHero .heroLeft .heroMeta {
    gap: 24px;
  }
  .mediaCenterDetailPage .mediaGallerySection {
    padding: 0 8px;
    margin: 4px 0 40px;
  }
  .mediaCenterDetailPage .mediaGalleryGrid {
    gap: 8px;
  }
  .mediaCenterDetailPage .mediaGalleryItem {
    border-radius: 12px;
  }
  .mediaCenterPage .mediaGridSection {
    padding: 0 8px;
    margin: 4px 0 40px;
  }
  .mediaCenterPage .mediaCard {
    border-radius: 12px;
  }
  .mediaCenterPage .mediaCard .mediaCardImage {
    padding: 8px 8px 0;
  }
  .mediaCenterPage .mediaCard .mediaCardImage img {
    height: 200px;
    border-radius: 12px;
  }
  .mediaCenterPage .mediaCard .mediaCardContent {
    padding: 20px 16px 24px;
    gap: 16px;
  }
  .mediaCenterPage .mediaCard .mediaCardTitle {
    font-size: 20px;
    line-height: 28px;
  }
  .mediaCenterPage .mediaCard .mediaCardArrow {
    width: 48px;
    height: 52px;
    border-radius: 12px;
  }
}
