* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Poppins", Arial, "Microsoft YaHei", sans-serif;
  color: #222;
  background: #fff;
  padding-top: 70px;
}

.site-container {
  width: 1200px;
  margin: 0 auto;
}

.site-header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 1000;
  border-top: 1px solid #d6dce7;
  border-bottom: 1px solid #d6dce7;
  background: #f2f5fb;
}

.nav-wrap {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.logo {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 210px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #2762AE;
}

.logo-img {
  display: block;
  max-width: 210px;
  max-height: 50px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.main-nav {
  width: auto;
}

.menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
}

.menu > li {
  position: static;
  line-height: 70px;
}

.menu > li > a {
  text-decoration: none;
  color: #1f2c3f;
  font-size: 18px;
  font-weight: 500;
}

.menu > li > a:hover,
.menu > li.open > a {
  color: #2762AE;
}

.arrow {
  font-size: 8px;
  display: inline-block;
  vertical-align: middle;
  margin-left: 2px;
}

.dropdown {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 70px;
  width: 100%;
  transform: none;
  background: #fff;
  border-top: 1px solid #dfe6ef;
  box-shadow: 0 6px 20px rgba(22, 45, 78, 0.08);
  z-index: 20;
}

.has-dropdown.open .dropdown {
  display: block;
}

.dropdown-products {
  width: 1200px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 30px 24px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px 22px;
}

.p-col h4 {
  margin: 0 0 8px;
  font-size: 16px;
  color: #2762AE;
  font-weight: 700;
  line-height: 18px;
  position: relative;
}

.p-col a {
  display: block;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  line-height: 21px;
}
.p-col h4 a{
  font-size: 16px;
}
.p-col a:hover {
  color: #2762AE;
}

.dropdown-solutions {
  width: 1200px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 22px 44px 30px;
}

.menu > li.normal-dropdown {
  position: relative;
}

.dropdown-common {
  left: 50%;
  right: auto;
  top: 70px;
  width: 220px;
  transform: translateX(-50%);
  border: 1px solid #dfe6ef;
  border-top: 0;
  box-shadow: 0 8px 20px rgba(22, 45, 78, 0.1);
}

.common-dropdown-list {
  padding: 8px 0;
}

.common-dropdown-list a {
  display: block;
  line-height: 38px;
  padding: 0 16px;
  color: #2b3340;
  text-decoration: none;
  white-space: nowrap;
}

.common-dropdown-list a:hover {
  background: #f4f7fc;
  color: #2762AE;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px 34px;
}

.solution-card {
  text-decoration: none;
  color: #2b2b2b;
  text-align: center;
}

.solution-card .thumb {
  display: block;
  height: 76px;
  border-radius: 2px;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #8cc2ff, #4f7db5);
}

.solution-card:hover span:last-child {
  color: #2762AE;
}

.lang {
  font-size: 11px;
  font-weight: 500;
}

.lang-switch {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  line-height: normal;
  display: inline-flex;
  align-items: center;
}

.lang-current {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  background: transparent;
  color: #1f2c3f;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
}

.lang-current i {
  font-size: 16px;
  color: #2762AE;
}

.lang-menu {
  position: absolute;
  left: 0;
  top: calc(100% + 8px);
  min-width: 90px;
  background: #fff;
  border: 1px solid #dfe3ea;
  box-shadow: 0 4px 12px rgba(24, 35, 58, 0.12);
  display: none;
  z-index: 1200;
}

.lang-switch.open .lang-menu {
  display: block;
}

.lang-menu a {
  display: block;
  line-height: 34px;
  padding: 0 12px;
  color: #2a2f39;
  font-size: 13px;
  text-decoration: none;
}

.lang-menu a:hover {
  background: #f4f7fc;
  color: #2762AE;
}

.hero-slider {
  position: relative;
  overflow: hidden;
  background: #eef1f7;
}

.slider-track {
  position: relative;
}

.slide {
  position: relative;
  display: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.slide.is-active {
  display: block;
  opacity: 1;
}

.yake-hero-img {
  display: block;
  width: 100%;
  height: auto;
}

.slide-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.slide-copy {
  position: absolute;
  width: 46%;
  z-index: 2;
}

.slide-copy.is-top-left {
  top: 12%;
  left: 0;
}

.slide-copy.is-top-center {
  top: 12%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.slide-copy.is-top-right {
  top: 12%;
  right: 0;
  text-align: right;
}

.slide-copy.is-middle-left {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.slide-copy.is-middle-center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.slide-copy.is-middle-right {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  text-align: right;
}

.slide-copy.is-bottom-left {
  bottom: 12%;
  left: 0;
}

.slide-copy.is-bottom-center {
  bottom: 12%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.slide-copy.is-bottom-right {
  bottom: 12%;
  right: 0;
  text-align: right;
}

.slide-copy h2 {
  margin: 0 0 18px;
  font-size: 52px;
  line-height: 1.1;
  color: #2762AE;
}

.slide-copy p {
  margin: 0 0 36px;
  color: #222;
  font-size: 24px;
}

.btn-learn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 190px;
  height: 56px;
  border: 1px solid #7d94c6;
  border-radius: 28px;
  color: #2762AE;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
}

.slide-visual {
  position: relative;
  width: 600px;
  height: 330px;
}

.router-shadow {
  position: absolute;
  left: 140px;
  bottom: 20px;
  width: 350px;
  height: 66px;
  background: rgba(108, 124, 153, 0.22);
  border-radius: 50%;
}

.router-body {
  position: absolute;
  left: 160px;
  bottom: 58px;
  width: 320px;
  height: 92px;
  background: linear-gradient(180deg, #3f4653, #222733);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(20, 24, 35, 0.25);
}

.antenna {
  position: absolute;
  bottom: 150px;
  width: 14px;
  background: linear-gradient(180deg, #2f3641, #12161f);
  border-radius: 10px;
}

.antenna.a1 {
  left: 185px;
  height: 190px;
}

.antenna.a2 {
  left: 250px;
  height: 150px;
}

.antenna.a3 {
  right: 170px;
  height: 190px;
}

.antenna.a4 {
  right: 120px;
  height: 170px;
}

.device-pill,
.device-chip {
  position: absolute;
  right: 120px;
  top: 70px;
  width: 330px;
  height: 180px;
  border-radius: 16px;
  background: linear-gradient(135deg, #5a6b86, #272f3e);
  box-shadow: 0 20px 40px rgba(20, 28, 42, 0.25);
}

.device-chip {
  border-radius: 26px;
  background: linear-gradient(135deg, #607798, #2f3f57);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  color: #9aa3b5;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.slider-arrow.prev {
  left: 24px;
}

.slider-arrow.next {
  right: 24px;
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  padding: 6px 10px;
  border-radius: 14px;
  background: rgba(80, 87, 100, 0.35);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
}

.dot.is-active {
  background: #fff;
}

.partner-section {
  background: #fff;
}

.partner-title {
  margin: 0 auto 40px;
  text-align: center;
  color: #2762AE;
  font-size: 32px;
  line-height: 1.2;
  font-weight: 700;
  max-width: 650px;
}

.partner-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  gap: 0;
  height: 360px;
}

.partner-intro {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #6b7283, #313644);
}

.partner-intro-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 19, 31, 0.35), rgba(7, 11, 20, 0.65));
}

.partner-intro-content {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 14px;
  line-height: 1.7;
  padding: 24px 24px 20px;
}

.partner-intro-content p {
  margin: 0 0 10px;
}

.partner-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 36px;
  border-radius: 18px;
  background: linear-gradient(180deg, #2762AE, #2762AE);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  margin-top: 8px;
}

.partner-card {
  position: relative;
  overflow: hidden;
  border-left: 4px solid #ececec;
  background: #cfdbe7;
}

.partner-card:nth-child(3) {
  background: #bfd4e8;
}

.partner-card:nth-child(4) {
  background: #a8ccea;
}

.partner-card-base,
.partner-card-hover {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}

.partner-card-base h4,
.partner-card-hover h4 {
  margin: 18px 0 0;
  font-size: 20px;
  color: #2a2f38;
  font-weight: 300;
}

.partner-card-hover {
  justify-content: flex-start;
  padding-top: 74px;
  background: #2f2f32;
  transform: translateY(100%);
  transition: transform 0.45s ease;
}

.partner-card-hover h4,
.partner-card-hover p {
  color: #fff;
}

.partner-card-hover p {
  margin: 16px 0 0;
  font-size: 14px;
  line-height: 1.7;
}

.partner-card:hover .partner-card-hover {
  transform: translateY(0);
}

.partner-fa {
  font-size: 56px;
  line-height: 1;
  color: #7f8ea4;
}

.products-section {
  background: #fafafa;
}

.products-title {
  margin: 0 0 22px;
  text-align: center;
  color: #2762AE;
  font-size: 46px;
  line-height: 1.2;
  font-weight: 700;
}

.products-grid-2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 22px;
}

.product-subcats-wrap {
  background: #fff;
  border-bottom: 1px solid #eceff4;
}

.product-subcats {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.product-subcats a {
  position: relative;
  display: inline-block;
  padding: 0;
  color: #111;
  text-decoration: none;
  font-size: 17px;
  line-height: 1;
}

.product-subcats a:hover,
.product-subcats a.is-active {
  color: #2762AE;
}

.product-subcats a + a::before {
  content: "|";
  color: #aeb7c7;
  margin-right: 14px;
}

.product-card {
  display: block;
  text-decoration: none;
  background: #fff;
  transition: transform 0.32s ease, box-shadow 0.32s ease;
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(30, 35, 45, 0.14);
}

.product-thumb {
  display: block;
  height: 202px;
  background-size: cover;
  background-position: center;
  transition: transform 0.32s ease;
}

.product-card:hover .product-thumb {
  transform: scale(1.02);
}

.product-name {
  display: block;
  text-align: center;
  padding: 10px 0;
  color: #2d2d2d;
  font-size: 18px;
  line-height: 2;
}

.product-thumb.p1 {
  background: linear-gradient(145deg, #a9d5ff, #8bb7df);
}

.product-thumb.p2 {
  background: linear-gradient(145deg, #bfe6ff, #9fcaea);
}

.product-thumb.p3 {
  background: linear-gradient(145deg, #cce8ff, #adcdf1);
}

.product-thumb.p4 {
  background: linear-gradient(145deg, #bee4ff, #9ec8f0);
}

.product-thumb.p5 {
  background: linear-gradient(145deg, #c7ebff, #acd6f5);
}

.product-thumb.p6 {
  background: linear-gradient(145deg, #9ac9f3, #78aede);
}

.product-list-section {
  background: #f2f2f2;
}

.product-list-title {
  margin: 0 0 26px;
  text-align: center;
  color: #2762AE;
  font-size: 48px;
  line-height: 1.2;
  font-weight: 700;
}

.product-list-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  align-items: start;
}

.product-list-card {
  display: block;
  text-decoration: none;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e8e8e8;
  color: #222;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.product-list-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(22, 28, 38, 0.1);
}

.product-list-card:hover .product-list-item-title {
  color: #2762AE;
}

.product-list-img-wrap {
  display: block;
  background: linear-gradient(160deg, #e8edf4, #d4dde8);
  aspect-ratio: 4 / 3;
}

.product-list-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-list-img[src=""] {
  display: none;
}

.product-list-item-title {
  display: block;
  padding: 14px 12px 16px;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 600;
  color: #222;
  text-align: center;
}

.product-list-pager {
  margin-top: 36px;
}

.product-pagination {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.product-pagination li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-pagination a,
.product-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  border: 1px solid #d8dde6;
  border-radius: 4px;
  background: #fff;
  color: #333;
  font-size: 14px;
  text-decoration: none;
  line-height: 1;
}

.product-pagination a:hover {
  border-color: #2762AE;
  color: #2762AE;
}

.product-pagination li.active a,
.product-pagination li.active span,
.product-pagination li.current a,
.product-pagination li.current span {
  border-color: #2762AE;
  background: #2762AE;
  color: #fff;
}

.product-detail-banner .slide-copy h2 {
  color: #2762AE;
  font-size: 42px;
}

.product-detail-banner .slide-copy p {
  font-size: 18px;
  color: #3d4655;
}

.product-detail-breadcrumb-wrap {
  background: #fff;
  padding: 14px 0 6px;
  border-bottom: 1px solid #eceff4;
}

.product-detail-breadcrumb-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 10px;
  font-size: 13px;
  color: #6b7280;
}

.product-detail-breadcrumb-label {
  color: #6b7280;
  font-weight: 500;
}

.product-detail-breadcrumb {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}

.product-detail-breadcrumb a {
  color: #6b7280;
  text-decoration: none;
}

.product-detail-breadcrumb a:hover {
  color: #2762AE;
}

.product-detail-breadcrumb a + a::before {
  content: ">";
  margin-right: 6px;
  color: #9ca3af;
  pointer-events: none;
}

.product-detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.product-detail-gallery {
  min-width: 0;
}

.product-gallery-viewport {
  position: relative;
}

.product-gallery-slides {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
}

.product-gallery-slide {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 0;
}

.product-gallery-slide.is-active {
  opacity: 1;
  z-index: 1;
}

.product-gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  color: #6b7280;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.12);
}

.product-gallery-arrow:hover {
  color: #2762AE;
}

.product-gallery-arrow.prev {
  left: 12px;
}

.product-gallery-arrow.next {
  right: 12px;
}

.product-gallery-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.product-gallery-thumb {
  padding: 0;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  background: #fff;
  width: 72px;
  height: 72px;
  overflow: hidden;
  cursor: pointer;
  flex: 0 0 auto;
  transition: border-color 0.2s ease;
}

.product-gallery-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-gallery-thumb.is-active,
.product-gallery-thumb:hover {
  border-color: #2762AE;
}

.product-detail-info {
  min-width: 0;
}

.product-detail-title {
  margin: 0 0 10px;
  font-size: 34px;
  line-height: 1.2;
  font-weight: 700;
  color: #1a2b4a;
}

.product-detail-subtitle {
  margin: 0 0 16px;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 700;
  color: #111827;
}

.product-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.product-detail-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: #2762AE;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
}

.product-detail-desc {
  font-size: 15px;
  line-height: 1.75;
  color: #374151;
}

.product-detail-desc-inner p {
  margin: 0 0 10px;
}

.product-detail-desc-inner p:last-child {
  margin-bottom: 0;
}

.product-detail-body-section {
  background: #fafafa;
  border-top: 1px solid #eceff4;
}

.product-detail-body.cms-content {
  font-size: 15px;
  line-height: 1.75;
  color: #374151;
}

.product-detail-tabs-section {
  background: #fafafa;
  border-top: 1px solid #eceff4;
}

.product-detail-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-bottom: 18px;
}

.product-detail-tab {
  appearance: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 10px 22px;
  font-size: 16px;
  font-weight: 600;
  color: #111;
  border-bottom: 2px solid transparent;
  line-height: 1.2;
}

.product-detail-tab:hover {
  color: #2762AE;
}

.product-detail-tab.is-active {
  color: #2762AE;
  border-bottom-color: #2762AE;
}

.product-detail-tab-panels {
  background: #fff;
  border: 1px solid #eceff4;
  border-radius: 12px;
  padding: 22px 22px;
  overflow: hidden; /* keep rendered content inside container */
}

.product-detail-tab-panel {
  display: none;
}

.product-detail-tab-panel.is-active {
  display: block;
}

.product-detail-specs.cms-content {
  font-size: 15px;
  line-height: 1.75;
  color: #374151;
}

/* Keep tab content within container width */
.product-detail-tab-panels .product-detail-body.cms-content,
.product-detail-tab-panels .product-detail-specs.cms-content {
  max-width: 100%;
  overflow-x: auto;
  word-break: break-word;
}

.product-detail-tab-panels img {
  max-width: 100%;
  height: auto;
  display: block;
}

.product-detail-tab-panels iframe,
.product-detail-tab-panels video {
  max-width: 100%;
  width: 100%;
}

.product-detail-tab-panels table {
  max-width: 100%;
  width: 100%;
  display: block;
  overflow-x: auto;
}

.product-detail-tab-panels pre,
.product-detail-tab-panels code {
  max-width: 100%;
  overflow-x: auto;
  white-space: pre-wrap;
}

@media (max-width: 992px) {
  .product-detail-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .product-detail-title {
    font-size: 28px;
  }

  .product-detail-tabs {
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 14px;
  }

  .product-detail-tab {
    padding: 10px 14px;
    font-size: 14px;
  }

  .product-detail-tab-panels {
    padding: 18px 14px;
  }
}

.solutions-section {
  background: #fff;
}

.solutions-wrap {
  position: relative;
}

.solutions-title {
  margin: 0 0 20px;
  text-align: center;
  color: #2762AE;
  font-size: 46px;
  line-height: 1.2;
  font-weight: 700;
}

.solutions-viewport {
  overflow: hidden;
  width: calc(100% - 90px);
  margin: 0 auto;
}

.solutions-track {
  display: flex;
  gap: 22px;
  transition: transform 0.35s ease;
  will-change: transform;
}

.solution-card2 {
  flex: 0 0 calc((100% - 44px) / 3);
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  box-shadow: 0 1px 7px rgba(20, 24, 35, 0.08);
  overflow: hidden;
  padding-bottom: 16px;
}

.solution-card2-thumb {
  display: block;
  height: 176px;
  background-size: cover;
  background-position: center;
}

.solution-card2 h4 {
  margin: 12px 12px 8px;
  font-size: 18px;
  line-height: 1.35;
  color: #2f2f2f;
  font-weight: 500;
}

.solution-card2 p {
  margin: 0 12px;
  font-size: 13px;
  line-height: 1.7;
  color: #666;
  min-height: 66px;
}

.solution-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 14px 12px 0;
  width: 94px;
  height: 34px;
  border: 1px solid #b9bcc3;
  border-radius: 4px;
  color: #495161;
  text-decoration: none;
  font-size: 13px;
}

.solutions-arrow {
  position: absolute;
  top: 52%;
  transform: translateY(-50%);
  width: 36px;
  height: 56px;
  border: 0;
  background: transparent;
  color: #aab1be;
  font-size: 44px;
  line-height: 1;
  cursor: pointer;
}

.solutions-arrow.prev {
  left: 0;
}

.solutions-arrow.next {
  right: 0;
}

.solution-card2-thumb.s1 {
  background: linear-gradient(145deg, #d09a47, #755e45);
}

.solution-card2-thumb.s2 {
  background: linear-gradient(145deg, #87b6de, #587b9d);
}

.solution-card2-thumb.s3 {
  background: linear-gradient(145deg, #d7d1d1, #8d7f7d);
}

.solution-card2-thumb.s4 {
  background: linear-gradient(145deg, #8ec2df, #4b7896);
}

.solution-card2-thumb.s5 {
  background: linear-gradient(145deg, #9dc3e3, #6e8baa);
}

.news-section {
  background: #fafafa;
}

/* section spacing utilities */
.ptb-0 {
  padding-top: 0;
  padding-bottom: 0;
}

.ptb-20 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.ptb-30 {
  padding-top: 30px;
  padding-bottom: 30px;
}

.ptb-40 {
  padding-top: 40px;
  padding-bottom: 40px;
}

.ptb-50 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.ptb-60 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.ptb-70 {
  padding-top: 70px;
  padding-bottom: 70px;
}

.news-title {
  margin: 0 0 22px;
  text-align: center;
  color: #2762AE;
  font-size: 46px;
  line-height: 1.2;
  font-weight: 700;
}

.news-layout {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 26px;
}

.news-left,
.news-right {
  position: relative;
  background: #fff;
}

.news-more {
  position: absolute;
  right: 0;
  top: -22px;
  color: #2762AE;
  font-size: 14px;
  text-decoration: none;
}

.news-cover {
  display: block;
  position: absolute;
  inset: 0;
  height: 370px;
  background: linear-gradient(145deg, #2f3440, #151921);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.news-cover:nth-child(2) {
  background: linear-gradient(145deg, #3e4e67, #222a37);
}

.news-cover:nth-child(3) {
  background: linear-gradient(145deg, #2f3a52, #0f1520);
}

.news-cover.is-active {
  opacity: 1;
}

.news-slider {
  position: relative;
  height: 370px;
  overflow: hidden;
}

.news-slider-track {
  position: relative;
  height: 100%;
}

.news-cover-title {
  position: absolute;
  left: 12px;
  bottom: 10px;
  right: 90px;
  color: #fff;
  font-size: 13px;
}

.news-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(45, 56, 74, 0.58);
  color: #d9dee8;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.news-slider-arrow.prev {
  left: 10px;
}

.news-slider-arrow.next {
  right: 10px;
}

.news-slider-dots {
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: flex;
  gap: 6px;
}

.news-dot {
  width: 7px;
  height: 7px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  padding: 0;
  cursor: pointer;
}

.news-dot.is-active {
  background: #fff;
}

.news-right {
  padding-top: 2px;
}

.news-item {
  display: flex;
  text-decoration: none;
  color: #333;
  border-bottom: 1px solid #f0f0f0;
  padding: 18px 0;
}

.news-item:last-child {
  border-bottom: 0;
}

.news-date {
  width: 88px;
  text-align: center;
  color: #555;
  flex: 0 0 88px;
}

.news-date strong {
  display: block;
  font-size: 36px;
  line-height: 1;
  font-weight: 500;
}

.news-date span {
  display: block;
  margin-top: 10px;
  font-size: 14px;
}

.news-text {
  flex: 1;
  min-width: 0;
  padding-right: 4px;
}

.news-text h4 {
  margin: 0;
  font-size: 22px;
  line-height: 1.45;
  color: #2d2d2d;
  font-weight: 500;
}

.news-text p {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.6;
  color: #767676;
}

.site-footer {
  background: #2f3034;
  color: #d0d0d0;
  padding: 26px 0 16px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 16px;
  margin-bottom: 16px;
}

.footer-brand h3 {
  margin: 0;
  color: #fff;
  font-size: 30px;
}

.footer-brand p {
  margin: 6px 0 0;
  font-size: 14px;
  color: #b7bcc7;
}

.footer-subscribe {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-subscribe input {
  width: 320px;
  height: 40px;
  border: 0;
  padding: 0 14px;
  background: #fff;
  color: #333;
}

.footer-subscribe button {
  height: 40px;
  padding: 0 28px;
  border: 0;
  border-radius: 20px;
  background: #2762AE;
  color: #fff;
  cursor: pointer;
}

.footer-middle {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr 1fr 1.4fr;
  gap: 18px;
  align-items: flex-start;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #7ea0d1;
}

.footer-logo .logo-mark {
  width: 40px;
  height: 24px;
  border: 3px solid #2762AE;
}

.footer-logo .logo-text strong {
  font-size: 26px;
  line-height: 1;
}

.footer-logo .logo-text em {
  font-size: 10px;
  color: #2762AE;
}

.footer-col h4 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 20px;
}

.footer-col a,
.footer-contact p {
  display: block;
  color: #bcc2cc;
  text-decoration: none;
  font-size: 13px;
  line-height: 1.9;
  margin: 0;
}

.footer-col a:hover {
  color: #fff;
}

.footer-social {
  margin-top: 8px;
  display: flex;
  gap: 8px;
}

.footer-social i {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.footer-bottom {
  margin-top: 14px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: #9da3ad;
  font-size: 12px;
}

.side-tools {
  position: fixed;
  right: 18px;
  bottom: 28px;
  transform: none;
  z-index: 80;
}

.float-panel {
  width: 78px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.16);
  overflow: visible;
}

.float-item {
  position: relative;
  height: 92px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #3b4c70;
  text-decoration: none;
  font-size: 13px;
  border-bottom: 1px solid #ececec;
}

.float-item:last-child {
  border-bottom: 0;
}

.float-item i {
  font-size: 24px;
  color: #2762AE;
}

.float-qr {
  position: absolute;
  right: 92px;
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.28s ease;
}

.float-whatsapp:hover .float-qr {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

.float-qr-box {
  width: 174px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  padding: 14px 10px 10px;
  text-align: center;
}

.qr-fake {
  width: 140px;
  height: 140px;
  margin: 0 auto;
  background: repeating-linear-gradient(0deg, #111 0 8px, #fff 8px 16px),
    repeating-linear-gradient(90deg, #111 0 8px, #fff 8px 16px);
  mix-blend-mode: multiply;
}

.float-qr-box p {
  margin: 10px 0 0;
  color: #303030;
  font-size: 12px;
  line-height: 1.6;
}

.float-qr-arrow {
  position: absolute;
  right: -7px;
  top: 50%;
  margin-top: -8px;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 8px solid #fff;
}

.back-top {
  margin-top: 12px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(104, 104, 104, 0.9);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
