/* =========================================================
   Global header — one row + working dropdowns
   ========================================================= */

:root {
  --header_height: 100px;
}

#sp-header.header-with-modal-menu {
  height: 100px !important;
  min-height: 100px !important;
  overflow: visible !important;
  z-index: 9999 !important;
}

#sp-header.header-with-modal-menu > .container,
#sp-header.header-with-modal-menu .container-inner {
  height: 100%;
}

#sp-header.header-with-modal-menu .container-inner > .row,
#sp-header.header-with-modal-menu .container-inner > .row.align-items-center {
  flex-wrap: nowrap !important;
  align-items: center !important;
  height: 100px !important;
  margin-left: 0;
  margin-right: 0;
}

#sp-header.header-with-modal-menu #sp-logo {
  flex: 0 0 auto !important;
  max-width: 220px;
  height: 100px !important;
  display: flex;
  align-items: center;
}

#sp-header.header-with-modal-menu #sp-logo .logo {
  height: 100px !important;
  display: inline-flex !important;
  align-items: center !important;
}

#sp-header.header-with-modal-menu #logo-right {
  flex: 1 1 0% !important;
  min-width: 0 !important;
  max-width: none !important;
  width: auto !important;
  height: 100px !important;
  align-items: center !important;
  overflow: visible !important;
}

#sp-header.header-with-modal-menu #logo-right .sp-module {
  display: block !important;
  height: 100px !important;
  margin: 0 !important;
  flex: 1 1 auto;
  min-width: 0;
  overflow: visible !important;
}

#sp-header.header-with-modal-menu #logo-right .sp-module-content {
  height: 100px !important;
  display: flex;
  align-items: center;
  min-width: 0;
  overflow: visible !important;
}

/* Top-level menu only — horizontal */
#sp-header.header-with-modal-menu #logo-right ul.mod-menu.mod-list {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: flex-end;
  height: 100px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none;
  width: 100%;
  overflow: visible !important;
}

#sp-header.header-with-modal-menu #logo-right ul.mod-menu.mod-list > li {
  position: relative !important;
  display: block !important;
  float: none !important;
  height: 100px !important;
  margin: 0 !important;
  padding: 0 !important;
  white-space: nowrap;
}

#sp-header.header-with-modal-menu #logo-right ul.mod-menu.mod-list > li > a,
#sp-header.header-with-modal-menu #logo-right ul.mod-menu.mod-list > li > span {
  display: flex !important;
  align-items: center !important;
  height: 100px !important;
  line-height: 1.2 !important;
  padding: 0 11px !important;
  color: #fff !important;
  font-size: 13px !important;
  font-weight: 500;
}

#sp-header.header-with-modal-menu #logo-right ul.mod-menu.mod-list > li.active > a,
#sp-header.header-with-modal-menu #logo-right ul.mod-menu.mod-list > li.current > a,
#sp-header.header-with-modal-menu #logo-right ul.mod-menu.mod-list > li > a:hover {
  color: #00cbd1 !important;
}

/*
  Arrow fix: theme uses a:before + float:right, but our flex layout
  ignores float so the chevron jumps to the LEFT of the label.
  Move it to a:after (right side) and style it softer.
*/
#sp-header.header-with-modal-menu #logo-right .sp-module ul.mod-menu li.menu-parent > a::before,
#sp-header .sp-module .menu li.menu-parent > a::before {
  content: none !important;
  display: none !important;
}

#sp-header.header-with-modal-menu #logo-right .sp-module ul.mod-menu li.menu-parent > a::after {
  content: "\f078" !important;
  font-family: "Font Awesome 5 Free" !important;
  font-weight: 900 !important;
  font-size: 8px !important;
  line-height: 1 !important;
  margin-left: 8px !important;
  margin-right: 0 !important;
  opacity: 0.4;
  color: #fff !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 12px;
  height: 12px;
  transform: none !important;
  position: relative;
  top: 0;
  transition: opacity 0.2s ease, color 0.2s ease;
}

#sp-header.header-with-modal-menu #logo-right .sp-module ul.mod-menu li.menu-parent:hover > a::after,
#sp-header.header-with-modal-menu #logo-right .sp-module ul.mod-menu li.menu-parent.active > a::after,
#sp-header.header-with-modal-menu #logo-right .sp-module ul.mod-menu li.menu-parent.current > a::after {
  opacity: 0.95;
  color: #00cbd1 !important;
  transform: none !important;
}

/* Hide unused empty toggler in desktop header (dropdown uses hover) */
#sp-header.header-with-modal-menu #logo-right ul.mod-menu.mod-list > li > a > .menu-toggler {
  display: none !important;
}

/* Hide nested submenu by default — show as dropdown on hover */
#sp-header.header-with-modal-menu #logo-right ul.mod-menu.mod-list ul,
#sp-header.header-with-modal-menu #logo-right ul.mod-menu.mod-list .mod-menu__sub {
  display: none !important;
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  z-index: 10050 !important;
  min-width: 220px;
  margin: 0 !important;
  padding: 10px 0 !important;
  list-style: none !important;
  background: #151a25 !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  white-space: normal;
}

#sp-header.header-with-modal-menu #logo-right ul.mod-menu.mod-list > li:hover > ul,
#sp-header.header-with-modal-menu #logo-right ul.mod-menu.mod-list > li:hover > .mod-menu__sub,
#sp-header.header-with-modal-menu #logo-right ul.mod-menu.mod-list > li:focus-within > ul,
#sp-header.header-with-modal-menu #logo-right ul.mod-menu.mod-list > li:focus-within > .mod-menu__sub {
  display: block !important;
}

#sp-header.header-with-modal-menu #logo-right ul.mod-menu.mod-list ul > li,
#sp-header.header-with-modal-menu #logo-right ul.mod-menu.mod-list .mod-menu__sub > li {
  display: block !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  float: none !important;
  white-space: normal;
}

#sp-header.header-with-modal-menu #logo-right ul.mod-menu.mod-list ul > li > a,
#sp-header.header-with-modal-menu #logo-right ul.mod-menu.mod-list .mod-menu__sub > li > a {
  display: block !important;
  height: auto !important;
  padding: 10px 16px !important;
  line-height: 1.4 !important;
  color: #fff !important;
  font-size: 13px !important;
  white-space: nowrap;
}

#sp-header.header-with-modal-menu #logo-right ul.mod-menu.mod-list ul > li > a:hover,
#sp-header.header-with-modal-menu #logo-right ul.mod-menu.mod-list .mod-menu__sub > li > a:hover {
  color: #00cbd1 !important;
  background: rgba(0, 203, 209, 0.08);
}

#sp-header.header-with-modal-menu #modal-menu-toggler {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  height: 100px;
  margin-left: 8px !important;
}

#sp-header.header-with-modal-menu #modal-menu:not(.active) {
  height: 0 !important;
  overflow: hidden !important;
  visibility: hidden;
  pointer-events: none;
}

#sp-header.header-with-modal-menu #modal-menu:not(.active) .sp-megamenu-parent {
  display: none !important;
}

@media (max-width: 1199.98px) {
  #sp-header.header-with-modal-menu #logo-right ul.mod-menu.mod-list > li > a,
  #sp-header.header-with-modal-menu #logo-right ul.mod-menu.mod-list > li > span {
    padding: 0 7px !important;
    font-size: 12px !important;
  }
}

@media (max-width: 991.98px) {
  #sp-header.header-with-modal-menu #logo-right .sp-module {
    display: none !important;
  }
}

/* =========================================================
   Blog news page — wider, readable, balanced layout
   ========================================================= */

/* Widen the main content area on blog listing */
body.itemid-312.layout-fluid #sp-main-body > .container,
body.itemid-312 #sp-main-body > .container {
  max-width: 1320px;
  width: 100%;
}

body.itemid-312 #sp-main-body {
  padding-top: 2.5rem;
  padding-bottom: 3.5rem;
}

/* Page title banner — styles ONLY on .sp-page-title (inner),
   never on #sp-page-title section (flex on section shrinks the row) */
body.itemid-312 #sp-page-title {
  display: block !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  background: none !important;
}

body.itemid-312 #sp-page-title > .row {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
}

body.itemid-312 #sp-page-title #sp-title,
body.itemid-312 #sp-page-title .sp-column {
  width: 100% !important;
  max-width: 100% !important;
  flex: 0 0 100% !important;
}

body.itemid-312 .sp-page-title {
  position: relative;
  width: 100% !important;
  min-height: 360px !important;
  height: auto !important;
  padding: 80px 0 90px !important;
  display: flex !important;
  align-items: center !important;
  background-repeat: no-repeat !important;
  background-position: 88% 18% !important;
  background-size: cover !important;
  overflow: hidden;
}

body.itemid-312 .sp-page-title::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.92) 0%,
    rgba(255, 255, 255, 0.75) 42%,
    rgba(255, 255, 255, 0.15) 72%,
    rgba(255, 255, 255, 0) 100%
  );
  pointer-events: none;
  z-index: 0;
}

body.itemid-312 .sp-page-title .container {
  position: relative;
  z-index: 1;
  max-width: 1320px;
}

body.itemid-312 .sp-page-title .sp-page-title-heading {
  color: #1a2233 !important;
  font-size: clamp(2rem, 3.8vw, 3rem) !important;
  line-height: 1.25 !important;
  max-width: 580px !important;
  font-weight: 700;
}

body.itemid-312 .sp-page-title .sp-page-title-heading::after {
  content: "";
  display: block;
  width: 64px;
  height: 3px;
  margin-top: 0.85rem;
  background: linear-gradient(90deg, #00cbd1, rgba(0, 203, 209, 0.2));
  border-radius: 2px;
}

body.itemid-312 .sp-page-title .sp-page-title-sub-heading {
  color: #3a4558 !important;
  font-size: clamp(1rem, 1.4vw, 1.15rem) !important;
  line-height: 1.55 !important;
  max-width: 520px !important;
  width: auto !important;
  padding-left: 0 !important;
  margin-top: 0.95rem !important;
}

@media (max-width: 767.98px) {
  body.itemid-312 .sp-page-title {
    min-height: 260px !important;
    padding: 52px 0 60px !important;
    background-position: 70% center !important;
  }

  body.itemid-312 .sp-page-title::before {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.9) 0%,
      rgba(255, 255, 255, 0.7) 55%,
      rgba(255, 255, 255, 0.35) 100%
    );
  }
}

/* =========================================================
   Theme tokens — dark (default) / light
   ========================================================= */
:root,
html.hu-theme-dark,
body.hu-theme-dark {
  --blog-page-bg: transparent;
  --blog-title: #ffffff;
  --blog-sub: #9aa3b2;
  --blog-card-bg: linear-gradient(180deg, #1a2130 0%, #151a25 100%);
  --blog-card-border: rgba(255, 255, 255, 0.08);
  --blog-card-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  --blog-card-title: #ffffff;
  --blog-card-text: #a7b0bf;
  --blog-card-meta: #00cbd1;
  --blog-sidebar-bg: #1a2130;
  --blog-sidebar-border: rgba(255, 255, 255, 0.08);
  --blog-sidebar-title: #ffffff;
  --blog-sidebar-link: #d7dde8;
  --blog-sidebar-divider: rgba(255, 255, 255, 0.06);
  --blog-pagination-border: rgba(255, 255, 255, 0.08);
  --article-text: #d7dde8;
  --article-heading: #ffffff;
  --content-pad-end: 1.25rem;
}

html.hu-theme-light,
body.hu-theme-light {
  --blog-page-bg: #eef1f6;
  --blog-title: #152033;
  --blog-sub: #475569;
  --blog-card-bg: #ffffff;
  --blog-card-border: rgba(21, 32, 51, 0.14);
  --blog-card-shadow: 0 8px 24px rgba(21, 32, 51, 0.12);
  --blog-card-title: #152033;
  --blog-card-text: #334155;
  --blog-card-meta: #0a9ea4;
  --blog-sidebar-bg: #ffffff;
  --blog-sidebar-border: rgba(21, 32, 51, 0.1);
  --blog-sidebar-title: #152033;
  --blog-sidebar-link: #334155;
  --blog-sidebar-divider: rgba(21, 32, 51, 0.08);
  --blog-pagination-border: rgba(21, 32, 51, 0.1);
  --article-text: #334155;
  --article-heading: #152033;
  --content-pad-end: 1.5rem;
}

/* Mode switcher — bottom-right, ไม่บังเนื้อหาด้านขวา */
.template-options {
  top: auto !important;
  bottom: 18px !important;
  right: 12px !important;
  transform: none !important;
  opacity: 0.95;
  z-index: 900 !important;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.18));
}

.template-options .option-section {
  transform: none !important;
}

.template-options .form-switch .form-check-input {
  width: 72px !important;
  height: 28px !important;
}

/* ไอคอน sun/moon เคยหมุนชดเชยแนวตั้ง — ตอนนี้วางแนวนอนแล้ว */
.template-options .form-switch:before {
  transform: none !important;
  top: 4px !important;
  right: 6px !important;
}

.template-options .mode-switch-wrap.active:before {
  top: 4px !important;
  right: 46px !important;
}

@media (max-width: 991.98px) {
  .template-options {
    bottom: 20px !important;
    right: 10px !important;
    opacity: 0.92;
    transform: scale(0.9) !important;
    transform-origin: bottom right !important;
  }
}

@media (max-width: 575.98px) {
  .template-options {
    bottom: 16px !important;
    right: 8px !important;
    transform: scale(0.82) !important;
  }
}

/* ให้เนื้อหาไม่ชนสวิตช์โหมด */
#sp-main-body > .container,
#sp-main-body > .container-fluid,
body.itemid-312 #sp-main-body .container {
  padding-right: max(12px, env(safe-area-inset-right));
  padding-left: max(12px, env(safe-area-inset-left));
}

@media (min-width: 992px) {
  #sp-main-body > .container,
  body.itemid-312 #sp-main-body .container {
    padding-right: 15px;
  }
}

/* เผื่อพื้นที่ด้านล่างไม่ให้สวิตช์บังเนื้อหา */
#sp-main-body {
  padding-bottom: 2.5rem;
}

/* Light mode — พื้นหลังและข้อความทั่วไปให้อ่านง่าย */
html.hu-theme-light {
  --link-color: #0a8f94;
  --text-color: #243047;
  --secondary-text-color: #4a5568;
}

html.hu-theme-light body,
html.hu-theme-light .body-wrapper,
html.hu-theme-light #sp-main-body {
  background-color: var(--blog-page-bg) !important;
  color: var(--article-text) !important;
}

/* หัวข้อบทความเท่านั้น — อย่าบังคับทั้งไซต์ (จะทำลาย section พื้นหลังเข้ม) */
html.hu-theme-light .article-details .article-header h1,
html.hu-theme-light .article-details .article-header h2,
html.hu-theme-light .article-details h1,
html.hu-theme-light .article-details h2,
html.hu-theme-light .article-details h3,
html.hu-theme-light .blog-news-list .intro-articles-top-title {
  color: var(--article-heading) !important;
}

html.hu-theme-light .article-details,
html.hu-theme-light .article-details .article-fulltext,
html.hu-theme-light .article-details .article-introtext {
  color: var(--article-text) !important;
}

html.hu-theme-light body.itemid-312 #sp-main-body {
  background-color: var(--blog-page-bg) !important;
}

/* =========================================================
   Light mode — SP Page Builder (Open API China และหน้าอื่น)
   ========================================================= */

/* ลิงก์สี cyan อ่อน (#16edf3) อ่านยากบนพื้นสว่าง */
html.hu-theme-light .sp-page-builder .sppb-addon-articles h3,
html.hu-theme-light .sp-page-builder .sppb-addon-articles h3 a,
html.hu-theme-light .sp-page-builder .sppb-addon-articles .sppb-article-info-wrap a,
html.hu-theme-light .sp-page-builder .sppb-addon-articles .sppb-readmore,
html.hu-theme-light .sp-page-builder .sppb-addon-articles .sppb-meta-category a {
  color: #152033 !important;
}

html.hu-theme-light .sp-page-builder .sppb-addon-articles h3 a:hover,
html.hu-theme-light .sp-page-builder .sppb-addon-articles .sppb-readmore:hover,
html.hu-theme-light .sp-page-builder .sppb-addon-articles .sppb-meta-category a:hover {
  color: #0a8f94 !important;
}

html.hu-theme-light .sp-page-builder .sppb-addon-articles .sppb-article-introtext,
html.hu-theme-light .sp-page-builder .sppb-addon-articles .sppb-article-info,
html.hu-theme-light .sp-page-builder .sppb-addon-articles .sppb-meta-date {
  color: #4a5568 !important;
}

html.hu-theme-light .sp-page-builder .sppb-addon-articles .sppb-meta-category,
html.hu-theme-light .sp-page-builder .sppb-addon-articles .sppb-meta-category a,
html.hu-theme-light .sp-page-builder .sppb-addon-articles .sppb-meta-author,
html.hu-theme-light .sp-page-builder .sppb-addon-articles .sppb-meta-author a {
  color: #5a6578 !important;
}

html.hu-theme-light .sp-page-builder .sppb-addon-articles .sppb-addon-article {
  background: #ffffff;
  border: 1px solid rgba(21, 32, 51, 0.08);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(21, 32, 51, 0.06);
  padding-bottom: 0.5rem;
}

html.hu-theme-light .sp-page-builder .sppb-addon-articles .sppb-article-info-wrap {
  padding: 0.85rem 1rem 1rem;
}

html.hu-theme-light .sp-page-builder .sppb-addon-articles .sppb-readmore {
  font-weight: 600 !important;
  color: #0a8f94 !important;
}

/* หัวข้อ animated / text-clip ที่เป็นขาวบนพื้นสว่าง */
html.hu-theme-light .sp-page-builder .animated-heading-text,
html.hu-theme-light .sp-page-builder .text-clip,
html.hu-theme-light .sp-page-builder h2.animated-heading-text {
  color: #152033 !important;
  -webkit-text-fill-color: #152033 !important;
  background-image: none !important;
}

/* หัวข้อ/ข้อความทั่วไปใน section พื้นสว่าง */
html.hu-theme-light .sp-page-builder .sppb-addon-header .sppb-addon-title,
html.hu-theme-light .sp-page-builder .sppb-addon-text-block .sppb-addon-title {
  color: #152033;
}

html.hu-theme-light .sp-page-builder .sppb-addon-text,
html.hu-theme-light .sp-page-builder .sppb-addon-text p,
html.hu-theme-light .sp-page-builder .sppb-feature-box-title + .sppb-addon-text {
  color: #3a4558;
}

/* Feature / stats titles */
html.hu-theme-light .sp-page-builder .sppb-addon-feature .sppb-feature-box-title,
html.hu-theme-light .sp-page-builder .sppb-addon-feature h3,
html.hu-theme-light .sp-page-builder .sppb-addon-feature h5 {
  color: #152033 !important;
}

html.hu-theme-light .sp-page-builder .sppb-addon-feature .sppb-addon-text {
  color: #4a5568 !important;
}

/* โลโก้ขาวในเนื้อหา → ใช้โลโก้สีเข้ม (header ยังใช้ขาวบนพื้นเข้ม) */
html.hu-theme-light .sp-page-builder img[src*="logo-w.png"] {
  content: url("/images/logo-l.png");
}

/* Footer พื้นเข้มทั้ง light/dark → ใช้ logo-w เหมือนกันเสมอ */
html.hu-theme-light #sp-footer img[src*="logo-w.png"],
html.hu-theme-light #sp-footer .sp-page-builder img[src*="logo-w.png"],
html.hu-theme-dark #sp-footer img[src*="logo-w.png"],
html.hu-theme-dark #sp-footer .sp-page-builder img[src*="logo-w.png"] {
  content: url("/images/logo-w.png") !important;
  filter: none !important;
  opacity: 1 !important;
}

/* fallback ถ้าเบราว์เซอร์ไม่รองรับ content บน img */
@supports not (content: url("/images/logo-l.png")) {
  html.hu-theme-light .sp-page-builder img[src*="logo-w.png"] {
    filter: brightness(0.15);
  }
  html.hu-theme-light #sp-footer img[src*="logo-w.png"],
  html.hu-theme-light #sp-footer .sp-page-builder img[src*="logo-w.png"] {
    filter: none !important;
  }
}

/* Section พื้นหลัง gradient เข้ม — คืนข้อความสีขาว */
html.hu-theme-light #section-id-1687423782823,
html.hu-theme-light #section-id-1687423782823 .sppb-addon-title,
html.hu-theme-light #section-id-1687423782823 .sppb-addon-text,
html.hu-theme-light #section-id-1687423782823 .sppb-addon-text p,
html.hu-theme-light #section-id-1687423782823 h1,
html.hu-theme-light #section-id-1687423782823 h2,
html.hu-theme-light #section-id-1687423782823 h3,
html.hu-theme-light #section-id-1687423782823 p,
html.hu-theme-light #section-id-1687423782829,
html.hu-theme-light #section-id-1687423782829 .sppb-addon-title,
html.hu-theme-light #section-id-1687423782829 .sppb-addon-text,
html.hu-theme-light #section-id-1687423782829 .sppb-addon-text p,
html.hu-theme-light #section-id-1687423782829 h1,
html.hu-theme-light #section-id-1687423782829 h2,
html.hu-theme-light #section-id-1687423782829 h3,
html.hu-theme-light #section-id-1687423782829 p,
html.hu-theme-light #section-id-1685393039058,
html.hu-theme-light #section-id-1685393039058 .sppb-addon-title,
html.hu-theme-light #section-id-1685393039058 .sppb-addon-text,
html.hu-theme-light #section-id-1685393039058 .sppb-addon-text p,
html.hu-theme-light #section-id-1685393039058 h1,
html.hu-theme-light #section-id-1685393039058 h2,
html.hu-theme-light #section-id-1685393039058 h3,
html.hu-theme-light #section-id-1685393039058 p,
html.hu-theme-light #section-id-1685390133293,
html.hu-theme-light #section-id-1685390133293 .sppb-addon-title,
html.hu-theme-light #section-id-1685390133293 .sppb-addon-text,
html.hu-theme-light #section-id-1685390133293 .sppb-addon-text p,
html.hu-theme-light #section-id-1685390133293 h1,
html.hu-theme-light #section-id-1685390133293 h2,
html.hu-theme-light #section-id-1685390133293 h3,
html.hu-theme-light #section-id-1685390133293 p,
html.hu-theme-light #section-id-1685390133173,
html.hu-theme-light #section-id-1685390133173 .sppb-addon-title,
html.hu-theme-light #section-id-1685390133173 .sppb-addon-text,
html.hu-theme-light #section-id-1685390133173 h1,
html.hu-theme-light #section-id-1685390133173 h2,
html.hu-theme-light #section-id-1685390133173 h3,
html.hu-theme-light #section-id-1685390133173 p {
  color: #ffffff !important;
}

/* Partners subtitle / description soft white */
html.hu-theme-light #section-id-1685393039058 .sppb-addon-title + .sppb-addon-text,
html.hu-theme-light #section-id-1685393039058 .sppb-addon-text,
html.hu-theme-light #section-id-1685393039058 .sppb-addon-content,
html.hu-theme-light #section-id-1685393039058 .sppb-addon-content *,
html.hu-theme-light #section-id-1685393039058 p {
  color: rgba(255, 255, 255, 0.9) !important;
}

html.hu-theme-light #section-id-1685393039058 h2.sppb-addon-title {
  color: #ffffff !important;
  letter-spacing: 0.04em;
}

/* เนื้อหาใน section gradient เข้มทั้งหมด */
html.hu-theme-light #section-id-1687423782823 .sppb-addon-content,
html.hu-theme-light #section-id-1687423782823 .sppb-addon-content *,
html.hu-theme-light #section-id-1687423782829 .sppb-addon-content,
html.hu-theme-light #section-id-1687423782829 .sppb-addon-content *,
html.hu-theme-light #section-id-1685390133293 .sppb-addon-content,
html.hu-theme-light #section-id-1685390133293 .sppb-addon-content *,
html.hu-theme-light #section-id-1685390133173 .sppb-addon-content,
html.hu-theme-light #section-id-1685390133173 .sppb-addon-content * {
  color: rgba(255, 255, 255, 0.92) !important;
}

/* หัวข้อ watermark ใหญ่ — โทนเทาอ่อนอ่านได้แต่ไม่แย่งโฟกัส */
html.hu-theme-light body.itemid-412 #section-id-1636107977321 .sppb-addon-title {
  color: rgba(21, 32, 51, 0.08) !important;
}

/* หัวข้อ intro ด้านบน */
html.hu-theme-light body.itemid-412 #section-id-1636369867755 .sppb-addon-title {
  color: #243047 !important;
}

html.hu-theme-light body.itemid-412 #section-id-1636369867755 .sppb-addon-text,
html.hu-theme-light body.itemid-412 #section-id-1636369867755 .sppb-addon-text p,
html.hu-theme-light body.itemid-412 #section-id-1636369867755 .sppb-addon-content,
html.hu-theme-light body.itemid-412 #section-id-1636369867755 .sppb-addon-content p,
html.hu-theme-light body.itemid-412 #section-id-1636369867755 .sppb-addon-content * {
  color: #2c3a52 !important;
}

/* API interfaces / portfolio titles บนการ์ด */
html.hu-theme-light .sp-page-builder .sp-simpleportfolio-title,
html.hu-theme-light .sp-page-builder .sp-simpleportfolio-title a {
  color: #152033 !important;
}

html.hu-theme-light .sp-page-builder .sp-simpleportfolio-item:hover .sp-simpleportfolio-title,
html.hu-theme-light .sp-page-builder .sp-simpleportfolio-item:hover .sp-simpleportfolio-title a {
  color: #0a8f94 !important;
}

/* Filter tabs */
html.hu-theme-light .sp-page-builder .sp-simpleportfolio-filter ul li a,
html.hu-theme-light .sp-page-builder .sp-simpleportfolio-filter a {
  color: #334155 !important;
}

html.hu-theme-light .sp-page-builder .sp-simpleportfolio-filter ul li.active a,
html.hu-theme-light .sp-page-builder .sp-simpleportfolio-filter a.active {
  color: #0a8f94 !important;
}

/* Section heading "API SUPPORTS..." */
html.hu-theme-light body.itemid-412 #section-id-1685390133270 .sppb-addon-title,
html.hu-theme-light body.itemid-412 #section-id-1685390133270 h2,
html.hu-theme-light body.itemid-412 #section-id-1685390133270 h3,
html.hu-theme-light body.itemid-412 #section-id-1685390133270 h4 {
  color: #152033 !important;
}

/* ข่าวสาร section title */
html.hu-theme-light body.itemid-412 .sppb-addon-articles + .sppb-addon-header .sppb-addon-title,
html.hu-theme-light body.itemid-412 .addon-root-articles ~ .sppb-addon-header .sppb-addon-title {
  color: #152033 !important;
}

html.hu-theme-light body.itemid-412 .sppb-section .sppb-addon-header h2.sppb-addon-title,
html.hu-theme-light body.itemid-412 .sppb-section .sppb-addon-header h3.sppb-addon-title {
  color: #152033;
}

/* See all posts / buttons text on light */
html.hu-theme-light .sp-page-builder .sppb-btn-link,
html.hu-theme-light .sp-page-builder a.sppb-btn-default {
  color: #0a8f94 !important;
}

@media (max-width: 767.98px) {
  html.hu-theme-light .sp-page-builder .sppb-addon-articles h3,
  html.hu-theme-light .sp-page-builder .sppb-addon-articles h3 a {
    font-size: clamp(1.05rem, 4vw, 1.35rem) !important;
    line-height: 1.35 !important;
  }

  html.hu-theme-light .sp-page-builder .animated-heading-text {
    font-size: clamp(1.35rem, 6vw, 2rem) !important;
  }
}

.blog-news-list,
.blog.blog-page-wide {
  width: 100%;
  max-width: 100%;
}

.blog-news-list .blog-section-head {
  margin-bottom: 1.75rem;
}

.blog-news-list .intro-articles-top-title {
  margin: 0 0 0.4rem;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--blog-title) !important;
}

.blog-news-list .blog-section-sub {
  margin: 0;
  color: var(--blog-sub) !important;
  font-size: 0.98rem;
  line-height: 1.6;
  max-width: 42rem;
}

/* Cards */
.blog-news-list .blog-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--blog-card-bg);
  border: 1px solid var(--blog-card-border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(21, 32, 51, 0.04);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

html.hu-theme-light .blog-news-list .blog-card {
  box-shadow: 0 4px 18px rgba(21, 32, 51, 0.08);
}

.blog-news-list .blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 203, 209, 0.45);
  box-shadow: var(--blog-card-shadow);
}

.blog-news-list .blog-card .intro-article-img-wrapper,
.blog-news-list .blog-card .item-image {
  margin: 0;
  position: relative;
  background: rgba(0, 0, 0, 0.04);
}

.blog-news-list .blog-card .intro-article-img-wrapper img,
.blog-news-list .blog-card .item-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.blog-news-list .blog-card .article-body {
  padding: 1.1rem 1.15rem 1.35rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-news-list .blog-card .article-info,
.blog-news-list .blog-card .article-header {
  margin-bottom: 0.55rem;
}

.blog-news-list .blog-card .article-info,
.blog-news-list .blog-card .article-info a,
.blog-news-list .blog-card .category-name a {
  color: var(--blog-card-meta) !important;
  font-size: 0.82rem;
}

.blog-news-list .blog-card .article-info .published,
.blog-news-list .blog-card .article-info time,
.blog-news-list .blog-card .article-info .create {
  color: var(--blog-sub) !important;
}

.blog-news-list .blog-card h2,
.blog-news-list .blog-card .item-title,
.blog-news-list .blog-card .item-title a {
  font-size: 1.05rem;
  line-height: 1.45;
  font-weight: 700;
  color: var(--blog-card-title) !important;
  margin: 0 0 0.65rem;
}

.blog-news-list .blog-card .article-introtext {
  color: var(--blog-card-text) !important;
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0 0 0.85rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 0 0 auto;
  max-height: calc(1.55em * 3);
}

.blog-news-list .blog-card .article-introtext p {
  margin: 0;
  padding: 0;
  color: inherit !important;
}

.blog-news-list .blog-card .readmore {
  margin-top: auto;
  margin-bottom: 0;
  padding-top: 0.25rem;
}

.blog-news-list .blog-card .readmore a,
.blog-news-list .blog-card .readmore .btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.35rem 0.85rem !important;
  font-size: 0.8rem !important;
  font-weight: 600 !important;
  line-height: 1.3 !important;
  color: #0b1220 !important;
  background: #00cbd1 !important;
  border: 1px solid #00cbd1 !important;
  border-radius: 6px !important;
  text-decoration: none !important;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.blog-news-list .blog-card .readmore a:hover,
.blog-news-list .blog-card .readmore .btn:hover {
  background: transparent !important;
  color: #00a8ad !important;
  border-color: #00a8ad !important;
}

html.hu-theme-light .blog-news-list .blog-card .readmore a:hover,
html.hu-theme-light .blog-news-list .blog-card .readmore .btn:hover {
  color: #0a9ea4 !important;
  border-color: #0a9ea4 !important;
}

/* Sidebar */
.blog-news-list .blog-sidebar {
  position: sticky;
  top: 96px;
}

.blog-news-list .blog-sidebar .sp-module,
.blog-news-list .blog-sidebar .module {
  background: var(--blog-sidebar-bg);
  border: 1px solid var(--blog-sidebar-border);
  border-radius: 14px;
  padding: 1.1rem 1.15rem;
  margin-bottom: 1.25rem;
  box-shadow: none;
}

html.hu-theme-light .blog-news-list .blog-sidebar .sp-module,
html.hu-theme-light .blog-news-list .blog-sidebar .module {
  box-shadow: 0 4px 16px rgba(21, 32, 51, 0.06);
}

.blog-news-list .blog-sidebar .sp-module-title,
.blog-news-list .blog-sidebar h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.9rem;
  color: var(--blog-sidebar-title) !important;
}

.blog-news-list .blog-sidebar ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog-news-list .blog-sidebar ul li {
  margin: 0;
  border-bottom: 1px solid var(--blog-sidebar-divider);
}

.blog-news-list .blog-sidebar ul li:last-child {
  border-bottom: 0;
}

.blog-news-list .blog-sidebar ul li a {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.7rem 0;
  color: var(--blog-sidebar-link) !important;
  font-size: 0.92rem;
  line-height: 1.4;
}

.blog-news-list .blog-sidebar ul li a:hover {
  color: #00cbd1 !important;
}

/* Keep ad module full width of sidebar, no crop */
.blog-news-list .blog-sidebar .mod-sppagebuilder {
  padding: 0 !important;
  overflow: visible !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.blog-news-list .blog-sidebar .mod-sppagebuilder .sppb-section,
.blog-news-list .blog-sidebar .mod-sppagebuilder .sppb-row-container,
.blog-news-list .blog-sidebar .mod-sppagebuilder .sppb-row,
.blog-news-list .blog-sidebar .mod-sppagebuilder [class*="sppb-col-"],
.blog-news-list .blog-sidebar .mod-sppagebuilder .sppb-column,
.blog-news-list .blog-sidebar .mod-sppagebuilder .sppb-column-addons,
.blog-news-list .blog-sidebar .mod-sppagebuilder .sppb-addon-wrapper,
.blog-news-list .blog-sidebar .mod-sppagebuilder .sppb-addon,
.blog-news-list .blog-sidebar .mod-sppagebuilder .sppb-addon-content,
.blog-news-list .blog-sidebar .mod-sppagebuilder .sppb-addon-single-image,
.blog-news-list .blog-sidebar .mod-sppagebuilder .sppb-addon-single-image-container {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  height: auto !important;
  max-height: none !important;
  overflow: visible !important;
}

.blog-news-list .blog-sidebar .mod-sppagebuilder .sppb-row-container {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.blog-news-list .blog-sidebar .mod-sppagebuilder img,
.blog-news-list .blog-sidebar .mod-sppagebuilder .sppb-img-responsive {
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: top center !important;
  display: block !important;
  border-radius: 14px;
}

/* disable any image-shape crop masks on the ad */
.blog-news-list .blog-sidebar .mod-sppagebuilder .sppb-addon-image-shape,
.blog-news-list .blog-sidebar .mod-sppagebuilder .sppb-addon-image-shape img {
  clip-path: none !important;
  -webkit-clip-path: none !important;
  border-radius: 14px !important;
  mask: none !important;
}

/* Pagination */
.blog-news-list .pagination-wrapper {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--blog-pagination-border);
}

.blog-news-list .pagination-wrapper .pagination {
  margin: 0;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.blog-news-list .pagination-wrapper .page-item .page-link,
.blog-news-list .pagination-wrapper a,
.blog-news-list .pagination-wrapper span {
  min-width: 2.4rem;
  text-align: center;
  border-radius: 8px !important;
}

html.hu-theme-light .blog-news-list .pagination-wrapper .page-link,
html.hu-theme-light .blog-news-list .pagination-wrapper a {
  color: #152033 !important;
  background: #fff !important;
  border-color: rgba(21, 32, 51, 0.15) !important;
}

html.hu-theme-light .blog-news-list .pagination-wrapper .active .page-link,
html.hu-theme-light .blog-news-list .pagination-wrapper .active span {
  background: #00cbd1 !important;
  border-color: #00cbd1 !important;
  color: #0b1220 !important;
}

/* Hide leftover empty author blocks if any */
.blog-news-list .blog-card .author-info:empty {
  display: none;
}

@media (max-width: 991.98px) {
  .blog-news-list .blog-sidebar {
    position: static;
    margin-top: 0.5rem;
  }

  .blog-news-list .blog-card .intro-article-img-wrapper img,
  .blog-news-list .blog-card .item-image img {
    height: 190px;
  }

  .blog-news-list .row {
    margin-left: -8px;
    margin-right: -8px;
  }

  .blog-news-list [class*="col-"] {
    padding-left: 8px;
    padding-right: 8px;
  }
}

@media (max-width: 575.98px) {
  body.itemid-312 #sp-main-body {
    padding-top: 1.25rem;
    padding-bottom: 2rem;
  }

  .blog-news-list .blog-section-head {
    margin-bottom: 1.15rem;
  }

  .blog-news-list .intro-articles-top-title {
    font-size: 1.35rem;
  }

  .blog-news-list .blog-card .article-body {
    padding: 0.95rem 1rem 1.1rem;
  }

  .blog-news-list .blog-card .intro-article-img-wrapper img,
  .blog-news-list .blog-card .item-image img {
    height: 168px;
  }

  .blog-news-list .blog-sidebar .sp-module,
  .blog-news-list .blog-sidebar .module {
    padding: 1rem;
  }
}

/* =========================================================
   API CHINA ดึงสินค้าจีน (itemid-418) — light + dark polish
   ========================================================= */

/* ---------- itemid-418 carousel/pricing: design lives in SPPB DB ---------- */
/* แก้สไตล์หลักผ่าน SP Page Builder (addon settings + Custom CSS) เพื่อให้แก้ในแอดมินได้ */
body.itemid-418 #section-id-1656320180208 #column-wrap-id-1656320180136,
body.itemid-418 #section-id-1656320180208 #column-wrap-id-1656320180139,
body.itemid-418 #section-id-1656320180208 #column-wrap-id-1656320180142 {
  display: flex;
  flex-direction: column;
}

body.itemid-418 #section-id-1656320180208 .addon-root-pricing,
body.itemid-418 #section-id-1656320180208 .addon-root-pricing > [id^="sppb-addon-"],
body.itemid-418 #section-id-1656320180208 .sppb-addon-pricing-table,
body.itemid-418 #section-id-1656320180208 .sppb-pricing-box {
  height: 100%;
}

/* อย่าให้กฎหัวข้อทั่วไปทับสีป้ายแพ็กเกจ */
html.hu-theme-light body.itemid-418 #section-id-1656320180208 .sppb-pricing-title {
  color: inherit !important;
}

/* Watermark "API Services" — เฉพาะหัวข้อแรกที่เป็นตัวใหญ่พื้นหลัง */
body.itemid-418 #section-id-1656319420456 .addon-root-heading:first-child .sppb-addon-title {
  opacity: 0.1 !important;
  pointer-events: none;
  z-index: 0;
  position: relative;
}

html.hu-theme-light body.itemid-418 #section-id-1656319420456 .addon-root-heading:first-child .sppb-addon-title {
  color: #152033 !important;
}

html.hu-theme-dark body.itemid-418 #section-id-1656319420456 .addon-root-heading:first-child .sppb-addon-title {
  color: #ffffff !important;
}

/* หัวข้อจริง "API E-commerce..." ต้องชัด */
body.itemid-418 #section-id-1656319420456 .addon-root-heading:not(:first-child) .sppb-addon-title {
  opacity: 1 !important;
  position: relative;
  z-index: 2;
  font-size: clamp(1.5rem, 3.2vw, 2.25rem) !important;
}

html.hu-theme-light body.itemid-418 #section-id-1656319420456 .addon-root-heading:not(:first-child) .sppb-addon-title {
  color: #152033 !important;
}

html.hu-theme-dark body.itemid-418 #section-id-1656319420456 .addon-root-heading:not(:first-child) .sppb-addon-title {
  color: #ffffff !important;
}

/* Section พื้นหลัง gradient เข้ม — คืนข้อความขาว */
html.hu-theme-light #section-id-1685347588283,
html.hu-theme-light #section-id-1685347588283 .sppb-addon-title,
html.hu-theme-light #section-id-1685347588283 .sppb-addon-text,
html.hu-theme-light #section-id-1685347588283 .sppb-addon-content,
html.hu-theme-light #section-id-1685347588283 .sppb-addon-content *,
html.hu-theme-light #section-id-1685347588283 h1,
html.hu-theme-light #section-id-1685347588283 h2,
html.hu-theme-light #section-id-1685347588283 h3,
html.hu-theme-light #section-id-1685347588283 p,
html.hu-theme-light #section-id-1685347588289,
html.hu-theme-light #section-id-1685347588289 .sppb-addon-title,
html.hu-theme-light #section-id-1685347588289 .sppb-addon-text,
html.hu-theme-light #section-id-1685347588289 .sppb-addon-content,
html.hu-theme-light #section-id-1685347588289 .sppb-addon-content *,
html.hu-theme-light #section-id-1685347588289 h1,
html.hu-theme-light #section-id-1685347588289 h2,
html.hu-theme-light #section-id-1685347588289 h3,
html.hu-theme-light #section-id-1685347588289 p,
html.hu-theme-light #section-id-1656320180211,
html.hu-theme-light #section-id-1656320180211 .sppb-addon-title,
html.hu-theme-light #section-id-1656320180211 .sppb-addon-text,
html.hu-theme-light #section-id-1656320180211 .sppb-addon-content,
html.hu-theme-light #section-id-1656320180211 .sppb-addon-content *,
html.hu-theme-light #section-id-1656320180211 h1,
html.hu-theme-light #section-id-1656320180211 h2,
html.hu-theme-light #section-id-1656320180211 h3,
html.hu-theme-light #section-id-1656320180211 p,
html.hu-theme-light #section-id-1656320180148,
html.hu-theme-light #section-id-1656320180148 .sppb-addon-title,
html.hu-theme-light #section-id-1656320180148 .sppb-addon-content,
html.hu-theme-light #section-id-1656320180148 .sppb-addon-content * {
  color: #ffffff !important;
}

/* Section พื้นสว่าง — หัวข้อ/ข้อความเข้ม */
html.hu-theme-light body.itemid-418 #section-id-1685377228342 .sppb-addon-title,
html.hu-theme-light body.itemid-418 #section-id-1685377228367 .sppb-addon-title,
html.hu-theme-light body.itemid-418 #section-id-1685377228312 .sppb-addon-title,
html.hu-theme-light body.itemid-418 #section-id-1656320180208 .sppb-addon-header .sppb-addon-title,
html.hu-theme-light body.itemid-418 #section-id-1685383828474 .sppb-addon-title {
  color: #152033 !important;
}

html.hu-theme-light body.itemid-418 #section-id-1685377228342 .sppb-addon-content,
html.hu-theme-light body.itemid-418 #section-id-1685377228342 .sppb-addon-text,
html.hu-theme-light body.itemid-418 #section-id-1685377228367 .sppb-addon-content,
html.hu-theme-light body.itemid-418 #section-id-1685377228367 .sppb-addon-text,
html.hu-theme-light body.itemid-418 #section-id-1685377228312 .sppb-addon-content,
html.hu-theme-light body.itemid-418 #section-id-1685377228312 .sppb-addon-text {
  color: #3a4558 !important;
}

/* Hero title */
html.hu-theme-light body.itemid-418 #section-id-1656319420390 .sppb-addon-title {
  color: #152033 !important;
}

html.hu-theme-light body.itemid-418 #section-id-1635931021408 .sppb-addon-content,
html.hu-theme-light body.itemid-418 #section-id-1635931021408 .sppb-addon-text,
html.hu-theme-light body.itemid-418 #section-id-1635931021408 p {
  color: #2c3a52 !important;
}

/* โลโก้ขาวในเนื้อหาหน้านี้ */
html.hu-theme-light body.itemid-418 .sp-page-builder img[src*="logo-w.png"] {
  content: url("/images/logo-l.png");
}

/* ข่าว/บทความบนหน้านี้ */
html.hu-theme-light body.itemid-418 .sppb-addon-articles h3 a {
  color: #152033 !important;
}

html.hu-theme-light body.itemid-418 .sppb-addon-articles h3 a:hover {
  color: #0a8f94 !important;
}

html.hu-theme-light body.itemid-418 .sppb-addon-articles .sppb-meta-category,
html.hu-theme-light body.itemid-418 .sppb-addon-articles .sppb-meta-author,
html.hu-theme-light body.itemid-418 .sppb-addon-articles .sppb-article-introtext {
  color: #5a6578 !important;
}

/* Mobile */
@media (max-width: 767.98px) {
  body.itemid-418 #section-id-1656319420456 .sppb-addon-header:first-child .sppb-addon-title {
    font-size: clamp(2.5rem, 14vw, 4rem) !important;
  }
}

/* =========================================================
   API China Systems (itemid-413) — light + dark polish
   ========================================================= */

/* Accordion: Our services */
body.itemid-413 #section-id-1635485860633 .sppb-addon-accordion .sppb-panel {
  border: 0 !important;
  margin-bottom: 12px !important;
  border-radius: 14px !important;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}

body.itemid-413 #section-id-1635485860633 .sppb-addon-accordion .sppb-panel-heading {
  display: flex !important;
  align-items: center !important;
  gap: 0 !important;
  width: 100% !important;
  padding: 14px 16px !important;
  border-radius: 14px !important;
  transition: background-color .25s ease, color .25s ease;
  text-align: left !important;
}

/* + และตัวเลขเป็นชิปเดียวกัน — น้ำหนักเส้นสมดุล */
body.itemid-413 #section-id-1635485860633 .sppb-addon-accordion .sppb-accordion-icon-wrap {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 34px !important;
  width: 34px !important;
  min-width: 34px !important;
  max-width: 34px !important;
  height: 34px !important;
  min-height: 34px !important;
  max-height: 34px !important;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 10px 0 0 10px !important;
  background: rgba(10, 143, 148, 0.1) !important;
  border: 1.5px solid rgba(10, 143, 148, 0.32) !important;
  border-right: 0 !important;
  box-sizing: border-box !important;
  line-height: 1 !important;
  overflow: hidden !important;
  transform: none !important;
  left: auto !important;
  top: auto !important;
}

/* ซ่อน FA + ที่บาง — วาด + / − ด้วย CSS ให้หนาเท่าตัวเลข */
body.itemid-413 #section-id-1635485860633 .sppb-addon-accordion .sppb-accordion-icon-wrap i,
body.itemid-413 #section-id-1635485860633 .sppb-addon-accordion .sppb-accordion-icon-wrap .fa,
body.itemid-413 #section-id-1635485860633 .sppb-addon-accordion .sppb-accordion-icon-wrap .fas {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  border: 0 !important;
  color: transparent !important;
  font-size: 0 !important;
}

body.itemid-413 #section-id-1635485860633 .sppb-addon-accordion .sppb-accordion-icon-wrap::before,
body.itemid-413 #section-id-1635485860633 .sppb-addon-accordion .sppb-accordion-icon-wrap::after {
  content: "" !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  background: #0a8f94 !important;
  border-radius: 1px !important;
  transform: translate(-50%, -50%) !important;
  pointer-events: none !important;
}

/* เส้นนอนของ + (และ − เมื่อเปิด) */
body.itemid-413 #section-id-1635485860633 .sppb-addon-accordion .sppb-accordion-icon-wrap::before {
  width: 13px !important;
  height: 3px !important;
}

/* เส้นตั้งของ + — ซ่อนเมื่อเปิด (เหลือแค่ −) */
body.itemid-413 #section-id-1635485860633 .sppb-addon-accordion .sppb-accordion-icon-wrap::after {
  width: 3px !important;
  height: 13px !important;
  opacity: 1 !important;
  transition: opacity .2s ease !important;
}

body.itemid-413 #section-id-1635485860633 .sppb-addon-accordion .sppb-panel-heading.active .sppb-accordion-icon-wrap {
  background: #0a8f94 !important;
  border-color: #0a8f94 !important;
  transform: none !important;
  width: 34px !important;
  height: 34px !important;
}

body.itemid-413 #section-id-1635485860633 .sppb-addon-accordion .sppb-panel-heading.active .sppb-accordion-icon-wrap::before,
body.itemid-413 #section-id-1635485860633 .sppb-addon-accordion .sppb-panel-heading.active .sppb-accordion-icon-wrap::after {
  background: #ffffff !important;
}

body.itemid-413 #section-id-1635485860633 .sppb-addon-accordion .sppb-panel-heading.active .sppb-accordion-icon-wrap::after {
  opacity: 0 !important;
}

body.itemid-413 #section-id-1635485860633 .sppb-addon-accordion .sppb-panel-title {
  position: static !important;
  display: flex !important;
  align-items: center !important;
  flex: 1 1 auto !important;
  gap: 12px !important;
  margin: 0 !important;
  padding: 0 !important;
  font-size: 1.05rem !important;
  font-weight: 600 !important;
  line-height: 1.4 !important;
}

body.itemid-413 #section-id-1635485860633 .sppb-addon-accordion .sppb-panel-title strong {
  position: static !important;
  left: auto !important;
  top: auto !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 auto !important;
  min-width: 2.35em !important;
  height: 34px !important;
  margin: 0 !important;
  padding: 0 11px 0 8px !important;
  border-radius: 0 10px 10px 0 !important;
  background: rgba(10, 143, 148, 0.1) !important;
  border: 1.5px solid rgba(10, 143, 148, 0.32) !important;
  border-left: 0 !important;
  color: #0a8f94 !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  letter-spacing: 0.05em !important;
  font-variant-numeric: tabular-nums;
  line-height: 1 !important;
  box-sizing: border-box !important;
}

body.itemid-413 #section-id-1635485860633 .sppb-addon-accordion .sppb-panel-heading.active .sppb-panel-title strong {
  background: #0a8f94 !important;
  border-color: #0a8f94 !important;
  color: #ffffff !important;
}

html.hu-theme-dark body.itemid-413 #section-id-1635485860633 .sppb-addon-accordion .sppb-panel-heading.active .sppb-panel-title strong {
  background: #0a8f94 !important;
  border-color: #0a8f94 !important;
  color: #ffffff !important;
}

body.itemid-413 #section-id-1635485860633 .sppb-addon-accordion .sppb-panel-body {
  padding: 4px 18px 18px 78px !important;
  line-height: 1.7 !important;
}

html.hu-theme-light body.itemid-413 #section-id-1635485860633 .sppb-addon-accordion .sppb-panel {
  background: #ffffff !important;
  box-shadow: 0 8px 28px rgba(21, 32, 51, 0.08);
}

html.hu-theme-light body.itemid-413 #section-id-1635485860633 .sppb-addon-accordion .sppb-panel-heading {
  background: #ffffff !important;
  color: #152033 !important;
}

html.hu-theme-light body.itemid-413 #section-id-1635485860633 .sppb-addon-accordion .sppb-panel-heading.active {
  background: linear-gradient(135deg, #f3fbfb 0%, #eef7f8 100%) !important;
}

html.hu-theme-light body.itemid-413 #section-id-1635485860633 .sppb-addon-accordion .sppb-panel-body,
html.hu-theme-light body.itemid-413 #section-id-1635485860633 .sppb-addon-accordion .sppb-addon-text-block .sppb-addon-content {
  color: #4a5568 !important;
}

html.hu-theme-dark body.itemid-413 #section-id-1635485860633 .sppb-addon-accordion .sppb-panel {
  background: rgba(255, 255, 255, 0.04) !important;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

html.hu-theme-dark body.itemid-413 #section-id-1635485860633 .sppb-addon-accordion .sppb-panel-heading {
  background: transparent !important;
  color: #f3f6fb !important;
}

html.hu-theme-dark body.itemid-413 #section-id-1635485860633 .sppb-addon-accordion .sppb-panel-heading.active {
  background: rgba(10, 143, 148, 0.12) !important;
}

html.hu-theme-dark body.itemid-413 #section-id-1635485860633 .sppb-addon-accordion .sppb-panel-body,
html.hu-theme-dark body.itemid-413 #section-id-1635485860633 .sppb-addon-accordion .sppb-addon-text-block .sppb-addon-content {
  color: rgba(243, 246, 251, 0.78) !important;
}

html.hu-theme-dark body.itemid-413 #section-id-1635485860633 .sppb-addon-accordion .sppb-accordion-icon-wrap {
  background: rgba(10, 143, 148, 0.16) !important;
  border-color: rgba(95, 212, 216, 0.35) !important;
}

html.hu-theme-dark body.itemid-413 #section-id-1635485860633 .sppb-addon-accordion .sppb-accordion-icon-wrap::before,
html.hu-theme-dark body.itemid-413 #section-id-1635485860633 .sppb-addon-accordion .sppb-accordion-icon-wrap::after {
  background: #5fd4d8 !important;
}

html.hu-theme-dark body.itemid-413 #section-id-1635485860633 .sppb-addon-accordion .sppb-panel-heading.active .sppb-accordion-icon-wrap::before,
html.hu-theme-dark body.itemid-413 #section-id-1635485860633 .sppb-addon-accordion .sppb-panel-heading.active .sppb-accordion-icon-wrap::after {
  background: #ffffff !important;
}

html.hu-theme-dark body.itemid-413 #section-id-1635485860633 .sppb-addon-accordion .sppb-panel-title strong {
  background: rgba(10, 143, 148, 0.16) !important;
  border-color: rgba(95, 212, 216, 0.35) !important;
  color: #5fd4d8 !important;
}

/* Feature highlight carousel (เดิมเป็น testimonial) */
body.itemid-413 #sppb-addon-1635831783934 .sppb-testimonial-carousel-rating,
body.itemid-413 #sppb-addon-1635831783934 .sppb-testimonial-carousel-rating:before {
  display: none !important;
}

body.itemid-413 #sppb-addon-1635831783934 .sppb-carousel-extended-item {
  height: 100%;
  padding: 22px 22px 24px !important;
  border-radius: 18px !important;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

body.itemid-413 #sppb-addon-1635831783934 .sppb-carousel-extended-item:hover {
  transform: translateY(-4px);
}

body.itemid-413 #sppb-addon-1635831783934 .sppb-testimonial-carousel-content-wrap {
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

body.itemid-413 #sppb-addon-1635831783934 .sppb-testimonial-carousel-img-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
}

body.itemid-413 #sppb-addon-1635831783934 .sppb-testimonial-carousel-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.itemid-413 #sppb-addon-1635831783934 .sppb-testimonial-carousel-name {
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  line-height: 1.35 !important;
  margin-bottom: 4px !important;
}

body.itemid-413 #sppb-addon-1635831783934 .sppb-testimonial-carousel-designation {
  display: inline-block;
  font-size: .78rem !important;
  font-weight: 600 !important;
  letter-spacing: .02em;
  padding: 3px 10px;
  border-radius: 999px;
  line-height: 1.4;
}

body.itemid-413 #sppb-addon-1635831783934 .sppb-testimonial-carousel-message {
  font-size: .95rem !important;
  line-height: 1.7 !important;
  margin: 0 !important;
}

html.hu-theme-light body.itemid-413 #sppb-addon-1635831783934 .sppb-carousel-extended-item {
  background: #ffffff !important;
  box-shadow: 0 10px 30px rgba(21, 32, 51, 0.08);
  border: 1px solid rgba(21, 32, 51, 0.06);
}

html.hu-theme-light body.itemid-413 #sppb-addon-1635831783934 .sppb-testimonial-carousel-name {
  color: #152033 !important;
}

html.hu-theme-light body.itemid-413 #sppb-addon-1635831783934 .sppb-testimonial-carousel-designation {
  color: #0a8f94 !important;
  background: rgba(10, 143, 148, 0.1);
}

html.hu-theme-light body.itemid-413 #sppb-addon-1635831783934 .sppb-testimonial-carousel-message {
  color: #4a5568 !important;
}

html.hu-theme-dark body.itemid-413 #sppb-addon-1635831783934 .sppb-carousel-extended-item {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

html.hu-theme-dark body.itemid-413 #sppb-addon-1635831783934 .sppb-testimonial-carousel-name {
  color: #f3f6fb !important;
}

html.hu-theme-dark body.itemid-413 #sppb-addon-1635831783934 .sppb-testimonial-carousel-designation {
  color: #7ee0e4 !important;
  background: rgba(10, 143, 148, 0.18);
}

html.hu-theme-dark body.itemid-413 #sppb-addon-1635831783934 .sppb-testimonial-carousel-message {
  color: rgba(243, 246, 251, 0.78) !important;
}

/* 16 feature boxes */
body.itemid-413 #section-id-1695144738148 .sppb-addon-feature {
  height: 100%;
  padding: 22px 20px !important;
  border-radius: 16px !important;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

body.itemid-413 #section-id-1695144738148 .sppb-addon-feature:hover {
  transform: translateY(-3px);
}

body.itemid-413 #section-id-1695144738148 .sppb-feature-box-title {
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  line-height: 1.4 !important;
  margin-bottom: 8px !important;
}

body.itemid-413 #section-id-1695144738148 .sppb-addon-feature .sppb-addon-text {
  font-size: .92rem !important;
  line-height: 1.65 !important;
}

body.itemid-413 #section-id-1695144738148 .sppb-img-container img {
  width: 48px !important;
  height: 48px !important;
  object-fit: contain;
}

/* การ์ดฟีเจอร์พื้นขาวทั้งโหมด — บังคับข้อความเข้มให้อ่านได้เสมอ */
body.itemid-413 #section-id-1695144738148 .sppb-addon-feature,
html.hu-theme-light body.itemid-413 #section-id-1695144738148 .sppb-addon-feature,
html.hu-theme-dark body.itemid-413 #section-id-1695144738148 .sppb-addon-feature {
  background: #ffffff !important;
  border: 1px solid rgba(21, 32, 51, 0.08) !important;
  box-shadow: 0 8px 24px rgba(21, 32, 51, 0.08) !important;
}

body.itemid-413 #section-id-1695144738148 .sppb-feature-box-title,
body.itemid-413 #section-id-1695144738148 .sppb-addon-feature h3,
body.itemid-413 #section-id-1695144738148 .sppb-addon-feature .sppb-addon-title,
html.hu-theme-light body.itemid-413 #section-id-1695144738148 .sppb-feature-box-title,
html.hu-theme-dark body.itemid-413 #section-id-1695144738148 .sppb-feature-box-title,
html.hu-theme-light body.itemid-413 #section-id-1695144738148 .sppb-addon-feature h3,
html.hu-theme-dark body.itemid-413 #section-id-1695144738148 .sppb-addon-feature h3,
html.hu-theme-light body.itemid-413 #section-id-1695144738148 .sppb-addon-feature .sppb-addon-title,
html.hu-theme-dark body.itemid-413 #section-id-1695144738148 .sppb-addon-feature .sppb-addon-title {
  color: #152033 !important;
}

body.itemid-413 #section-id-1695144738148 .sppb-addon-feature .sppb-addon-text,
body.itemid-413 #section-id-1695144738148 .sppb-addon-feature .sppb-addon-text *,
html.hu-theme-light body.itemid-413 #section-id-1695144738148 .sppb-addon-feature .sppb-addon-text,
html.hu-theme-dark body.itemid-413 #section-id-1695144738148 .sppb-addon-feature .sppb-addon-text,
html.hu-theme-light body.itemid-413 #section-id-1695144738148 .sppb-addon-feature .sppb-addon-text *,
html.hu-theme-dark body.itemid-413 #section-id-1695144738148 .sppb-addon-feature .sppb-addon-text * {
  color: #4a5568 !important;
}

/* Plugin image cards — ทั้ง 4 ใบให้เหมือนกัน (ไม่ผูก ID รายใบ เพราะตอนคัดลอกได้ UUID ใหม่) */
body.itemid-413 #section-id-1635766036532 .sppb-col-md-3 .sppb-addon-single-image {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 210px;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: 22px 16px 18px !important;
  border-radius: 16px !important;
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  box-sizing: border-box;
}

body.itemid-413 #section-id-1635766036532 .sppb-col-md-3 .sppb-addon-single-image:hover {
  transform: translateY(-3px);
}

body.itemid-413 #section-id-1635766036532 .sppb-col-md-3 .sppb-addon-single-image .sppb-addon-single-image-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

body.itemid-413 #section-id-1635766036532 .sppb-col-md-3 .sppb-addon-single-image img {
  max-width: 88px !important;
  max-height: 88px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain;
}

body.itemid-413 #section-id-1635766036532 .sppb-col-md-3 .sppb-addon-single-image .sppb-addon-title {
  margin-top: 12px !important;
  margin-bottom: 0 !important;
  font-size: .92rem !important;
  font-weight: 600 !important;
  line-height: 1.35 !important;
}

html.hu-theme-light body.itemid-413 #section-id-1635766036532 .sppb-col-md-3 .sppb-addon-single-image {
  background: #ffffff !important;
  border: 1px solid rgba(21, 32, 51, 0.06);
  box-shadow: 0 8px 22px rgba(21, 32, 51, 0.06);
}

html.hu-theme-light body.itemid-413 #section-id-1635766036532 .sppb-col-md-3 .sppb-addon-single-image .sppb-addon-title {
  color: #152033 !important;
}

html.hu-theme-dark body.itemid-413 #section-id-1635766036532 .sppb-col-md-3 .sppb-addon-single-image {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

html.hu-theme-dark body.itemid-413 #section-id-1635766036532 .sppb-col-md-3 .sppb-addon-single-image .sppb-addon-title {
  color: #f3f6fb !important;
}

@media (max-width: 767.98px) {
  body.itemid-413 #section-id-1635766036532 .sppb-col-md-3 .sppb-addon-single-image {
    max-width: 180px;
    margin-bottom: 12px !important;
  }
}

/* Articles cards */
body.itemid-413 #section-id-1695052830847 .sppb-addon-article,
body.itemid-413 .sppb-addon-articles .sppb-addon-article {
  border-radius: 16px !important;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}

body.itemid-413 #section-id-1695052830847 .sppb-addon-article:hover,
body.itemid-413 .sppb-addon-articles .sppb-addon-article:hover {
  transform: translateY(-3px);
}

html.hu-theme-light body.itemid-413 #section-id-1695052830847 .sppb-addon-article,
html.hu-theme-light body.itemid-413 .sppb-addon-articles .sppb-addon-article {
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(21, 32, 51, 0.08);
}

html.hu-theme-dark body.itemid-413 #section-id-1695052830847 .sppb-addon-article,
html.hu-theme-dark body.itemid-413 .sppb-addon-articles .sppb-addon-article {
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

@media (max-width: 767.98px) {
  body.itemid-413 #sppb-addon-1635831783934 .sppb-carousel-extended-item {
    padding: 18px 16px !important;
  }

  body.itemid-413 #section-id-1695144738148 .sppb-addon-feature {
    margin-bottom: 12px;
  }
}


/* บทความ: บังคับสีอ่านได้ทั้งโหมด */
html.hu-theme-light body.itemid-413 #section-id-1695052830847 .sppb-addon-articles h3 a,
html.hu-theme-light body.itemid-413 #section-id-1695052830847 .sppb-addon-article-title,
html.hu-theme-light body.itemid-413 #section-id-1695052830847 .sppb-addon-articles .sppb-article-introtext {
  color: #152033 !important;
}
html.hu-theme-light body.itemid-413 #section-id-1695052830847 .sppb-addon-articles .sppb-article-introtext {
  color: #4a5568 !important;
}
html.hu-theme-dark body.itemid-413 #section-id-1695052830847 .sppb-addon-articles h3 a,
html.hu-theme-dark body.itemid-413 #section-id-1695052830847 .sppb-addon-article-title {
  color: #f3f6fb !important;
}
html.hu-theme-dark body.itemid-413 #section-id-1695052830847 .sppb-addon-articles .sppb-article-introtext {
  color: rgba(243,246,251,.78) !important;
}

/* itemid-413: หัวข้อบนพื้นเข้ม/น้ำเงินในโหมดสว่าง — บังคับสีขาวให้อ่านชัด */
html.hu-theme-light body.itemid-413 #section-id-1637661020215 .sppb-addon-header .sppb-addon-title,
html.hu-theme-light body.itemid-413 #section-id-1637661020215 .sppb-addon-title,
html.hu-theme-light body.itemid-413 #section-id-1637661020215 h1,
html.hu-theme-light body.itemid-413 #section-id-1637661020215 h2,
html.hu-theme-light body.itemid-413 #section-id-1637661020215 h3,
html.hu-theme-light body.itemid-413 #section-id-1637661020215 .sppb-addon-title strong,
html.hu-theme-light body.itemid-413 #column-id-1637661020214 .sppb-addon-header .sppb-addon-title,
html.hu-theme-light body.itemid-413 #column-id-1637661020214 .sppb-addon-title,
html.hu-theme-light body.itemid-413 #column-id-1637661020214 h1,
html.hu-theme-light body.itemid-413 #column-id-1637661020214 h2,
html.hu-theme-light body.itemid-413 #column-id-1637661020214 h3 {
  color: #ffffff !important;
}

html.hu-theme-light body.itemid-413 #section-id-1637661020215 #sppb-addon-1635830104877 .sppb-addon-title {
  color: rgba(255, 255, 255, 0.72) !important;
}

html.hu-theme-light body.itemid-413 #section-id-1637661020215 #sppb-addon-1635766036550 .sppb-addon-title,
html.hu-theme-light body.itemid-413 #section-id-1637661020215 #sppb-addon-1635766036550 .sppb-addon-title strong {
  color: #ffffff !important;
}

/* Showcase / CTA พื้น gradient น้ำเงิน */
html.hu-theme-light body.itemid-413 #section-id-1695180505042 .sppb-addon-title,
html.hu-theme-light body.itemid-413 #section-id-1695180505042 .sppb-addon-text,
html.hu-theme-light body.itemid-413 #section-id-1695180505042 .sppb-addon-content,
html.hu-theme-light body.itemid-413 #section-id-1695180505042 p,
html.hu-theme-light body.itemid-413 #section-id-1635830104854 .sppb-addon-title,
html.hu-theme-light body.itemid-413 #section-id-1635830104854 .sppb-addon-text,
html.hu-theme-light body.itemid-413 #section-id-1635830104854 .sppb-addon-content,
html.hu-theme-light body.itemid-413 #section-id-1635830104854 p {
  color: #ffffff !important;
}

/* Hero ซ้ายพื้นเข้ม */
html.hu-theme-light body.itemid-413 #section-id-1635485860667 .sppb-addon-header .sppb-addon-title,
html.hu-theme-light body.itemid-413 #section-id-1635485860667 .sppb-addon-title,
html.hu-theme-light body.itemid-413 #section-id-1635485860667 .sppb-addon-text,
html.hu-theme-light body.itemid-413 #section-id-1635485860667 .sppb-addon-content,
html.hu-theme-light body.itemid-413 #section-id-1635485860667 p {
  color: #ffffff !important;
}

/* การ์ดฟีเจอร์ขาวภายในพื้นเข้ม — คืนสีข้อความเข้ม */
html.hu-theme-light body.itemid-413 #section-id-1637661020215 #sppb-addon-1635831783934 .sppb-testimonial-carousel-name {
  color: #152033 !important;
}

html.hu-theme-light body.itemid-413 #section-id-1637661020215 #sppb-addon-1635831783934 .sppb-testimonial-carousel-message {
  color: #4a5568 !important;
}

html.hu-theme-light body.itemid-413 #section-id-1637661020215 #sppb-addon-1635831783934 .sppb-testimonial-carousel-designation {
  color: #0a8f94 !important;
}

/* Showcase image carousel — แสดงทีละรูปเต็มชัด (layout1) ไม่จางตอนสไลด์ */
body.itemid-413 #sppb-addon-1695180505101 .sppb-carousel-extended-item,
body.itemid-413 #sppb-addon-1695180505101 .sppb-carousel-extended-item.active,
body.itemid-413 #sppb-addon-1695180505101 .sppb-carousel-extended-item:not(.active),
body.itemid-413 #sppb-addon-1695180505101 .sppb-carousel-extended-item.clone {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
}

body.itemid-413 #sppb-addon-1695180505101 .sppb-carousel-extended-item {
  background: #ffffff !important;
  border-radius: 16px !important;
  padding: 16px !important;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

body.itemid-413 #sppb-addon-1695180505101 .sppb-carousel-extended-item img {
  opacity: 1 !important;
  display: block !important;
  width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
  border-radius: 10px;
}

body.itemid-413 #sppb-addon-1695180505101 .sppb-carousel-extended-nav-control {
  display: none !important;
}


/* ใบกลางเน้นนิดหน่อยด้วยเงา ไม่ใช้ opacity */
body.itemid-413 #sppb-addon-1695180505101 .sppb-carousel-extended-item-center {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22) !important;
  z-index: 2;
  position: relative;
}

/* =========================================================
   API China Platform (itemid-420) + Pricing (itemid-421)
   light + dark polish
   ========================================================= */

/* ---- Hero: always readable on navy ---- */
body.itemid-420 #section-id-1523429110056 {
  background: linear-gradient(160deg, #070d18 0%, #121b2f 55%, #0b1220 100%) !important;
  position: relative;
  overflow: hidden;
}

body.itemid-420 #section-id-1523429110056::before {
  content: "";
  position: absolute;
  inset: -20% auto auto 40%;
  width: 55vw;
  height: 55vw;
  max-width: 720px;
  max-height: 720px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10, 108, 255, 0.28) 0%, rgba(10, 108, 255, 0) 70%);
  pointer-events: none;
}

body.itemid-420 #section-id-1523429110056 .sppb-addon-title,
body.itemid-420 #section-id-1523429110056 .sppb-feature-box-title,
body.itemid-420 #section-id-1523429110056 .sppb-addon-text,
body.itemid-420 #section-id-1523429110056 .sppb-addon-content,
html.hu-theme-light body.itemid-420 #section-id-1523429110056 .sppb-addon-title,
html.hu-theme-light body.itemid-420 #section-id-1523429110056 .sppb-feature-box-title,
html.hu-theme-light body.itemid-420 #section-id-1523429110056 .sppb-addon-text,
html.hu-theme-dark body.itemid-420 #section-id-1523429110056 .sppb-addon-title,
html.hu-theme-dark body.itemid-420 #section-id-1523429110056 .sppb-feature-box-title,
html.hu-theme-dark body.itemid-420 #section-id-1523429110056 .sppb-addon-text {
  color: #ffffff !important;
}

body.itemid-420 #section-id-1523429110056 .major-color {
  color: #4da3ff !important;
}

body.itemid-420 #section-id-1523429110056 .sppb-addon-feature {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  box-shadow: none !important;
  border-radius: 14px !important;
  padding: 14px 16px !important;
  margin-bottom: 10px !important;
  backdrop-filter: blur(6px);
}

body.itemid-420 #section-id-1523429110056 .sppb-addon-feature .sppb-img-container img,
body.itemid-420 #section-id-1523429110056 .sppb-addon-feature img {
  width: 28px !important;
  height: 28px !important;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

body.itemid-420 #section-id-1523429110056 .sppb-btn {
  box-shadow: 0 10px 28px rgba(10, 108, 255, 0.45);
  padding: 12px 28px !important;
  font-weight: 700 !important;
}

/* ---- Partner logos strip ---- */
body.itemid-420 #section-id-1518414682280 {
  background: #ffffff !important;
  padding-top: 18px !important;
  padding-bottom: 18px !important;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

html.hu-theme-dark body.itemid-420 #section-id-1518414682280 {
  background: #141b2c !important;
  box-shadow: none;
}

body.itemid-420 #section-id-1518414682280 .sppb-addon-clients {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

body.itemid-420 #section-id-1518414682280 .sppb-addon-clients img {
  max-height: 52px !important;
  width: auto !important;
  object-fit: contain;
  padding: 6px 10px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid rgba(21, 32, 51, 0.08);
}

html.hu-theme-dark body.itemid-420 #section-id-1518414682280 .sppb-addon-clients img {
  background: #1c2438;
  border-color: rgba(255, 255, 255, 0.08);
}

/* ---- Highlight feature cards (3 cards) ---- */
body.itemid-420 #section-id-1518414682369 .sppb-addon-feature {
  border-radius: 18px !important;
  padding: 28px 22px !important;
  min-height: 100%;
}

html.hu-theme-light body.itemid-420 #section-id-1518414682369 .sppb-addon-feature {
  background: #152033 !important;
  border: 1px solid transparent !important;
  box-shadow: 0 16px 36px rgba(21, 32, 51, 0.18);
}

html.hu-theme-dark body.itemid-420 #section-id-1518414682369 .sppb-addon-feature {
  background: linear-gradient(180deg, #1a2438 0%, #121a2b 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
}

body.itemid-420 #section-id-1518414682369 .sppb-feature-box-title,
html.hu-theme-light body.itemid-420 #section-id-1518414682369 .sppb-feature-box-title,
html.hu-theme-dark body.itemid-420 #section-id-1518414682369 .sppb-feature-box-title {
  color: #ffffff !important;
  font-weight: 700 !important;
}

body.itemid-420 #section-id-1518414682369 .sppb-addon-feature .sppb-addon-text,
html.hu-theme-light body.itemid-420 #section-id-1518414682369 .sppb-addon-feature .sppb-addon-text,
html.hu-theme-dark body.itemid-420 #section-id-1518414682369 .sppb-addon-feature .sppb-addon-text {
  color: rgba(255, 255, 255, 0.78) !important;
}

body.itemid-420 #section-id-1518414682369 .sppb-addon-feature img {
  width: 56px !important;
  height: 56px !important;
  object-fit: contain;
  margin-bottom: 8px;
}

/* Shared pricing cards */
body.itemid-420 .sppb-pricing-box,
body.itemid-421 .sppb-pricing-box {
  border-radius: 18px !important;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
  height: 100%;
}

body.itemid-420 .sppb-pricing-box:hover,
body.itemid-421 .sppb-pricing-box:hover {
  transform: translateY(-4px);
}

html.hu-theme-light body.itemid-420 .sppb-pricing-box,
html.hu-theme-light body.itemid-421 .sppb-pricing-box {
  background: #ffffff !important;
  border: 1px solid rgba(21, 32, 51, 0.08);
  box-shadow: 0 12px 32px rgba(21, 32, 51, 0.08);
}

html.hu-theme-dark body.itemid-420 .sppb-pricing-box,
html.hu-theme-dark body.itemid-421 .sppb-pricing-box {
  background: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}

html.hu-theme-light body.itemid-420 .sppb-pricing-title,
html.hu-theme-light body.itemid-421 .sppb-pricing-title,
html.hu-theme-dark body.itemid-420 .sppb-pricing-title,
html.hu-theme-dark body.itemid-421 .sppb-pricing-title {
  color: #152033 !important;
}

html.hu-theme-light body.itemid-420 .sppb-pricing-price,
html.hu-theme-light body.itemid-421 .sppb-pricing-price,
html.hu-theme-dark body.itemid-420 .sppb-pricing-price,
html.hu-theme-dark body.itemid-421 .sppb-pricing-price {
  color: #0a6cff !important;
  font-weight: 800 !important;
}

html.hu-theme-light body.itemid-420 .sppb-pricing-features,
html.hu-theme-light body.itemid-421 .sppb-pricing-features,
html.hu-theme-dark body.itemid-420 .sppb-pricing-features,
html.hu-theme-dark body.itemid-421 .sppb-pricing-features,
html.hu-theme-light body.itemid-420 .sppb-pricing-features li,
html.hu-theme-light body.itemid-421 .sppb-pricing-features li,
html.hu-theme-dark body.itemid-420 .sppb-pricing-features li,
html.hu-theme-dark body.itemid-421 .sppb-pricing-features li {
  color: #4a5568 !important;
}

/* Feature cards (general + pricing page) */
body.itemid-420 .sppb-addon-feature,
body.itemid-421 .sppb-addon-feature {
  border-radius: 16px !important;
  padding: 22px 18px !important;
  transition: transform .25s ease, box-shadow .25s ease;
  height: 100%;
}

body.itemid-420 .sppb-addon-feature:hover,
body.itemid-421 .sppb-addon-feature:hover {
  transform: translateY(-3px);
}

html.hu-theme-light body.itemid-420 .sppb-addon-feature,
html.hu-theme-light body.itemid-421 .sppb-addon-feature {
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(21, 32, 51, 0.06);
  border: 1px solid rgba(21, 32, 51, 0.06);
}

html.hu-theme-dark body.itemid-420 #section-id-1518414683431 .sppb-addon-feature {
  background: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
}

html.hu-theme-light body.itemid-420 .sppb-feature-box-title,
html.hu-theme-light body.itemid-421 .sppb-feature-box-title {
  color: #152033 !important;
}

html.hu-theme-light body.itemid-420 .sppb-addon-feature .sppb-addon-text,
html.hu-theme-light body.itemid-421 .sppb-addon-feature .sppb-addon-text {
  color: #4a5568 !important;
}

html.hu-theme-dark body.itemid-420 #section-id-1518414683431 .sppb-feature-box-title,
html.hu-theme-dark body.itemid-420 #section-id-1518414683431 .sppb-addon-feature .sppb-addon-text {
  color: #152033 !important;
}

html.hu-theme-dark body.itemid-420 #section-id-1518414683431 .sppb-addon-feature .sppb-addon-text {
  color: #4a5568 !important;
}

/* Contact row cards */
html.hu-theme-dark body.itemid-420 #section-id-1518421990538 .sppb-addon-feature {
  background: #ffffff !important;
}

html.hu-theme-dark body.itemid-420 #section-id-1518421990538 .sppb-feature-box-title,
html.hu-theme-dark body.itemid-420 #section-id-1518421990538 .sppb-addon-text {
  color: #152033 !important;
}

/* Headings readability */
html.hu-theme-light body.itemid-420 .sppb-addon-header .sppb-addon-title,
html.hu-theme-light body.itemid-421 .sppb-addon-header .sppb-addon-title {
  color: #152033;
}

html.hu-theme-light body.itemid-420 .sppb-addon-text-block .sppb-addon-content,
html.hu-theme-light body.itemid-421 .sppb-addon-text-block .sppb-addon-content,
html.hu-theme-light body.itemid-420 .sppb-addon-text,
html.hu-theme-light body.itemid-421 .sppb-addon-text {
  color: #3a4558;
}

/* Watermark Package / API Services */
body.itemid-421 #sppb-addon-1629472851159 .sppb-addon-title,
body.itemid-421 #sppb-addon-1629812000377 .sppb-addon-title {
  opacity: 0.12 !important;
  pointer-events: none;
  letter-spacing: 0.02em;
}

html.hu-theme-light body.itemid-421 #sppb-addon-1629472851160 .sppb-addon-title,
html.hu-theme-light body.itemid-421 #sppb-addon-1629812000378 .sppb-addon-title {
  color: #152033 !important;
}

html.hu-theme-dark body.itemid-421 #sppb-addon-1629472851160 .sppb-addon-title {
  color: #ff8a3d !important;
}

html.hu-theme-dark body.itemid-421 #sppb-addon-1629812000378 .sppb-addon-title {
  color: #ff8a3d !important;
}

html.hu-theme-dark body.itemid-421 #sppb-addon-1629472851159 .sppb-addon-title,
html.hu-theme-dark body.itemid-421 #sppb-addon-1629812000377 .sppb-addon-title {
  color: rgba(255, 255, 255, 0.2) !important;
  opacity: 1 !important;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.35);
  color: transparent !important;
}

/* Platform page carousel */
body.itemid-420 #sppb-addon-1695146308781 .sppb-carousel-extended-item,
body.itemid-420 #sppb-addon-1695146308781 .sppb-carousel-extended-item.active,
body.itemid-420 #sppb-addon-1695146308781 .sppb-carousel-extended-item:not(.active),
body.itemid-420 #sppb-addon-1695146308781 .sppb-carousel-extended-item.clone {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
}

body.itemid-420 #sppb-addon-1695146308781 .sppb-carousel-extended-item {
  background: #ffffff !important;
  border-radius: 16px !important;
  padding: 16px !important;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

body.itemid-420 #sppb-addon-1695146308781 .sppb-carousel-extended-item img {
  opacity: 1 !important;
  display: block !important;
  width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
  border-radius: 10px;
}

body.itemid-420 #sppb-addon-1695146308781 .sppb-carousel-extended-nav-control {
  display: none !important;
}

/* Showcase section blue atmosphere + wave */
body.itemid-420 #section-id-1695146308778 {
  position: relative;
  background: linear-gradient(45deg, #00c6fb 0%, #005bea 100%) !important;
  overflow: hidden;
}

body.itemid-420 #section-id-1695146308778 .sppb-shape-container,
body.itemid-420 #section-id-1695146308778 .sppb-top-shape {
  z-index: 2;
}

body.itemid-420 #section-id-1695146308778 .sppb-addon-title,
body.itemid-420 #section-id-1695146308778 .sppb-addon-content,
body.itemid-420 #section-id-1695146308778 .sppb-addon-text,
html.hu-theme-light body.itemid-420 #section-id-1695146308778 .sppb-addon-title,
html.hu-theme-light body.itemid-420 #section-id-1695146308778 .sppb-addon-content,
html.hu-theme-light body.itemid-420 #section-id-1695146308778 .sppb-addon-text,
html.hu-theme-dark body.itemid-420 #section-id-1695146308778 .sppb-addon-title,
html.hu-theme-dark body.itemid-420 #section-id-1695146308778 .sppb-addon-content,
html.hu-theme-dark body.itemid-420 #section-id-1695146308778 .sppb-addon-text {
  color: #ffffff !important;
}

/* Pricing packages section soft top wave feel */
body.itemid-420 #section-id-1518414682627 {
  position: relative;
  padding-top: 40px !important;
}

body.itemid-420 #section-id-1518414682627 .sppb-addon-title,
body.itemid-420 #section-id-1518414682627 .sppb-addon-text,
body.itemid-420 #section-id-1518414682627 .sppb-addon-content,
html.hu-theme-light body.itemid-420 #section-id-1518414682627 .sppb-addon-title,
html.hu-theme-dark body.itemid-420 #section-id-1518414682627 .sppb-addon-title,
html.hu-theme-light body.itemid-420 #section-id-1518414682627 .sppb-addon-text,
html.hu-theme-dark body.itemid-420 #section-id-1518414682627 .sppb-addon-text,
html.hu-theme-light body.itemid-420 #section-id-1518414682627 .sppb-addon-content,
html.hu-theme-dark body.itemid-420 #section-id-1518414682627 .sppb-addon-content {
  color: #152033 !important;
}

html.hu-theme-dark body.itemid-420 #section-id-1518414682627 {
  background: #f4f7fc !important;
}

body.itemid-420 #section-id-1518414682627 .sppb-pricing-box {
  padding-top: 8px;
}

body.itemid-420 #section-id-1518414682627 .sppb-pricing-box .sppb-btn {
  width: 100%;
  font-weight: 700 !important;
}

/* Feature highlights section heading */
body.itemid-420 #section-id-1518414682369 .sppb-addon-header .sppb-addon-title .major-color {
  color: #0a6cff !important;
}

html.hu-theme-dark body.itemid-420 #section-id-1518414682369 > .sppb-row-container > .sppb-row > .sppb-col-md-12 .sppb-addon-title,
html.hu-theme-dark body.itemid-420 #sppb-addon-1526619355567 .sppb-addon-title {
  color: #f3f6fb !important;
}

/* Comparison section */
body.itemid-420 #section-id-1695146308781 {
  background: #121a2b !important;
  padding-top: 70px !important;
  padding-bottom: 70px !important;
}

body.itemid-420 #section-id-1695146308781 .sppb-addon-title,
body.itemid-420 #section-id-1695146308781 .sppb-addon-text,
body.itemid-420 #section-id-1695146308781 .sppb-addon-content,
html.hu-theme-light body.itemid-420 #section-id-1695146308781 .sppb-addon-title,
html.hu-theme-light body.itemid-420 #section-id-1695146308781 .sppb-addon-text,
html.hu-theme-light body.itemid-420 #section-id-1695146308781 .sppb-addon-content,
html.hu-theme-light body.itemid-421 #section-id-1653033464967 .sppb-addon-title,
html.hu-theme-light body.itemid-421 #section-id-1653033464967 .sppb-addon-text,
html.hu-theme-light body.itemid-421 #section-id-1653033464967 .sppb-addon-content {
  color: #ffffff !important;
}

/* Equal-height comparison row */
body.itemid-420 #section-id-1695146308781 .sppb-row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

body.itemid-420 #section-id-1695146308781 .sppb-row > [class*="sppb-col"] {
  display: flex;
  flex-direction: column;
}

body.itemid-420 #section-id-1695146308781 .sppb-column,
body.itemid-420 #section-id-1695146308781 .sppb-column-addons,
body.itemid-420 #section-id-1695146308781 .sppb-addon-pricing-table,
body.itemid-420 #section-id-1695146308781 .sppb-addon,
body.itemid-420 #section-id-1695146308781 .sppb-addon-content {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  height: 100%;
  width: 100%;
}

body.itemid-420 #sppb-addon-1695146308787 {
  display: none !important;
}

/* Shared comparison card shell — same size */
body.itemid-420 #sppb-addon-1695146308788 .sppb-pricing-box,
body.itemid-420 #sppb-addon-1695146308790 .sppb-pricing-box {
  display: flex !important;
  flex-direction: column !important;
  flex: 1 1 auto !important;
  height: 100% !important;
  min-height: 100% !important;
  border-radius: 18px !important;
  padding: 32px 28px !important;
  margin: 0 !important;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18) !important;
  border: 1px solid transparent !important;
  background-image: none !important;
  overflow: hidden;
  transform: none !important;
}

body.itemid-420 #sppb-addon-1695146308788 .sppb-pricing-box:hover,
body.itemid-420 #sppb-addon-1695146308790 .sppb-pricing-box:hover {
  transform: none !important;
}

body.itemid-420 #sppb-addon-1695146308788 .sppb-pricing-header,
body.itemid-420 #sppb-addon-1695146308790 .sppb-pricing-header,
body.itemid-420 #sppb-addon-1695146308788 .sppb-pricing-footer,
body.itemid-420 #sppb-addon-1695146308790 .sppb-pricing-footer {
  background: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}

body.itemid-420 #sppb-addon-1695146308788 .sppb-pricing-features,
body.itemid-420 #sppb-addon-1695146308790 .sppb-pricing-features {
  flex: 1 1 auto;
  margin: 18px 0 22px !important;
  text-align: left !important;
}

body.itemid-420 #sppb-addon-1695146308788 .sppb-pricing-features li,
body.itemid-420 #sppb-addon-1695146308790 .sppb-pricing-features li {
  font-size: 15px !important;
  line-height: 1.55 !important;
  padding: 8px 0 !important;
  border: 0 !important;
}

body.itemid-420 #sppb-addon-1695146308788 .sppb-pricing-title,
body.itemid-420 #sppb-addon-1695146308790 .sppb-pricing-title {
  font-size: 22px !important;
  font-weight: 700 !important;
  margin-bottom: 10px !important;
}

body.itemid-420 #sppb-addon-1695146308788 .sppb-pricing-price,
body.itemid-420 #sppb-addon-1695146308790 .sppb-pricing-price {
  font-size: 40px !important;
  font-weight: 800 !important;
  line-height: 1.15 !important;
}

body.itemid-420 #sppb-addon-1695146308788 .sppb-pricing-duration,
body.itemid-420 #sppb-addon-1695146308790 .sppb-pricing-duration {
  font-size: 15px !important;
}

body.itemid-420 #sppb-addon-1695146308788 .sppb-btn,
body.itemid-420 #sppb-addon-1695146308790 .sppb-btn {
  width: 100%;
  border-radius: 999px !important;
  font-weight: 700 !important;
  margin-top: auto !important;
}

/* Left: plain / secondary */
body.itemid-420 #sppb-addon-1695146308788 .sppb-pricing-box {
  background: #f3f6fb !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12) !important;
  opacity: 1;
}

body.itemid-420 #sppb-addon-1695146308788 .sppb-pricing-title,
body.itemid-420 #sppb-addon-1695146308788 .sppb-pricing-price,
body.itemid-420 #sppb-addon-1695146308788 .sppb-pricing-duration,
html.hu-theme-light body.itemid-420 #sppb-addon-1695146308788 .sppb-pricing-title,
html.hu-theme-dark body.itemid-420 #sppb-addon-1695146308788 .sppb-pricing-title,
html.hu-theme-light body.itemid-420 #sppb-addon-1695146308788 .sppb-pricing-price,
html.hu-theme-dark body.itemid-420 #sppb-addon-1695146308788 .sppb-pricing-price {
  color: #152033 !important;
}

body.itemid-420 #sppb-addon-1695146308788 .sppb-pricing-features,
body.itemid-420 #sppb-addon-1695146308788 .sppb-pricing-features li,
html.hu-theme-light body.itemid-420 #sppb-addon-1695146308788 .sppb-pricing-features li,
html.hu-theme-dark body.itemid-420 #sppb-addon-1695146308788 .sppb-pricing-features li {
  color: #3a4558 !important;
}

body.itemid-420 #sppb-addon-1695146308788 .sppb-btn {
  background: #ffffff !important;
  color: #152033 !important;
  border: 1.5px solid #152033 !important;
}

/* Right: featured API CHINA — solid blue, readable */
body.itemid-420 #sppb-addon-1695146308790 .sppb-pricing-box {
  background: #0a6cff !important;
  border-color: #3d8dff !important;
  box-shadow: 0 16px 36px rgba(10, 108, 255, 0.45) !important;
  position: relative;
}

body.itemid-420 #sppb-addon-1695146308790 .sppb-pricing-box::before {
  content: "แนะนำ";
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

body.itemid-420 #sppb-addon-1695146308790 .sppb-pricing-title,
body.itemid-420 #sppb-addon-1695146308790 .sppb-pricing-price,
body.itemid-420 #sppb-addon-1695146308790 .sppb-pricing-duration,
body.itemid-420 #sppb-addon-1695146308790 .sppb-pricing-features,
body.itemid-420 #sppb-addon-1695146308790 .sppb-pricing-features li,
html.hu-theme-light body.itemid-420 #sppb-addon-1695146308790 .sppb-pricing-title,
html.hu-theme-dark body.itemid-420 #sppb-addon-1695146308790 .sppb-pricing-title,
html.hu-theme-light body.itemid-420 #sppb-addon-1695146308790 .sppb-pricing-price,
html.hu-theme-dark body.itemid-420 #sppb-addon-1695146308790 .sppb-pricing-price,
html.hu-theme-light body.itemid-420 #sppb-addon-1695146308790 .sppb-pricing-features,
html.hu-theme-dark body.itemid-420 #sppb-addon-1695146308790 .sppb-pricing-features,
html.hu-theme-light body.itemid-420 #sppb-addon-1695146308790 .sppb-pricing-features li,
html.hu-theme-dark body.itemid-420 #sppb-addon-1695146308790 .sppb-pricing-features li,
html.hu-theme-light body.itemid-420 #sppb-addon-1695146308790 .sppb-pricing-duration,
html.hu-theme-dark body.itemid-420 #sppb-addon-1695146308790 .sppb-pricing-duration {
  color: #ffffff !important;
}

body.itemid-420 #sppb-addon-1695146308790 .sppb-pricing-features li i,
body.itemid-420 #sppb-addon-1695146308790 .sppb-pricing-features li .fa {
  color: #ffffff !important;
}

body.itemid-420 #sppb-addon-1695146308790 .sppb-btn {
  background: #ffffff !important;
  color: #0a6cff !important;
  border: none !important;
}

@media (max-width: 991.98px) {
  body.itemid-420 #sppb-addon-1695146308788 .sppb-pricing-box,
  body.itemid-420 #sppb-addon-1695146308790 .sppb-pricing-box {
    min-height: 0;
  }
}

/* Support section */
html.hu-theme-light body.itemid-420 #section-id-1518421990400 .sppb-addon-title {
  color: #152033 !important;
}

html.hu-theme-dark body.itemid-420 #section-id-1518421990400 .sppb-addon-title {
  color: #f3f6fb !important;
}

html.hu-theme-dark body.itemid-420 #section-id-1518421990400 .sppb-addon-text,
html.hu-theme-dark body.itemid-420 #section-id-1518421990400 .sppb-addon-content {
  color: rgba(243, 246, 251, 0.82) !important;
}

/* Images polish */
body.itemid-420 .sppb-addon-single-image img,
body.itemid-421 .sppb-addon-single-image img {
  border-radius: 14px;
}

body.itemid-420 #section-id-1518414683431 .sppb-addon-single-image,
body.itemid-420 #section-id-1518421990400 .sppb-addon-single-image {
  overflow: hidden;
  border-radius: 16px;
}

html.hu-theme-light body.itemid-420 #section-id-1518414683431 .sppb-addon-single-image,
html.hu-theme-light body.itemid-420 #section-id-1518421990400 .sppb-addon-single-image {
  box-shadow: 0 12px 30px rgba(21, 32, 51, 0.1);
}

/* Clients logos */
body.itemid-420 .sppb-addon-clients img,
body.itemid-421 .sppb-addon-clients img {
  filter: none;
  opacity: 0.92;
  transition: opacity .2s ease, transform .2s ease;
}

body.itemid-420 .sppb-addon-clients img:hover,
body.itemid-421 .sppb-addon-clients img:hover {
  opacity: 1;
  transform: translateY(-2px);
}

html.hu-theme-dark body.itemid-421 .sppb-addon-clients img {
  filter: brightness(1.05);
}

/* Customization highlight on pricing page */
body.itemid-421 #section-id-1653033465146 .sppb-addon-text-block,
body.itemid-421 #sppb-addon-1653033464978 {
  border-radius: 16px;
}

html.hu-theme-light body.itemid-421 #sppb-addon-1653033464975 .sppb-addon-content {
  color: #0a6cff !important;
  font-weight: 700;
}

html.hu-theme-dark body.itemid-421 #sppb-addon-1653033464975 .sppb-addon-content {
  color: #7eb6ff !important;
  font-weight: 700;
}

/* Plan list rows — compact horizontal plans (light/dark) */
body.itemid-421 #section-id-1653033464995 {
  position: relative;
  overflow: hidden;
  padding-top: 56px !important;
  padding-bottom: 56px !important;
}

html.hu-theme-light body.itemid-421 #section-id-1653033464995 {
  background:
    radial-gradient(circle at 12% 10%, rgba(10, 108, 255, 0.08), transparent 40%),
    linear-gradient(180deg, #f7f9fc 0%, #eef3fb 100%) !important;
}

html.hu-theme-dark body.itemid-421 #section-id-1653033464995 {
  background:
    radial-gradient(circle at 14% 8%, rgba(10, 108, 255, 0.16), transparent 42%),
    linear-gradient(180deg, #0b1220 0%, #121a2b 100%) !important;
}

body.itemid-421 #section-id-1653033464995 .sppb-row-container {
  max-width: 1100px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Headings */
html.hu-theme-light body.itemid-421 #column-wrap-id-1653033464955 .sppb-addon-title,
html.hu-theme-light body.itemid-421 #sppb-addon-1653033464956 .sppb-addon-title {
  color: #102039 !important;
}

html.hu-theme-dark body.itemid-421 #column-wrap-id-1653033464955 .sppb-addon-title,
html.hu-theme-dark body.itemid-421 #sppb-addon-1653033464956 .sppb-addon-title {
  color: #f3f6fb !important;
}

body.itemid-421 #sppb-addon-1653033464956 .sppb-addon-title {
  font-weight: 800 !important;
  font-size: 28px !important;
  line-height: 1.3 !important;
}

body.itemid-421 #sppb-addon-1653033464958 .sppb-addon-title {
  color: #16edf3 !important;
  font-weight: 800 !important;
}

html.hu-theme-light body.itemid-421 #sppb-addon-1653033464958 .sppb-addon-title {
  color: #0a6cff !important;
}

body.itemid-421 #column-wrap-id-1653033464957 .sppb-addon-content,
body.itemid-421 #sppb-addon-1653033464958 .sppb-addon-content {
  color: rgba(243, 246, 251, 0.7) !important;
}

html.hu-theme-light body.itemid-421 #column-wrap-id-1653033464957 .sppb-addon-content,
html.hu-theme-light body.itemid-421 #sppb-addon-1653033464958 .sppb-addon-content {
  color: #4a5568 !important;
}

/* Kill white addon wrappers */
body.itemid-421 #section-id-1653033464995 .clearfix,
body.itemid-421 #section-id-1653033464995 [class*="sppb-wow"],
body.itemid-421 #section-id-1653033464995 [id^="sppb-addon-165303346496"] {
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 0 10px !important;
  border: none !important;
}

body.itemid-421 #section-id-1653033464995 #column-wrap-id-1653033464959 {
  padding-left: 8px !important;
  padding-right: 8px !important;
}

/* Horizontal compact plan rows */
body.itemid-421 #section-id-1653033464995 .sppb-pricing-box {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  gap: 12px 16px;
  min-height: 0 !important;
  height: auto !important;
  padding: 14px 18px !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

html.hu-theme-light body.itemid-421 #section-id-1653033464995 .sppb-pricing-box {
  background: #ffffff !important;
  border: 1px solid rgba(21, 32, 51, 0.08) !important;
  box-shadow: 0 6px 18px rgba(21, 32, 51, 0.06) !important;
}

html.hu-theme-dark body.itemid-421 #section-id-1653033464995 .sppb-pricing-box {
  background: linear-gradient(90deg, #1a2438 0%, #151e30 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.10) !important;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22) !important;
}

body.itemid-421 #section-id-1653033464995 .sppb-pricing-box:hover {
  transform: translateY(-2px);
}

html.hu-theme-dark body.itemid-421 #section-id-1653033464995 .sppb-pricing-box:hover {
  border-color: rgba(10, 108, 255, 0.45) !important;
  box-shadow: 0 12px 28px rgba(10, 108, 255, 0.18) !important;
}

body.itemid-421 #section-id-1653033464995 .sppb-pricing-header,
body.itemid-421 #section-id-1653033464995 .sppb-pricing-price-container,
body.itemid-421 #section-id-1653033464995 .sppb-pricing-features,
body.itemid-421 #section-id-1653033464995 .sppb-pricing-footer {
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  box-shadow: none !important;
}

body.itemid-421 #section-id-1653033464995 .sppb-pricing-header {
  flex: 0 0 140px;
  min-width: 120px;
  text-align: left !important;
}

body.itemid-421 #section-id-1653033464995 .sppb-pricing-title {
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  display: block !important;
  font-size: 18px !important;
  font-weight: 800 !important;
  letter-spacing: 0.01em;
  line-height: 1.2 !important;
}

html.hu-theme-light body.itemid-421 #section-id-1653033464995 .sppb-pricing-title {
  color: #152033 !important;
}

html.hu-theme-dark body.itemid-421 #section-id-1653033464995 .sppb-pricing-title {
  color: #f3f6fb !important;
}

body.itemid-421 #section-id-1653033464995 .sppb-pricing-features {
  flex: 1 1 auto;
  text-align: left !important;
}

body.itemid-421 #section-id-1653033464995 .sppb-pricing-features ul {
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

body.itemid-421 #section-id-1653033464995 .sppb-pricing-features li {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  margin: 0 !important;
  padding: 6px 10px !important;
  border: none !important;
  border-radius: 999px !important;
  font-size: 13px !important;
  line-height: 1.2 !important;
  font-weight: 600 !important;
  white-space: nowrap;
}

html.hu-theme-light body.itemid-421 #section-id-1653033464995 .sppb-pricing-features li {
  color: #3a4558 !important;
  background: #f3f6fb !important;
}

html.hu-theme-dark body.itemid-421 #section-id-1653033464995 .sppb-pricing-features li {
  color: rgba(243, 246, 251, 0.9) !important;
  background: rgba(255, 255, 255, 0.06) !important;
}

body.itemid-421 #section-id-1653033464995 .sppb-pricing-features li i {
  color: #16a34a !important;
}

body.itemid-421 #section-id-1653033464995 .sppb-pricing-price-container {
  flex: 0 0 120px;
  text-align: right !important;
}

body.itemid-421 #section-id-1653033464995 .sppb-pricing-price {
  display: block;
  font-size: 26px !important;
  font-weight: 800 !important;
  line-height: 1.1 !important;
  color: #0a6cff !important;
  margin: 0 !important;
}

html.hu-theme-dark body.itemid-421 #section-id-1653033464995 .sppb-pricing-price {
  color: #6eb6ff !important;
}

body.itemid-421 #section-id-1653033464995 .sppb-pricing-duration {
  display: block;
  font-size: 12px !important;
  margin-top: 2px;
  font-weight: 500 !important;
}

html.hu-theme-light body.itemid-421 #section-id-1653033464995 .sppb-pricing-duration {
  color: #6b7a90 !important;
}

html.hu-theme-dark body.itemid-421 #section-id-1653033464995 .sppb-pricing-duration {
  color: rgba(243, 246, 251, 0.65) !important;
}

body.itemid-421 #section-id-1653033464995 .sppb-pricing-footer {
  flex: 0 0 auto;
}

body.itemid-421 #section-id-1653033464995 .sppb-btn {
  margin: 0 !important;
  width: auto !important;
  min-width: 0 !important;
  min-height: 34px !important;
  height: 34px !important;
  line-height: 1 !important;
  padding: 6px 14px !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  white-space: nowrap;
  border-radius: 999px !important;
}

html.hu-theme-light body.itemid-421 #section-id-1653033464995 .sppb-btn {
  background: #ffffff !important;
  color: #152033 !important;
  border: 1.5px solid #152033 !important;
  box-shadow: none !important;
}

html.hu-theme-light body.itemid-421 #section-id-1653033464995 .sppb-btn:hover,
html.hu-theme-light body.itemid-421 #section-id-1653033464995 .sppb-btn:focus {
  background: #152033 !important;
  color: #ffffff !important;
  border-color: #152033 !important;
}

html.hu-theme-dark body.itemid-421 #section-id-1653033464995 .sppb-btn {
  background: linear-gradient(135deg, #1a7bff 0%, #0a56d6 100%) !important;
  color: #ffffff !important;
  border: none !important;
  box-shadow: 0 8px 18px rgba(10, 108, 255, 0.28) !important;
}

html.hu-theme-dark body.itemid-421 #section-id-1653033464995 .sppb-btn:hover {
  background: linear-gradient(135deg, #0a56d6 0%, #0846b0 100%) !important;
  color: #ffffff !important;
}

@media (max-width: 991.98px) {
  body.itemid-421 #section-id-1653033464995 .sppb-pricing-box {
    flex-wrap: wrap !important;
    padding: 14px 14px !important;
  }

  body.itemid-421 #section-id-1653033464995 .sppb-pricing-header {
    flex: 0 0 100%;
  }

  body.itemid-421 #section-id-1653033464995 .sppb-pricing-features {
    flex: 1 1 100%;
  }

  body.itemid-421 #section-id-1653033464995 .sppb-pricing-price-container {
    flex: 1 1 auto;
    text-align: left !important;
  }
}

/* Buttons */
body.itemid-420 .sppb-btn,
body.itemid-421 .sppb-btn {
  border-radius: 999px !important;
  transition: transform .2s ease, box-shadow .2s ease;
}

body.itemid-420 .sppb-btn:hover,
body.itemid-421 .sppb-btn:hover {
  transform: translateY(-1px);
}

@media (max-width: 767.98px) {
  body.itemid-420 .sppb-pricing-box,
  body.itemid-421 .sppb-pricing-box,
  body.itemid-420 .sppb-addon-feature,
  body.itemid-421 .sppb-addon-feature {
    margin-bottom: 14px;
  }
}

/* =========================================================
   Pricing API China Platform (itemid-421) — polish pass
   ========================================================= */

/* Fix ADVANCED column squashed at tablet widths */
body.itemid-421 #column-wrap-id-1653033464893 {
  max-width: 25% !important;
  flex-basis: 25% !important;
}

@media (max-width: 1199.98px) {
  body.itemid-421 #column-wrap-id-1653033464893 {
    max-width: 50% !important;
    flex-basis: 50% !important;
  }
}

@media (max-width: 991.98px) {
  body.itemid-421 #column-wrap-id-1653033464893 {
    max-width: 50% !important;
    flex-basis: 50% !important;
  }
}

@media (max-width: 767.98px) {
  body.itemid-421 #column-wrap-id-1653033464893 {
    max-width: 100% !important;
    flex-basis: 100% !important;
  }
}

/* Package cards — wider row, tighter gutters, equal height */
body.itemid-421 #section-id-1629472851142 .sppb-row-container {
  max-width: 1320px !important;
  width: 100% !important;
  padding-left: 12px !important;
  padding-right: 12px !important;
}

body.itemid-421 #section-id-1629472851142 .sppb-row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  margin-left: -6px !important;
  margin-right: -6px !important;
}

body.itemid-421 #section-id-1629472851142 .sppb-row > [class*="sppb-col-md-3"] {
  display: flex;
  flex-direction: column;
  padding-left: 6px !important;
  padding-right: 6px !important;
}

/* Kill oversized addon side padding that shrinks the cards */
body.itemid-421 #section-id-1629472851142 .sppb-col-md-3 .sppb-addon-wrapper > .sppb-addon,
body.itemid-421 #section-id-1629472851142 .sppb-col-md-3 .sppb-addon.sppb-addon-pricing-table,
body.itemid-421 #section-id-1629472851142 .sppb-col-md-3 [class*="sppb-wow"] {
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

body.itemid-421 #section-id-1629472851142 .sppb-col-md-3 .sppb-addon.sppb-addon-pricing-table,
body.itemid-421 #section-id-1629472851142 .sppb-col-md-3 .clearfix {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* Force 4 columns on desktop (sm-6 was winning over md-3) */
@media (min-width: 992px) {
  body.itemid-421 #section-id-1629472851142 .sppb-row > .sppb-col-md-3 {
    flex: 0 0 25% !important;
    max-width: 25% !important;
    width: 25% !important;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  body.itemid-421 #section-id-1629472851142 .sppb-row > .sppb-col-md-3 {
    flex: 0 0 50% !important;
    max-width: 50% !important;
    width: 50% !important;
  }
}

body.itemid-421 #section-id-1629472851142 .sppb-col-md-3 .sppb-column,
body.itemid-421 #section-id-1629472851142 .sppb-col-md-3 .sppb-column-addons,
body.itemid-421 #section-id-1629472851142 .sppb-col-md-3 .sppb-addon,
body.itemid-421 #section-id-1629472851142 .sppb-col-md-3 .sppb-addon-content {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  height: 100%;
  width: 100%;
  overflow: visible !important;
}

body.itemid-421 #section-id-1629472851142 .sppb-row-container,
body.itemid-421 #section-id-1629472851142 .sppb-row {
  overflow: visible !important;
}

body.itemid-421 #section-id-1629472851142 .sppb-pricing-box {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
  border-radius: 18px !important;
  overflow: hidden;
  background: #ffffff !important;
  border: 1px solid rgba(21, 32, 51, 0.08) !important;
  box-shadow: 0 10px 28px rgba(21, 32, 51, 0.08) !important;
}

body.itemid-421 #section-id-1629472851142 .sppb-pricing-features {
  flex: 1 1 auto;
  text-align: left !important;
}

body.itemid-421 #section-id-1629472851142 .sppb-pricing-features li {
  color: #3a4558 !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
}

body.itemid-421 #section-id-1629472851142 .sppb-pricing-title {
  color: #152033 !important;
  font-weight: 800 !important;
  letter-spacing: 0.04em;
}

body.itemid-421 #section-id-1629472851142 .sppb-pricing-price {
  color: #0a6cff !important;
  font-weight: 800 !important;
}

body.itemid-421 #section-id-1629472851142 .sppb-btn {
  margin-top: auto !important;
  width: 100%;
  font-weight: 700 !important;
}

/* Featured PREMIUM — refined: blue header + white body */
body.itemid-421 #sppb-addon-1629729777747 .sppb-pricing-box,
body.itemid-421 .pkg-featured .sppb-pricing-box {
  border: 2px solid #0a6cff !important;
  box-shadow: 0 20px 44px rgba(10, 108, 255, 0.22) !important;
  position: relative;
  background: #ffffff !important;
  overflow: hidden !important;
}

body.itemid-421 #sppb-addon-1629729777747 .sppb-pricing-box::before {
  content: "แนะนำ";
  position: absolute;
  top: 12px;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #ff9a3d 0%, #ff7a1a 100%);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 5px 14px;
  border-radius: 999px;
  z-index: 4;
  box-shadow: 0 6px 14px rgba(255, 122, 26, 0.35);
  white-space: nowrap;
}

/* Customization highlight card — premium wide layout */
body.itemid-421 #section-id-1653033465146 {
  position: relative;
  overflow: hidden;
  padding-top: 64px !important;
  padding-bottom: 72px !important;
}

html.hu-theme-light body.itemid-421 #section-id-1653033465146 {
  background:
    radial-gradient(circle at 10% 20%, rgba(10, 108, 255, 0.08), transparent 40%),
    linear-gradient(180deg, #f7f9fc 0%, #eef3fb 100%) !important;
}

html.hu-theme-dark body.itemid-421 #section-id-1653033465146 {
  background:
    radial-gradient(circle at 12% 18%, rgba(10, 108, 255, 0.18), transparent 42%),
    linear-gradient(180deg, #0b1220 0%, #121a2b 100%) !important;
}

/* Section headings only — NOT the pricing card title */
html.hu-theme-dark body.itemid-421 #section-id-1653033465146 .sppb-col-md-6 .sppb-addon-title {
  color: #f3f6fb !important;
}

html.hu-theme-light body.itemid-421 #section-id-1653033465146 .sppb-col-md-6 .sppb-addon-title {
  color: #102039 !important;
}

body.itemid-421 #section-id-1653033465146 .sppb-row {
  align-items: stretch;
}

body.itemid-421 #section-id-1653033465146 #column-wrap-id-1653033464972,
body.itemid-421 #section-id-1653033465146 #column-wrap-id-1653033464974 {
  max-width: 50% !important;
  flex-basis: 50% !important;
}

body.itemid-421 #section-id-1653033465146 #column-wrap-id-1653033464976 {
  max-width: 100% !important;
  flex-basis: 100% !important;
}

body.itemid-421 #sppb-addon-wrapper-1653033464978,
body.itemid-421 #sppb-addon-1653033464978,
body.itemid-421 #sppb-addon-1653033464978 .sppb-addon-content,
body.itemid-421 #sppb-addon-1653033464978 .sppb-addon-pricing-table,
body.itemid-421 #sppb-addon-1653033464978 .sppb-pricing-box {
  width: 100% !important;
  max-width: 100% !important;
}

body.itemid-421 #sppb-addon-1653033464978,
body.itemid-421 #sppb-addon-1653033464978 .sppb-addon-pricing-table {
  padding: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
}

body.itemid-421 #sppb-addon-1653033464978 .sppb-pricing-box {
  display: grid !important;
  grid-template-columns: 1.4fr 0.9fr;
  grid-template-areas:
    "header header"
    "features price"
    "features footer";
  align-items: stretch !important;
  justify-content: stretch !important;
  background: #ffffff !important;
  border: 1px solid rgba(10, 108, 255, 0.22) !important;
  border-radius: 22px !important;
  overflow: hidden !important;
  box-shadow:
    0 24px 56px rgba(10, 108, 255, 0.14),
    0 2px 0 rgba(255, 255, 255, 0.6) inset !important;
}

body.itemid-421 #sppb-addon-1653033464978 .sppb-pricing-header {
  grid-area: header;
  background: linear-gradient(135deg, #1a7bff 0%, #0a56d6 55%, #0846b0 100%) !important;
  padding: 28px 36px !important;
  margin: 0 !important;
  text-align: left !important;
  position: relative;
}

body.itemid-421 #sppb-addon-1653033464978 .sppb-pricing-header::before {
  content: "แพ็กเกจพิเศษ";
  display: block;
  width: fit-content;
  background: linear-gradient(135deg, #ff9a3d 0%, #ff7a1a 100%);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
  border: none;
  box-shadow: 0 6px 14px rgba(255, 122, 26, 0.35);
  position: relative;
  z-index: 1;
}

body.itemid-421 #sppb-addon-1653033464978 .sppb-pricing-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 88% 20%, rgba(255, 255, 255, 0.18), transparent 40%),
    radial-gradient(circle at 12% 90%, rgba(255, 180, 90, 0.14), transparent 42%);
  pointer-events: none;
}

body.itemid-421 #sppb-addon-1653033464978 .sppb-pricing-title,
body.itemid-421 #sppb-addon-1653033464978 .sppb-addon-title,
html.hu-theme-light body.itemid-421 #sppb-addon-1653033464978 .sppb-pricing-title,
html.hu-theme-light body.itemid-421 #sppb-addon-1653033464978 .sppb-addon-title,
html.hu-theme-dark body.itemid-421 #sppb-addon-1653033464978 .sppb-pricing-title,
html.hu-theme-dark body.itemid-421 #sppb-addon-1653033464978 .sppb-addon-title {
  color: #ffffff !important;
  font-size: 28px !important;
  font-weight: 800 !important;
  letter-spacing: 0.02em !important;
  margin: 0 !important;
  position: relative;
  z-index: 1;
  text-align: left !important;
}

body.itemid-421 #sppb-addon-1653033464978 .sppb-pricing-features {
  grid-area: features;
  text-align: left !important;
  padding: 28px 32px 32px !important;
  margin: 0 !important;
  background: #ffffff !important;
  border-right: 1px solid rgba(21, 32, 51, 0.06);
}

body.itemid-421 #sppb-addon-1653033464978 .sppb-pricing-features > ul {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

body.itemid-421 #sppb-addon-1653033464978 .sppb-pricing-features .pricing-feature-list,
body.itemid-421 #sppb-addon-1653033464978 .sppb-pricing-features ul ul {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

body.itemid-421 #sppb-addon-1653033464978 .sppb-pricing-features li {
  list-style: none !important;
}

/* Hide empty nested spacer lis */
body.itemid-421 #sppb-addon-1653033464978 .sppb-pricing-features li:empty,
body.itemid-421 #sppb-addon-1653033464978 .sppb-pricing-features .pricing-feature-list > li:not(:has(i)) {
  display: none !important;
}

body.itemid-421 #sppb-addon-1653033464978 .sppb-pricing-features .pricing-feature-list > li,
body.itemid-421 #sppb-addon-1653033464978 .sppb-pricing-features ul ul > li {
  display: flex !important;
  align-items: center;
  gap: 10px;
  margin: 0 !important;
  padding: 12px 14px !important;
  background: #f5f8fd !important;
  border-radius: 12px !important;
  border: 1px solid rgba(21, 32, 51, 0.05) !important;
  font-size: 14px !important;
  line-height: 1.4 !important;
  color: #2b3648 !important;
  font-weight: 600 !important;
}

html.hu-theme-light body.itemid-421 #sppb-addon-1653033464978 .sppb-pricing-features li,
html.hu-theme-dark body.itemid-421 #sppb-addon-1653033464978 .sppb-pricing-features li {
  color: #2b3648 !important;
}

body.itemid-421 #sppb-addon-1653033464978 .sppb-pricing-features li i.fa-check,
body.itemid-421 #sppb-addon-1653033464978 .sppb-pricing-features li i.fa-check-circle {
  color: #16a34a !important;
  flex-shrink: 0;
}

body.itemid-421 #sppb-addon-1653033464978 .sppb-pricing-features li i.fa-star {
  color: #f59e0b !important;
  flex-shrink: 0;
}

body.itemid-421 #sppb-addon-1653033464978 .sppb-pricing-price-container {
  grid-area: price;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 36px 28px 8px !important;
  margin: 0 !important;
  background: linear-gradient(180deg, #f8fbff 0%, #eef4fc 100%) !important;
  text-align: center !important;
}

body.itemid-421 #sppb-addon-1653033464978 .sppb-pricing-price-container::before {
  content: "ราคาเริ่มต้น";
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #6b7a90;
  margin-bottom: 8px;
  text-transform: uppercase;
}

body.itemid-421 #sppb-addon-1653033464978 .sppb-pricing-price,
html.hu-theme-light body.itemid-421 #sppb-addon-1653033464978 .sppb-pricing-price,
html.hu-theme-dark body.itemid-421 #sppb-addon-1653033464978 .sppb-pricing-price {
  color: #0a56d6 !important;
  font-size: 40px !important;
  font-weight: 800 !important;
  line-height: 1.1 !important;
  margin: 0 !important;
}

body.itemid-421 #sppb-addon-1653033464978 .sppb-pricing-footer {
  grid-area: footer;
  padding: 12px 28px 32px !important;
  margin: 0 !important;
  background: linear-gradient(180deg, #eef4fc 0%, #e8f0fa 100%) !important;
  text-align: center !important;
}

body.itemid-421 #sppb-addon-1653033464978 .sppb-btn {
  margin-top: 0 !important;
  width: 100% !important;
  max-width: 280px;
  min-height: 48px;
  background: linear-gradient(135deg, #1a7bff 0%, #0a56d6 100%) !important;
  color: #ffffff !important;
  border: none !important;
  font-weight: 800 !important;
  box-shadow: 0 12px 24px rgba(10, 108, 255, 0.28) !important;
}

body.itemid-421 #sppb-addon-1653033464978 .sppb-btn:hover {
  background: linear-gradient(135deg, #0a56d6 0%, #0846b0 100%) !important;
  color: #ffffff !important;
}

@media (max-width: 991.98px) {
  body.itemid-421 #sppb-addon-1653033464978 .sppb-pricing-box {
    grid-template-columns: 1fr;
    grid-template-areas:
      "header"
      "features"
      "price"
      "footer";
  }

  body.itemid-421 #sppb-addon-1653033464978 .sppb-pricing-features {
    border-right: none;
    border-bottom: 1px solid rgba(21, 32, 51, 0.06);
  }

  body.itemid-421 #sppb-addon-1653033464978 .sppb-pricing-features .pricing-feature-list,
  body.itemid-421 #sppb-addon-1653033464978 .sppb-pricing-features ul ul {
    grid-template-columns: 1fr;
  }

  body.itemid-421 #section-id-1653033465146 #column-wrap-id-1653033464972,
  body.itemid-421 #section-id-1653033465146 #column-wrap-id-1653033464974 {
    max-width: 100% !important;
    flex-basis: 100% !important;
  }
}

@media (max-width: 575.98px) {
  body.itemid-421 #sppb-addon-1653033464978 .sppb-pricing-header {
    padding: 22px 20px !important;
  }

  body.itemid-421 #sppb-addon-1653033464978 .sppb-pricing-title,
  body.itemid-421 #sppb-addon-1653033464978 .sppb-addon-title {
    font-size: 22px !important;
  }

  body.itemid-421 #sppb-addon-1653033464978 .sppb-pricing-price {
    font-size: 32px !important;
  }
}

/* Clients / partner logos */
body.itemid-421 #section-id-1629812000521 .sppb-addon-clients {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 18px;
  align-items: center;
}

body.itemid-421 #section-id-1629812000521 .sppb-addon-clients img,
body.itemid-421 #sppb-addon-1629813165600 img {
  max-width: 72px !important;
  max-height: 56px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain;
  padding: 8px 10px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid rgba(21, 32, 51, 0.08);
  transform: none !important;
  opacity: 1 !important;
  filter: none !important;
}

html.hu-theme-dark body.itemid-421 #sppb-addon-1629813165600 img {
  background: #1c2438;
  border-color: rgba(255, 255, 255, 0.08);
}

body.itemid-421 #sppb-addon-1629813165600 .sppb-addon-clients-image:hover {
  transform: translateY(-2px) !important;
}

/* API package cards */
body.itemid-421 #section-id-1653033464992 {
  position: relative;
  padding-top: 72px !important;
  padding-bottom: 64px !important;
}

html.hu-theme-light body.itemid-421 #section-id-1653033464992 {
  background:
    radial-gradient(circle at 12% 10%, rgba(10, 108, 255, 0.08), transparent 40%),
    linear-gradient(180deg, #f7f9fc 0%, #eef3fb 100%) !important;
}

html.hu-theme-dark body.itemid-421 #section-id-1653033464992 {
  background:
    radial-gradient(circle at 14% 12%, rgba(10, 108, 255, 0.16), transparent 42%),
    linear-gradient(180deg, #0b1220 0%, #121a2b 100%) !important;
}

/* 1) Section title/subtitle under column-id-1653033464945 */
body.itemid-421 #column-id-1653033464945 .sppb-addon-title,
body.itemid-421 #column-wrap-id-1653033464945 .sppb-addon-title {
  font-weight: 800 !important;
}

html.hu-theme-light body.itemid-421 #column-id-1653033464945 .sppb-addon-title,
html.hu-theme-light body.itemid-421 #column-wrap-id-1653033464945 .sppb-addon-title {
  color: #102039 !important;
}

html.hu-theme-dark body.itemid-421 #column-id-1653033464945 .sppb-addon-title,
html.hu-theme-dark body.itemid-421 #column-wrap-id-1653033464945 .sppb-addon-title {
  color: #f3f6fb !important;
}

html.hu-theme-light body.itemid-421 #column-id-1653033464945 .sppb-addon-content,
html.hu-theme-light body.itemid-421 #column-wrap-id-1653033464945 .sppb-addon-content,
html.hu-theme-light body.itemid-421 #column-id-1653033464945 .sppb-addon-content *,
html.hu-theme-light body.itemid-421 #column-wrap-id-1653033464945 .sppb-addon-content * {
  color: #4a5568 !important;
}

html.hu-theme-dark body.itemid-421 #column-id-1653033464945 .sppb-addon-content,
html.hu-theme-dark body.itemid-421 #column-wrap-id-1653033464945 .sppb-addon-content,
html.hu-theme-dark body.itemid-421 #column-id-1653033464945 .sppb-addon-content *,
html.hu-theme-dark body.itemid-421 #column-wrap-id-1653033464945 .sppb-addon-content * {
  color: rgba(243, 246, 251, 0.78) !important;
}

body.itemid-421 #section-id-1653033464992 .sppb-row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  margin-left: -8px !important;
  margin-right: -8px !important;
}

@media (min-width: 992px) {
  body.itemid-421 #section-id-1653033464992 .sppb-row > .sppb-col-md-4 {
    flex: 0 0 33.333333% !important;
    max-width: 33.333333% !important;
    width: 33.333333% !important;
  }
}

body.itemid-421 #section-id-1653033464992 .sppb-col-md-4 .sppb-column,
body.itemid-421 #section-id-1653033464992 .sppb-col-md-4 .sppb-column-addons,
body.itemid-421 #section-id-1653033464992 .sppb-col-md-4 .sppb-addon,
body.itemid-421 #section-id-1653033464992 .sppb-col-md-4 .sppb-addon-content {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  height: 100%;
  width: 100%;
}

/* Kill oversized addon side padding */
body.itemid-421 #section-id-1653033464992 .sppb-col-md-4 [class*="sppb-wow"],
body.itemid-421 #section-id-1653033464992 .sppb-col-md-4 .clearfix {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* 2) API monthly package cards — polish */
body.itemid-421 #section-id-1653033464992 .sppb-pricing-box {
  border-radius: 18px !important;
  padding: 0 !important;
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  overflow: hidden !important;
  transition: transform .2s ease, box-shadow .2s ease;
}

html.hu-theme-light body.itemid-421 #section-id-1653033464992 .sppb-pricing-box {
  background: #ffffff !important;
  border: 1px solid rgba(21, 32, 51, 0.08) !important;
  box-shadow: 0 12px 30px rgba(21, 32, 51, 0.08) !important;
}

html.hu-theme-dark body.itemid-421 #section-id-1653033464992 .sppb-pricing-box {
  background: linear-gradient(180deg, #1a2438 0%, #151e30 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.10) !important;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28) !important;
}

body.itemid-421 #section-id-1653033464992 .sppb-pricing-box:hover {
  transform: translateY(-4px);
}

body.itemid-421 #section-id-1653033464992 .sppb-pricing-header,
body.itemid-421 #section-id-1653033464992 .sppb-pricing-price-container {
  padding: 20px 18px 16px !important;
  margin: 0 !important;
  text-align: center !important;
}

html.hu-theme-light body.itemid-421 #section-id-1653033464992 .sppb-pricing-header,
html.hu-theme-light body.itemid-421 #section-id-1653033464992 .sppb-pricing-price-container {
  background: linear-gradient(180deg, #f3f6fb 0%, #eaf0f8 100%) !important;
}

html.hu-theme-dark body.itemid-421 #section-id-1653033464992 .sppb-pricing-header,
html.hu-theme-dark body.itemid-421 #section-id-1653033464992 .sppb-pricing-price-container {
  background: linear-gradient(180deg, #24314a 0%, #1a2438 100%) !important;
}

html.hu-theme-light body.itemid-421 #section-id-1653033464992 .sppb-pricing-title {
  color: #152033 !important;
  background: transparent !important;
}

html.hu-theme-dark body.itemid-421 #section-id-1653033464992 .sppb-pricing-title {
  color: #f3f6fb !important;
  background: transparent !important;
}

body.itemid-421 #section-id-1653033464992 .sppb-pricing-title {
  display: block !important;
  width: 100%;
  font-size: 15px !important;
  font-weight: 800 !important;
  letter-spacing: 0.02em;
  margin: 0 0 10px !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

body.itemid-421 #section-id-1653033464992 .sppb-pricing-price {
  font-size: 28px !important;
  font-weight: 800 !important;
  color: #0a6cff !important;
  line-height: 1.15 !important;
}

html.hu-theme-dark body.itemid-421 #section-id-1653033464992 .sppb-pricing-price {
  color: #6eb6ff !important;
}

body.itemid-421 #section-id-1653033464992 .sppb-pricing-duration,
body.itemid-421 #section-id-1653033464992 .sppb-pricing-duration small {
  display: block;
  margin-top: 6px;
  font-size: 12px !important;
  line-height: 1.45 !important;
  font-weight: 500 !important;
}

html.hu-theme-light body.itemid-421 #section-id-1653033464992 .sppb-pricing-duration,
html.hu-theme-light body.itemid-421 #section-id-1653033464992 .sppb-pricing-duration small {
  color: #5a6578 !important;
}

html.hu-theme-dark body.itemid-421 #section-id-1653033464992 .sppb-pricing-duration,
html.hu-theme-dark body.itemid-421 #section-id-1653033464992 .sppb-pricing-duration small {
  color: rgba(243, 246, 251, 0.72) !important;
}

body.itemid-421 #section-id-1653033464992 .sppb-pricing-features {
  padding: 14px 18px 8px !important;
  margin-bottom: 10px !important;
  flex: 1 1 auto;
  text-align: left !important;
}

body.itemid-421 #section-id-1653033464992 .sppb-pricing-features ul {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

body.itemid-421 #section-id-1653033464992 .sppb-pricing-features li:empty,
body.itemid-421 #section-id-1653033464992 .sppb-pricing-features li:not(:has(i)) {
  display: none !important;
}

body.itemid-421 #section-id-1653033464992 .sppb-pricing-features li {
  font-size: 13px !important;
  line-height: 1.45 !important;
  padding: 8px 0 !important;
  margin: 0 !important;
  border-bottom: 1px solid rgba(21, 32, 51, 0.06);
}

html.hu-theme-light body.itemid-421 #section-id-1653033464992 .sppb-pricing-features li {
  color: #3a4558 !important;
}

html.hu-theme-dark body.itemid-421 #section-id-1653033464992 .sppb-pricing-features li {
  color: rgba(243, 246, 251, 0.88) !important;
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

body.itemid-421 #section-id-1653033464992 .sppb-pricing-footer {
  padding: 8px 18px 18px !important;
}

body.itemid-421 #section-id-1653033464992 .sppb-btn {
  width: 100%;
  min-height: 44px;
  font-size: 13px !important;
  white-space: nowrap;
  font-weight: 700 !important;
}

html.hu-theme-light body.itemid-421 #section-id-1653033464992 .sppb-btn {
  background: #ffffff !important;
  color: #152033 !important;
  border: 1.5px solid #152033 !important;
}

html.hu-theme-dark body.itemid-421 #section-id-1653033464992 .sppb-btn {
  background: linear-gradient(135deg, #1a7bff 0%, #0a56d6 100%) !important;
  color: #ffffff !important;
  border: none !important;
  box-shadow: 0 10px 22px rgba(10, 108, 255, 0.28) !important;
}

/* Feature grid (enabled) */
body.itemid-421 #section-id-1653033464963 {
  background: #f4f7fc !important;
  padding-top: 70px !important;
  padding-bottom: 70px !important;
}

html.hu-theme-dark body.itemid-421 #section-id-1653033464963 {
  background: #121a2b !important;
}

/* Kill white clearfix / wow wrappers that frame cards in dark mode */
html.hu-theme-dark body.itemid-421 #section-id-1653033464992 .clearfix,
html.hu-theme-dark body.itemid-421 #section-id-1653033464992 [class*="sppb-wow"],
html.hu-theme-dark body.itemid-421 #section-id-1653033464963 .clearfix,
html.hu-theme-dark body.itemid-421 #section-id-1653033464963 [class*="sppb-wow"] {
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  border: none !important;
  padding: 0 !important;
}

html.hu-theme-light body.itemid-421 #section-id-1653033464992 .clearfix,
html.hu-theme-light body.itemid-421 #section-id-1653033464992 [class*="sppb-wow"],
html.hu-theme-light body.itemid-421 #section-id-1653033464963 .clearfix,
html.hu-theme-light body.itemid-421 #section-id-1653033464963 [class*="sppb-wow"] {
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
}

/* Feature section main heading */
html.hu-theme-dark body.itemid-421 #section-id-1653033464963 .sppb-title-heading,
html.hu-theme-dark body.itemid-421 #section-id-1653033464963 > .sppb-row-container .sppb-col-md-12 .sppb-addon-title,
html.hu-theme-dark body.itemid-421 #section-id-1653033464963 .sppb-row > .sppb-col-md-12 .sppb-addon-title {
  color: #f3f6fb !important;
}

html.hu-theme-light body.itemid-421 #section-id-1653033464963 .sppb-title-heading,
html.hu-theme-light body.itemid-421 #section-id-1653033464963 > .sppb-row-container .sppb-col-md-12 .sppb-addon-title,
html.hu-theme-light body.itemid-421 #section-id-1653033464963 .sppb-row > .sppb-col-md-12 .sppb-addon-title {
  color: #102039 !important;
}
body.itemid-421 #section-id-1653033464963 .sppb-addon-feature,
body.itemid-421 #section-id-1653033464963 .sppb-addon-feature.mobile-variation-feature {
  border-radius: 16px !important;
  border: 1px solid rgba(21, 32, 51, 0.06) !important;
  box-shadow: 0 8px 22px rgba(21, 32, 51, 0.06) !important;
  padding: 22px 18px !important;
  min-height: 168px;
  outline: none !important;
}

html.hu-theme-light body.itemid-421 #section-id-1653033464963 .sppb-addon-feature,
html.hu-theme-light body.itemid-421 #section-id-1653033464963 .sppb-addon-feature.mobile-variation-feature {
  background: #ffffff !important;
}

html.hu-theme-dark body.itemid-421 #section-id-1653033464963 .sppb-addon-feature,
html.hu-theme-dark body.itemid-421 #section-id-1653033464963 .sppb-addon-feature.mobile-variation-feature {
  background: #1a2438 !important;
  border-color: rgba(255, 255, 255, 0.10) !important;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22) !important;
}

html.hu-theme-light body.itemid-421 #section-id-1653033464963 .sppb-feature-box-title,
html.hu-theme-light body.itemid-421 #section-id-1653033464963 .sppb-addon-feature .sppb-addon-title {
  color: #152033 !important;
}

html.hu-theme-dark body.itemid-421 #section-id-1653033464963 .sppb-feature-box-title,
html.hu-theme-dark body.itemid-421 #section-id-1653033464963 .sppb-addon-feature .sppb-addon-title,
html.hu-theme-dark body.itemid-421 #section-id-1653033464963 .sppb-addon-title {
  color: #f3f6fb !important;
}

html.hu-theme-light body.itemid-421 #section-id-1653033464963 .sppb-addon-feature .sppb-addon-text,
html.hu-theme-light body.itemid-421 #section-id-1653033464963 .sppb-addon-feature .sppb-addon-text * {
  color: #4a5568 !important;
}

html.hu-theme-dark body.itemid-421 #section-id-1653033464963 .sppb-addon-feature .sppb-addon-text,
html.hu-theme-dark body.itemid-421 #section-id-1653033464963 .sppb-addon-feature .sppb-addon-text *,
html.hu-theme-dark body.itemid-421 #section-id-1653033464963 .sppb-addon-feature .sppb-addon-content,
html.hu-theme-dark body.itemid-421 #section-id-1653033464963 .sppb-addon-feature .sppb-addon-content * {
  color: rgba(243, 246, 251, 0.78) !important;
}

html.hu-theme-dark body.itemid-421 #section-id-1653033464963 .sppb-addon-feature .sppb-feature-box-title {
  color: #f3f6fb !important;
}

/* Comparison section — centered + premium vs muted */
body.itemid-421 #section-id-1653033464975 {
  background:
    radial-gradient(circle at 50% 0%, rgba(10, 108, 255, 0.18), transparent 45%),
    linear-gradient(180deg, #0b1220 0%, #121a2b 100%) !important;
  padding-top: 80px !important;
  padding-bottom: 80px !important;
  overflow: hidden;
}

html.hu-theme-light body.itemid-421 #section-id-1653033464975 {
  background:
    radial-gradient(circle at 50% 0%, rgba(10, 108, 255, 0.10), transparent 45%),
    linear-gradient(180deg, #f7f9fc 0%, #eef3fb 100%) !important;
}

body.itemid-421 #section-id-1653033464975 .sppb-row-container {
  max-width: 1080px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

body.itemid-421 #section-id-1653033464975 .sppb-addon-title,
body.itemid-421 #section-id-1653033464975 .sppb-title-heading {
  color: #ffffff !important;
  text-align: center !important;
}

html.hu-theme-light body.itemid-421 #section-id-1653033464975 .sppb-addon-title,
html.hu-theme-light body.itemid-421 #section-id-1653033464975 .sppb-title-heading {
  color: #102039 !important;
}

body.itemid-421 #section-id-1653033464975 .sppb-addon-text,
body.itemid-421 #section-id-1653033464975 .sppb-addon-content {
  color: rgba(243, 246, 251, 0.78) !important;
  text-align: center !important;
}

html.hu-theme-light body.itemid-421 #section-id-1653033464975 .sppb-addon-text,
html.hu-theme-light body.itemid-421 #section-id-1653033464975 .sppb-addon-content {
  color: #4a5568 !important;
}

body.itemid-421 #section-id-1653033464975 .sppb-row {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: stretch !important;
  justify-content: center !important;
  margin-left: -10px !important;
  margin-right: -10px !important;
}

/* Title row full width */
body.itemid-421 #section-id-1653033464975 .sppb-row > .sppb-col-md-12 {
  flex: 0 0 100% !important;
  max-width: 100% !important;
  width: 100% !important;
  margin-bottom: 28px;
}

/* Hide broken duplicate-ID spacers; center the two cards */
body.itemid-421 #section-id-1653033464975 .sppb-row > .sppb-col-md-2 {
  display: none !important;
}

body.itemid-421 #section-id-1653033464975 .sppb-row > .sppb-col-md-4 {
  display: flex !important;
  flex-direction: column;
  flex: 0 0 44% !important;
  max-width: 440px !important;
  width: 44% !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
}

body.itemid-421 #section-id-1653033464975 .sppb-column,
body.itemid-421 #section-id-1653033464975 .sppb-column-addons,
body.itemid-421 #section-id-1653033464975 .sppb-addon-pricing-table,
body.itemid-421 #section-id-1653033464975 .sppb-addon,
body.itemid-421 #section-id-1653033464975 .sppb-addon-content {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  height: 100%;
  width: 100%;
}

html.hu-theme-dark body.itemid-421 #section-id-1653033464975 .clearfix,
html.hu-theme-dark body.itemid-421 #section-id-1653033464975 [class*="sppb-wow"],
html.hu-theme-light body.itemid-421 #section-id-1653033464975 .clearfix,
html.hu-theme-light body.itemid-421 #section-id-1653033464975 [class*="sppb-wow"] {
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
}

body.itemid-421 #sppb-addon-1653033464933 .sppb-pricing-box,
body.itemid-421 #sppb-addon-1653033464935 .sppb-pricing-box {
  display: flex !important;
  flex-direction: column !important;
  flex: 1 1 auto !important;
  height: 100% !important;
  min-height: 720px !important;
  border-radius: 22px !important;
  padding: 0 !important;
  background-image: none !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
}

/* Left — muted competitor */
body.itemid-421 #sppb-addon-1653033464933 .sppb-pricing-box {
  background: #f4f6fa !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18) !important;
  opacity: 0.92;
  filter: saturate(0.85);
}

html.hu-theme-light body.itemid-421 #sppb-addon-1653033464933 .sppb-pricing-box {
  background: #ffffff !important;
  border: 1px solid rgba(21, 32, 51, 0.08) !important;
  box-shadow: 0 12px 28px rgba(21, 32, 51, 0.08) !important;
  opacity: 1;
  filter: none;
}

body.itemid-421 #sppb-addon-1653033464933 .sppb-pricing-header,
body.itemid-421 #sppb-addon-1653033464933 .sppb-pricing-price-container {
  background: linear-gradient(180deg, #e8ecf2 0%, #f4f6fa 100%) !important;
  padding: 28px 24px 20px !important;
  margin: 0 !important;
  text-align: center !important;
  border-bottom: 1px solid rgba(21, 32, 51, 0.06);
}

html.hu-theme-light body.itemid-421 #sppb-addon-1653033464933 .sppb-pricing-header,
html.hu-theme-light body.itemid-421 #sppb-addon-1653033464933 .sppb-pricing-price-container {
  background: linear-gradient(180deg, #f3f6fb 0%, #ffffff 100%) !important;
}

body.itemid-421 #sppb-addon-1653033464933 .sppb-pricing-title {
  color: #5a6578 !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em;
  margin-bottom: 10px !important;
}

body.itemid-421 #sppb-addon-1653033464933 .sppb-pricing-price {
  color: #3a4558 !important;
  font-size: 34px !important;
  font-weight: 800 !important;
}

body.itemid-421 #sppb-addon-1653033464933 .sppb-pricing-features {
  padding: 18px 24px 8px !important;
  flex: 1 1 auto;
  text-align: left !important;
}

body.itemid-421 #sppb-addon-1653033464933 .sppb-pricing-features li {
  color: #4a5568 !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
  padding: 10px 0 !important;
  border-bottom: 1px solid rgba(21, 32, 51, 0.06);
}

body.itemid-421 #sppb-addon-1653033464933 .sppb-pricing-footer {
  padding: 8px 24px 24px !important;
}

body.itemid-421 #sppb-addon-1653033464933 .sppb-btn {
  margin-top: auto !important;
  width: 100%;
  min-height: 48px;
  font-weight: 700 !important;
  background: #ffffff !important;
  color: #5a6578 !important;
  border: 1.5px solid #c5ccd8 !important;
  box-shadow: none !important;
}

/* Right — API CHINA featured */
body.itemid-421 #sppb-addon-1653033464935 {
  position: relative;
  z-index: 2;
}

body.itemid-421 #sppb-addon-1653033464935 .sppb-pricing-box {
  background: linear-gradient(165deg, #1a7bff 0%, #0a56d6 48%, #0846b0 100%) !important;
  border: 2px solid rgba(255, 255, 255, 0.22) !important;
  box-shadow:
    0 26px 56px rgba(10, 108, 255, 0.42),
    0 0 0 6px rgba(10, 108, 255, 0.12) !important;
  transform: translateY(-12px) scale(1.02) !important;
  position: relative;
}

body.itemid-421 #sppb-addon-1653033464935 .sppb-pricing-box::before {
  content: "แนะนำ";
  position: absolute;
  top: 16px;
  right: 16px;
  left: auto;
  transform: none;
  background: linear-gradient(135deg, #ff9a3d 0%, #ff7a1a 100%);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: 999px;
  border: none;
  box-shadow: 0 8px 18px rgba(255, 122, 26, 0.4);
  z-index: 3;
  white-space: nowrap;
}

body.itemid-421 #sppb-addon-1653033464935 .sppb-pricing-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 12%, rgba(255, 255, 255, 0.18), transparent 40%),
    radial-gradient(circle at 10% 90%, rgba(255, 180, 90, 0.12), transparent 42%);
  pointer-events: none;
  border-radius: inherit;
}

body.itemid-421 #sppb-addon-1653033464935 .sppb-pricing-header,
body.itemid-421 #sppb-addon-1653033464935 .sppb-pricing-price-container {
  background: transparent !important;
  padding: 28px 24px 20px !important;
  margin: 0 !important;
  text-align: center !important;
  position: relative;
  z-index: 1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

body.itemid-421 #sppb-addon-1653033464935 .sppb-pricing-title {
  color: #ffffff !important;
  font-size: 20px !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  margin-bottom: 10px !important;
  background: transparent !important;
  padding: 0 !important;
}

body.itemid-421 #sppb-addon-1653033464935 .sppb-pricing-price,
body.itemid-421 #sppb-addon-1653033464935 .sppb-pricing-duration {
  color: #ffffff !important;
  position: relative;
  z-index: 1;
}

body.itemid-421 #sppb-addon-1653033464935 .sppb-pricing-price {
  font-size: 40px !important;
  font-weight: 800 !important;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.18);
}

body.itemid-421 #sppb-addon-1653033464935 .sppb-pricing-features {
  padding: 18px 24px 8px !important;
  flex: 1 1 auto;
  text-align: left !important;
  position: relative;
  z-index: 1;
}

body.itemid-421 #sppb-addon-1653033464935 .sppb-pricing-features li {
  color: rgba(255, 255, 255, 0.95) !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
  padding: 10px 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

body.itemid-421 #sppb-addon-1653033464935 .sppb-pricing-features li i,
body.itemid-421 #sppb-addon-1653033464935 .sppb-pricing-features li .fa {
  color: #7dffa8 !important;
}

body.itemid-421 #sppb-addon-1653033464935 .sppb-pricing-footer {
  padding: 8px 24px 24px !important;
  position: relative;
  z-index: 1;
}

body.itemid-421 #sppb-addon-1653033464935 .sppb-btn {
  margin-top: auto !important;
  width: 100%;
  min-height: 50px;
  font-weight: 800 !important;
  background: #ffffff !important;
  color: #0a56d6 !important;
  border: none !important;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18) !important;
}

body.itemid-421 #sppb-addon-1653033464935 .sppb-btn:hover {
  background: #f3f7ff !important;
  color: #0846b0 !important;
}

@media (max-width: 991.98px) {
  body.itemid-421 #section-id-1653033464975 .sppb-row > .sppb-col-md-4 {
    flex: 0 0 100% !important;
    max-width: 480px !important;
    width: 100% !important;
    margin-bottom: 18px;
  }

  body.itemid-421 #sppb-addon-1653033464933 .sppb-pricing-box,
  body.itemid-421 #sppb-addon-1653033464935 .sppb-pricing-box {
    min-height: 0 !important;
  }

  body.itemid-421 #sppb-addon-1653033464935 .sppb-pricing-box {
    transform: none !important;
  }
}

/* Plan rows styling moved to section block above */

/* CTA bottom */
html.hu-theme-dark body.itemid-421 #section-id-1653033464967 .sppb-addon-title,
html.hu-theme-light body.itemid-421 #section-id-1653033464967 .sppb-addon-title,
html.hu-theme-dark body.itemid-421 #section-id-1653033464967 .sppb-addon-text,
html.hu-theme-light body.itemid-421 #section-id-1653033464967 .sppb-addon-text {
  color: #ffffff !important;
}

@media (max-width: 991.98px) {
  body.itemid-421 #sppb-addon-1653033464933 .sppb-pricing-box,
  body.itemid-421 #sppb-addon-1653033464935 .sppb-pricing-box {
    min-height: 0 !important;
  }
}

/* =========================================================
   Pricing page — beauty polish (hero / PREMIUM / spacing)
   ========================================================= */

/* Hero atmosphere */
body.itemid-421 #section-id-1629472851142 {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(10, 108, 255, 0.12), transparent 42%),
    radial-gradient(circle at 88% 8%, rgba(255, 138, 61, 0.10), transparent 36%),
    linear-gradient(180deg, #f7f9fc 0%, #eef3fb 100%) !important;
  padding-top: 96px !important;
  padding-bottom: 72px !important;
}

html.hu-theme-dark body.itemid-421 #section-id-1629472851142 {
  background:
    radial-gradient(circle at 14% 16%, rgba(10, 108, 255, 0.22), transparent 44%),
    radial-gradient(circle at 86% 10%, rgba(255, 138, 61, 0.12), transparent 38%),
    linear-gradient(180deg, #0b1220 0%, #121a2b 100%) !important;
}

body.itemid-421 #sppb-addon-1629472851159 {
  position: relative;
  z-index: 0;
}

body.itemid-421 #sppb-addon-1629472851159 .sppb-addon-title {
  font-weight: 800 !important;
  letter-spacing: 0.04em !important;
  opacity: 0.08 !important;
  transform: translateY(-8px);
}

html.hu-theme-dark body.itemid-421 #sppb-addon-1629472851159 .sppb-addon-title {
  opacity: 1 !important;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.28);
  color: transparent !important;
}

body.itemid-421 #sppb-addon-1629472851160 .sppb-addon-title {
  position: relative;
  z-index: 1;
  font-weight: 800 !important;
  letter-spacing: -0.01em;
}

html.hu-theme-light body.itemid-421 #sppb-addon-1629472851160 .sppb-addon-title {
  color: #102039 !important;
}

html.hu-theme-dark body.itemid-421 #sppb-addon-1629472851160 .sppb-addon-title {
  color: #ff9a4d !important;
}

body.itemid-421 #sppb-addon-1629472851161 .sppb-addon-content {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7 !important;
  font-size: 16px !important;
}

html.hu-theme-light body.itemid-421 #sppb-addon-1629472851161 .sppb-addon-content {
  color: #4a5568 !important;
}

html.hu-theme-dark body.itemid-421 #sppb-addon-1629472851161 .sppb-addon-content {
  color: rgba(243, 246, 251, 0.78) !important;
}

/* Package cards — less internal padding so 4 cols don't look skinny */
body.itemid-421 #section-id-1629472851142 .sppb-pricing-box {
  padding: 0 !important;
  border-radius: 16px !important;
}

body.itemid-421 #section-id-1629472851142 .sppb-pricing-header,
body.itemid-421 #section-id-1629472851142 .sppb-pricing-price-container {
  background: linear-gradient(180deg, #f3f6fb 0%, #eaf0f8 100%) !important;
  padding: 18px 14px 16px !important;
  margin: 0 !important;
  border-bottom: 1px solid rgba(21, 32, 51, 0.06);
}

body.itemid-421 #section-id-1629472851142 .sppb-pricing-title {
  display: inline-block;
  background: #ffffff;
  border-radius: 999px;
  padding: 5px 11px !important;
  font-size: 12px !important;
  line-height: 1.2 !important;
  letter-spacing: 0.06em !important;
  margin-bottom: 10px !important;
  border: 1px solid rgba(21, 32, 51, 0.08);
}

body.itemid-421 #section-id-1629472851142 .sppb-pricing-price {
  font-size: 28px !important;
  line-height: 1.1 !important;
  margin: 0 !important;
}

body.itemid-421 #section-id-1629472851142 .sppb-pricing-features {
  padding: 12px 14px 4px !important;
  margin-bottom: 10px !important;
}

body.itemid-421 #section-id-1629472851142 .sppb-pricing-features ul {
  margin: 0 !important;
  padding: 0 !important;
}

body.itemid-421 #section-id-1629472851142 .sppb-pricing-features li {
  font-size: 13px !important;
  line-height: 1.4 !important;
  padding: 7px 0 !important;
  margin: 0 !important;
  border-bottom: 1px solid rgba(21, 32, 51, 0.05);
}

body.itemid-421 #section-id-1629472851142 .sppb-pricing-features li:last-child {
  border-bottom: 0;
}

body.itemid-421 #section-id-1629472851142 .sppb-pricing-footer {
  padding: 0 14px 16px !important;
}

body.itemid-421 #section-id-1629472851142 .sppb-btn {
  min-height: 44px;
  padding: 10px 12px !important;
  font-size: 13px !important;
  line-height: 1.2 !important;
  white-space: nowrap;
  background: #ffffff !important;
  color: #152033 !important;
  border: 1.5px solid #152033 !important;
  box-shadow: none !important;
}

body.itemid-421 #section-id-1629472851142 .sppb-btn:hover {
  background: #152033 !important;
  color: #ffffff !important;
}

/* PREMIUM featured — blue header band + readable white body */
body.itemid-421 #sppb-addon-1629729777747 {
  position: relative;
  z-index: 2;
  padding-top: 0;
}

body.itemid-421 #sppb-addon-1629729777747 .sppb-pricing-box {
  background: #ffffff !important;
  border: 2px solid #0a6cff !important;
  box-shadow: 0 22px 48px rgba(10, 108, 255, 0.24) !important;
  transform: translateY(-8px);
  overflow: hidden !important;
}

body.itemid-421 #sppb-addon-1629729777747 .sppb-pricing-box:hover {
  transform: translateY(-12px);
  box-shadow: 0 28px 56px rgba(10, 108, 255, 0.32) !important;
}

body.itemid-421 #sppb-addon-1629729777747 .sppb-pricing-header,
body.itemid-421 #sppb-addon-1629729777747 .sppb-pricing-price-container {
  background: linear-gradient(160deg, #1a7bff 0%, #0a56d6 55%, #0846b0 100%) !important;
  border-bottom: none !important;
  padding: 40px 14px 22px !important;
  border-radius: 14px 14px 0 0;
  position: relative;
}

body.itemid-421 #sppb-addon-1629729777747 .sppb-pricing-header::after,
body.itemid-421 #sppb-addon-1629729777747 .sppb-pricing-price-container::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.16), transparent 42%),
    radial-gradient(circle at 15% 90%, rgba(255, 200, 120, 0.10), transparent 40%);
  pointer-events: none;
  border-radius: inherit;
}

body.itemid-421 #sppb-addon-1629729777747 .sppb-pricing-title {
  display: block !important;
  background: transparent !important;
  color: #ffffff !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 0 8px !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

body.itemid-421 #sppb-addon-1629729777747 .sppb-pricing-price,
body.itemid-421 #sppb-addon-1629729777747 .sppb-pricing-duration,
html.hu-theme-light body.itemid-421 #sppb-addon-1629729777747 .sppb-pricing-price,
html.hu-theme-dark body.itemid-421 #sppb-addon-1629729777747 .sppb-pricing-price {
  color: #ffffff !important;
  position: relative;
  z-index: 1;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

body.itemid-421 #sppb-addon-1629729777747 .sppb-pricing-price {
  font-size: 30px !important;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

body.itemid-421 #sppb-addon-1629729777747 .sppb-pricing-features {
  background: #ffffff !important;
}

body.itemid-421 #sppb-addon-1629729777747 .sppb-pricing-features li,
html.hu-theme-light body.itemid-421 #sppb-addon-1629729777747 .sppb-pricing-features li,
html.hu-theme-dark body.itemid-421 #sppb-addon-1629729777747 .sppb-pricing-features li {
  color: #3a4558 !important;
  border-bottom-color: rgba(21, 32, 51, 0.06) !important;
}

body.itemid-421 #sppb-addon-1629729777747 .sppb-pricing-features li .fa-check,
body.itemid-421 #sppb-addon-1629729777747 .sppb-pricing-features li .fa-check-circle {
  color: #16a34a !important;
}

body.itemid-421 #sppb-addon-1629729777747 .sppb-pricing-features li .fa-times,
body.itemid-421 #sppb-addon-1629729777747 .sppb-pricing-features li .fa-times-circle {
  color: #ef4444 !important;
}

body.itemid-421 #sppb-addon-1629729777747 .sppb-pricing-features li .fa-star {
  color: #f59e0b !important;
}

body.itemid-421 #sppb-addon-1629729777747 .sppb-pricing-box::before {
  top: 12px;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #ff9a3d 0%, #ff7a1a 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 6px 14px rgba(255, 122, 26, 0.35);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 5px 14px;
  z-index: 4;
}

body.itemid-421 #sppb-addon-1629729777747 .sppb-pricing-footer {
  background: #ffffff !important;
}

body.itemid-421 #sppb-addon-1629729777747 .sppb-btn {
  background: linear-gradient(135deg, #1a7bff 0%, #0a56d6 100%) !important;
  color: #ffffff !important;
  border: none !important;
  font-weight: 800 !important;
  box-shadow: 0 10px 22px rgba(10, 108, 255, 0.28) !important;
}

body.itemid-421 #sppb-addon-1629729777747 .sppb-btn:hover {
  background: linear-gradient(135deg, #0a56d6 0%, #0846b0 100%) !important;
  color: #ffffff !important;
}

/* API monthly cards — spacing handled in theme block above */
body.itemid-421 #section-id-1653033464992 .sppb-pricing-features {
  margin-bottom: 10px !important;
}

/* Feature grid cards breathe more */
body.itemid-421 #section-id-1653033464963 .sppb-addon-feature {
  padding: 22px 18px !important;
  min-height: 168px;
}

body.itemid-421 #section-id-1653033464963 .sppb-feature-box-title {
  font-size: 15px !important;
  line-height: 1.45 !important;
  margin-top: 10px !important;
}

/* Comparison text denser → clearer */
body.itemid-421 #sppb-addon-1653033464933 .sppb-pricing-features li,
body.itemid-421 #sppb-addon-1653033464935 .sppb-pricing-features li {
  font-size: 15px !important;
  line-height: 1.55 !important;
  padding: 9px 0 !important;
}

@media (max-width: 1199.98px) {
  body.itemid-421 #sppb-addon-1629729777747 .sppb-pricing-box {
    transform: none;
  }
}

@media (max-width: 767.98px) {
  body.itemid-421 #section-id-1629472851142 {
    padding-top: 56px !important;
    padding-bottom: 40px !important;
  }

  body.itemid-421 #section-id-1629472851142 .sppb-pricing-price {
    font-size: 26px !important;
  }

  body.itemid-421 #section-id-1629472851142 .sppb-row > .sppb-col-md-3 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 8px !important;
    padding-right: 8px !important;
    margin-bottom: 12px;
  }
}


/* Fulfillment carousel titles — keep 1 line */
body.itemid-303 #section-id-1634557479421 .sppb-carousel-extended-item-title,
body.itemid-303 #section-id-1634557479421 .sppb-image-carousel-title,
body.itemid-303 #sppb-addon-1634797303132 .sppb-carousel-extended-item-title,
body.itemid-303 #sppb-addon-1634797303132 [class*="item-title"],
body.itemid-303 #sppb-addon-1634797303132 h4,
body.itemid-303 #sppb-addon-1634797303132 .sppb-carousel-extended-item-subtitle,
body.itemid-303 #sppb-addon-1634797303132 [class*="item-subtitle"],
body.itemid-303 #sppb-addon-1634797303132 [class*="subtitle"] {
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  line-height: 1.3 !important;
  max-width: 100%;
}

body.itemid-303 #sppb-addon-1634797303132 .sppb-carousel-extended-item-subtitle,
body.itemid-303 #sppb-addon-1634797303132 [class*="item-subtitle"] {
  font-size: clamp(1.05rem, 1.6vw, 1.35rem) !important;
}

/* =========================================================
   API Fulfillment — Why use accordion cards
   #sppb-addon-wrapper-jmMBIewwdMB_7XPLzrhvR
   ========================================================= */
body.itemid-303 #sppb-addon-wrapper-jmMBIewwdMB_7XPLzrhvR .sppb-addon-accordion .sppb-panel-group,
body.itemid-303 #sppb-addon-jmMBIewwdMB_7XPLzrhvR .sppb-panel-group {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
}

body.itemid-303 #sppb-addon-wrapper-jmMBIewwdMB_7XPLzrhvR .sppb-addon-accordion .sppb-panel,
body.itemid-303 #sppb-addon-jmMBIewwdMB_7XPLzrhvR .sppb-panel {
  border: 0 !important;
  margin: 0 !important;
  border-radius: 16px !important;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}

html.hu-theme-light body.itemid-303 #sppb-addon-wrapper-jmMBIewwdMB_7XPLzrhvR .sppb-addon-accordion .sppb-panel,
html.hu-theme-light body.itemid-303 #sppb-addon-jmMBIewwdMB_7XPLzrhvR .sppb-panel {
  background: #ffffff !important;
  box-shadow: 0 8px 28px rgba(21, 32, 51, 0.08);
  border: 1px solid rgba(21, 32, 51, 0.06) !important;
}

html.hu-theme-dark body.itemid-303 #sppb-addon-wrapper-jmMBIewwdMB_7XPLzrhvR .sppb-addon-accordion .sppb-panel,
html.hu-theme-dark body.itemid-303 #sppb-addon-jmMBIewwdMB_7XPLzrhvR .sppb-panel {
  background: rgba(255, 255, 255, 0.04) !important;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

body.itemid-303 #sppb-addon-wrapper-jmMBIewwdMB_7XPLzrhvR .sppb-addon-accordion .sppb-panel-heading,
body.itemid-303 #sppb-addon-jmMBIewwdMB_7XPLzrhvR .sppb-panel-heading {
  display: flex !important;
  align-items: center !important;
  gap: 0 !important;
  width: 100% !important;
  padding: 16px 18px !important;
  border-radius: 16px !important;
  background: transparent !important;
  text-align: left !important;
  transition: background-color .25s ease;
}

html.hu-theme-light body.itemid-303 #sppb-addon-wrapper-jmMBIewwdMB_7XPLzrhvR .sppb-panel-heading.active,
html.hu-theme-light body.itemid-303 #sppb-addon-jmMBIewwdMB_7XPLzrhvR .sppb-panel-heading.active {
  background: linear-gradient(135deg, #f3fbfb 0%, #eef7f8 100%) !important;
}

html.hu-theme-dark body.itemid-303 #sppb-addon-wrapper-jmMBIewwdMB_7XPLzrhvR .sppb-panel-heading.active,
html.hu-theme-dark body.itemid-303 #sppb-addon-jmMBIewwdMB_7XPLzrhvR .sppb-panel-heading.active {
  background: rgba(10, 143, 148, 0.12) !important;
}

/* + / number chip */
body.itemid-303 #sppb-addon-wrapper-jmMBIewwdMB_7XPLzrhvR .sppb-accordion-icon-wrap,
body.itemid-303 #sppb-addon-jmMBIewwdMB_7XPLzrhvR .sppb-accordion-icon-wrap {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 36px !important;
  width: 36px !important;
  min-width: 36px !important;
  max-width: 36px !important;
  height: 36px !important;
  min-height: 36px !important;
  max-height: 36px !important;
  margin: 0 !important;
  padding: 0 !important;
  left: auto !important;
  top: auto !important;
  border-radius: 10px 0 0 10px !important;
  background: rgba(10, 143, 148, 0.1) !important;
  border: 1.5px solid rgba(10, 143, 148, 0.32) !important;
  border-right: 0 !important;
  box-sizing: border-box !important;
  line-height: 1 !important;
  overflow: hidden !important;
  transform: none !important;
}

body.itemid-303 #sppb-addon-wrapper-jmMBIewwdMB_7XPLzrhvR .sppb-accordion-icon-wrap i,
body.itemid-303 #sppb-addon-wrapper-jmMBIewwdMB_7XPLzrhvR .sppb-accordion-icon-wrap .fa,
body.itemid-303 #sppb-addon-wrapper-jmMBIewwdMB_7XPLzrhvR .sppb-accordion-icon-wrap .fas,
body.itemid-303 #sppb-addon-jmMBIewwdMB_7XPLzrhvR .sppb-accordion-icon-wrap i,
body.itemid-303 #sppb-addon-jmMBIewwdMB_7XPLzrhvR .sppb-accordion-icon-wrap .fa,
body.itemid-303 #sppb-addon-jmMBIewwdMB_7XPLzrhvR .sppb-accordion-icon-wrap .fas {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  border: 0 !important;
  color: transparent !important;
  font-size: 0 !important;
}

body.itemid-303 #sppb-addon-wrapper-jmMBIewwdMB_7XPLzrhvR .sppb-accordion-icon-wrap::before,
body.itemid-303 #sppb-addon-wrapper-jmMBIewwdMB_7XPLzrhvR .sppb-accordion-icon-wrap::after,
body.itemid-303 #sppb-addon-jmMBIewwdMB_7XPLzrhvR .sppb-accordion-icon-wrap::before,
body.itemid-303 #sppb-addon-jmMBIewwdMB_7XPLzrhvR .sppb-accordion-icon-wrap::after {
  content: "" !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  background: #0a8f94 !important;
  border-radius: 1px !important;
  transform: translate(-50%, -50%) !important;
  pointer-events: none !important;
}

body.itemid-303 #sppb-addon-wrapper-jmMBIewwdMB_7XPLzrhvR .sppb-accordion-icon-wrap::before,
body.itemid-303 #sppb-addon-jmMBIewwdMB_7XPLzrhvR .sppb-accordion-icon-wrap::before {
  width: 13px !important;
  height: 3px !important;
}

body.itemid-303 #sppb-addon-wrapper-jmMBIewwdMB_7XPLzrhvR .sppb-accordion-icon-wrap::after,
body.itemid-303 #sppb-addon-jmMBIewwdMB_7XPLzrhvR .sppb-accordion-icon-wrap::after {
  width: 3px !important;
  height: 13px !important;
  opacity: 1 !important;
  transition: opacity .2s ease !important;
}

body.itemid-303 #sppb-addon-wrapper-jmMBIewwdMB_7XPLzrhvR .sppb-panel-heading.active .sppb-accordion-icon-wrap,
body.itemid-303 #sppb-addon-jmMBIewwdMB_7XPLzrhvR .sppb-panel-heading.active .sppb-accordion-icon-wrap {
  background: #0a8f94 !important;
  border-color: #0a8f94 !important;
  transform: none !important;
}

body.itemid-303 #sppb-addon-wrapper-jmMBIewwdMB_7XPLzrhvR .sppb-panel-heading.active .sppb-accordion-icon-wrap::before,
body.itemid-303 #sppb-addon-wrapper-jmMBIewwdMB_7XPLzrhvR .sppb-panel-heading.active .sppb-accordion-icon-wrap::after,
body.itemid-303 #sppb-addon-jmMBIewwdMB_7XPLzrhvR .sppb-panel-heading.active .sppb-accordion-icon-wrap::before,
body.itemid-303 #sppb-addon-jmMBIewwdMB_7XPLzrhvR .sppb-panel-heading.active .sppb-accordion-icon-wrap::after {
  background: #ffffff !important;
}

body.itemid-303 #sppb-addon-wrapper-jmMBIewwdMB_7XPLzrhvR .sppb-panel-heading.active .sppb-accordion-icon-wrap::after,
body.itemid-303 #sppb-addon-jmMBIewwdMB_7XPLzrhvR .sppb-panel-heading.active .sppb-accordion-icon-wrap::after {
  opacity: 0 !important;
}

body.itemid-303 #sppb-addon-wrapper-jmMBIewwdMB_7XPLzrhvR .sppb-panel-title,
body.itemid-303 #sppb-addon-jmMBIewwdMB_7XPLzrhvR .sppb-panel-title {
  position: static !important;
  display: flex !important;
  align-items: center !important;
  flex: 1 1 auto !important;
  gap: 12px !important;
  margin: 0 !important;
  padding: 0 !important;
  font-size: 1.05rem !important;
  font-weight: 600 !important;
  line-height: 1.35 !important;
  white-space: nowrap !important;
}

body.itemid-303 #sppb-addon-wrapper-jmMBIewwdMB_7XPLzrhvR .sppb-panel-title strong,
body.itemid-303 #sppb-addon-jmMBIewwdMB_7XPLzrhvR .sppb-panel-title strong {
  position: static !important;
  left: auto !important;
  top: auto !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 auto !important;
  min-width: 2.4em !important;
  height: 36px !important;
  margin: 0 !important;
  padding: 0 12px 0 8px !important;
  border-radius: 0 10px 10px 0 !important;
  background: rgba(10, 143, 148, 0.1) !important;
  border: 1.5px solid rgba(10, 143, 148, 0.32) !important;
  border-left: 0 !important;
  color: #0a8f94 !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  font-variant-numeric: tabular-nums;
  line-height: 1 !important;
  box-sizing: border-box !important;
}

body.itemid-303 #sppb-addon-wrapper-jmMBIewwdMB_7XPLzrhvR .sppb-panel-heading.active .sppb-panel-title strong,
body.itemid-303 #sppb-addon-jmMBIewwdMB_7XPLzrhvR .sppb-panel-heading.active .sppb-panel-title strong {
  background: #0a8f94 !important;
  border-color: #0a8f94 !important;
  color: #ffffff !important;
}

body.itemid-303 #sppb-addon-wrapper-jmMBIewwdMB_7XPLzrhvR .sppb-panel-body,
body.itemid-303 #sppb-addon-jmMBIewwdMB_7XPLzrhvR .sppb-panel-body {
  padding: 0 18px 18px 78px !important;
}

body.itemid-303 #sppb-addon-wrapper-jmMBIewwdMB_7XPLzrhvR .sppb-panel-body .sppb-addon-text,
body.itemid-303 #sppb-addon-wrapper-jmMBIewwdMB_7XPLzrhvR .sppb-panel-body .sppb-addon-content,
body.itemid-303 #sppb-addon-jmMBIewwdMB_7XPLzrhvR .sppb-panel-body .sppb-addon-text,
body.itemid-303 #sppb-addon-jmMBIewwdMB_7XPLzrhvR .sppb-panel-body .sppb-addon-content {
  margin: 0 !important;
  line-height: 1.7 !important;
  font-size: 0.95rem !important;
}

html.hu-theme-light body.itemid-303 #sppb-addon-wrapper-jmMBIewwdMB_7XPLzrhvR .sppb-panel-body,
html.hu-theme-light body.itemid-303 #sppb-addon-jmMBIewwdMB_7XPLzrhvR .sppb-panel-body {
  color: #4a5568 !important;
}

html.hu-theme-dark body.itemid-303 #sppb-addon-wrapper-jmMBIewwdMB_7XPLzrhvR .sppb-panel-title,
html.hu-theme-dark body.itemid-303 #sppb-addon-jmMBIewwdMB_7XPLzrhvR .sppb-panel-title {
  color: #f3f6fb !important;
}

html.hu-theme-dark body.itemid-303 #sppb-addon-wrapper-jmMBIewwdMB_7XPLzrhvR .sppb-accordion-icon-wrap,
html.hu-theme-dark body.itemid-303 #sppb-addon-jmMBIewwdMB_7XPLzrhvR .sppb-accordion-icon-wrap {
  background: rgba(10, 143, 148, 0.16) !important;
  border-color: rgba(95, 212, 216, 0.35) !important;
}

html.hu-theme-dark body.itemid-303 #sppb-addon-wrapper-jmMBIewwdMB_7XPLzrhvR .sppb-accordion-icon-wrap::before,
html.hu-theme-dark body.itemid-303 #sppb-addon-wrapper-jmMBIewwdMB_7XPLzrhvR .sppb-accordion-icon-wrap::after,
html.hu-theme-dark body.itemid-303 #sppb-addon-jmMBIewwdMB_7XPLzrhvR .sppb-accordion-icon-wrap::before,
html.hu-theme-dark body.itemid-303 #sppb-addon-jmMBIewwdMB_7XPLzrhvR .sppb-accordion-icon-wrap::after {
  background: #5fd4d8 !important;
}

html.hu-theme-dark body.itemid-303 #sppb-addon-wrapper-jmMBIewwdMB_7XPLzrhvR .sppb-panel-heading.active .sppb-accordion-icon-wrap::before,
html.hu-theme-dark body.itemid-303 #sppb-addon-wrapper-jmMBIewwdMB_7XPLzrhvR .sppb-panel-heading.active .sppb-accordion-icon-wrap::after,
html.hu-theme-dark body.itemid-303 #sppb-addon-jmMBIewwdMB_7XPLzrhvR .sppb-panel-heading.active .sppb-accordion-icon-wrap::before,
html.hu-theme-dark body.itemid-303 #sppb-addon-jmMBIewwdMB_7XPLzrhvR .sppb-panel-heading.active .sppb-accordion-icon-wrap::after {
  background: #ffffff !important;
}

html.hu-theme-dark body.itemid-303 #sppb-addon-wrapper-jmMBIewwdMB_7XPLzrhvR .sppb-panel-title strong,
html.hu-theme-dark body.itemid-303 #sppb-addon-jmMBIewwdMB_7XPLzrhvR .sppb-panel-title strong {
  background: rgba(10, 143, 148, 0.16) !important;
  border-color: rgba(95, 212, 216, 0.35) !important;
  color: #5fd4d8 !important;
}

html.hu-theme-dark body.itemid-303 #sppb-addon-wrapper-jmMBIewwdMB_7XPLzrhvR .sppb-panel-heading.active .sppb-panel-title strong,
html.hu-theme-dark body.itemid-303 #sppb-addon-jmMBIewwdMB_7XPLzrhvR .sppb-panel-heading.active .sppb-panel-title strong {
  background: #0a8f94 !important;
  border-color: #0a8f94 !important;
  color: #ffffff !important;
}

html.hu-theme-dark body.itemid-303 #sppb-addon-wrapper-jmMBIewwdMB_7XPLzrhvR .sppb-panel-body,
html.hu-theme-dark body.itemid-303 #sppb-addon-jmMBIewwdMB_7XPLzrhvR .sppb-panel-body {
  color: rgba(243, 246, 251, 0.78) !important;
}

@media (max-width: 767.98px) {
  body.itemid-303 #sppb-addon-wrapper-jmMBIewwdMB_7XPLzrhvR .sppb-panel-title,
  body.itemid-303 #sppb-addon-jmMBIewwdMB_7XPLzrhvR .sppb-panel-title {
    white-space: normal !important;
    font-size: 0.98rem !important;
  }

  body.itemid-303 #sppb-addon-wrapper-jmMBIewwdMB_7XPLzrhvR .sppb-panel-body,
  body.itemid-303 #sppb-addon-jmMBIewwdMB_7XPLzrhvR .sppb-panel-body {
    padding: 0 16px 16px 18px !important;
  }
}

/* API Fulfillment modal — fill popup, room for text + image */
body.itemid-303 .mfp-content .white-popup-block {
  width: min(800px, 94vw) !important;
  height: auto !important;
  max-height: min(90vh, 640px) !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
  padding: 18px 20px 16px !important;
  border-radius: 16px !important;
}

body.itemid-303 .mfp-content .modal-inner-block {
  max-height: none !important;
  overflow: visible !important;
  height: auto !important;
}

body.itemid-303 .mfp-content .api-ff-modal {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  gap: 8px !important;
}

body.itemid-303 .mfp-content .api-ff-modal__title {
  margin: 0 !important;
  font-size: clamp(1.15rem, 2vw, 1.35rem) !important;
  font-weight: 700 !important;
  color: #152033 !important;
  line-height: 1.3 !important;
}

body.itemid-303 .mfp-content .api-ff-modal__desc {
  margin: 0 0 2px !important;
  max-width: 38em !important;
  color: #4a5568 !important;
  font-size: 0.9rem !important;
  line-height: 1.5 !important;
}

body.itemid-303 .mfp-content .api-ff-modal__img {
  width: 100% !important;
  max-width: 100% !important;
  max-height: min(62vh, 430px) !important;
  height: auto !important;
  object-fit: contain !important;
  border-radius: 14px !important;
  display: block !important;
  margin: 0 auto !important;
}

html.hu-theme-dark body.itemid-303 .mfp-content .api-ff-modal__title {
  color: #f3f6fb !important;
}
html.hu-theme-dark body.itemid-303 .mfp-content .api-ff-modal__desc {
  color: rgba(243, 246, 251, 0.78) !important;
}

/* =========================================================
   API Fulfillment Pricing — package cards (itemid-313)
   ========================================================= */
body.itemid-313 #section-id-1635227870132 {
  padding-top: 48px !important;
  padding-bottom: 56px !important;
  overflow: visible !important;
}

/* ซ่อน shape จุดหลังแพ็กเกจ (bg-shape8) ที่ทับการ์ด */
body.itemid-313 #sppb-addon-wrapper-1635229438296,
body.itemid-313 #sppb-addon-1635229438296 {
  display: none !important;
}

body.itemid-313 #section-id-1635227870132 .sppb-row-container {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

body.itemid-313 #section-id-1635227870132 .sppb-row {
  align-items: stretch !important;
}

body.itemid-313 #section-id-1635227870132 .sppb-column,
body.itemid-313 #section-id-1635227870132 .sppb-column-addons,
body.itemid-313 #section-id-1635227870132 .sppb-addon-wrapper,
body.itemid-313 #section-id-1635227870132 .sppb-addon,
body.itemid-313 #section-id-1635227870132 .sppb-addon-content {
  height: 100% !important;
}

body.itemid-313 #section-id-1635227870132 .sppb-addon-wrapper {
  margin: 0 !important;
  padding: 0 10px !important;
  overflow: visible !important;
}

/* ตัดกรอบ/พื้นหลัง/scale จาก SPPB ที่ทำให้ออกนอกการ์ด */
body.itemid-313 #section-id-1635227870132 #sppb-addon-1635243367213,
body.itemid-313 #section-id-1635227870132 #sppb-addon-1635243367216,
body.itemid-313 #section-id-1635227870132 #sppb-addon-1635229705117,
body.itemid-313 #section-id-1635227870132 .sppb-addon-pricing-table {
  background: transparent !important;
  background-color: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  box-shadow: none !important;
  transform: none !important;
  height: 100% !important;
}

body.itemid-313 #section-id-1635227870132 #sppb-addon-1635243367213:hover,
body.itemid-313 #section-id-1635227870132 #sppb-addon-1635243367216:hover,
body.itemid-313 #section-id-1635227870132 #sppb-addon-1635229705117:hover {
  transform: none !important;
  box-shadow: none !important;
}

body.itemid-313 #section-id-1635227870132 .sppb-pricing-box {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
  min-height: 0 !important;
  margin: 0 !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  background: #ffffff !important;
  border: 1px solid rgba(21, 32, 51, 0.1) !important;
  box-shadow: 0 10px 28px rgba(21, 32, 51, 0.08) !important;
  transform: none !important;
  transition: box-shadow .25s ease;
}

html.hu-theme-light body.itemid-313 #section-id-1635227870132 .sppb-pricing-box:hover {
  box-shadow: 0 16px 36px rgba(21, 32, 51, 0.12) !important;
}

/* เอาพื้นหลังแปลกๆ ของ title / header ออก */
body.itemid-313 #section-id-1635227870132 .sppb-pricing-header {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  padding: 32px 22px 12px !important;
  margin: 0 !important;
  border: 0 !important;
}

body.itemid-313 #section-id-1635227870132 .sppb-addon-title.sppb-pricing-title,
body.itemid-313 #section-id-1635227870132 .sppb-pricing-title {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  padding: 0 0 6px !important;
  margin: 0 !important;
  font-weight: 800 !important;
  letter-spacing: 0.02em;
  font-size: 1.05rem !important;
  line-height: 1.35 !important;
}

html.hu-theme-light body.itemid-313 #section-id-1635227870132 .sppb-addon-title.sppb-pricing-title,
html.hu-theme-light body.itemid-313 #section-id-1635227870132 .sppb-pricing-title {
  color: #152033 !important;
}

body.itemid-313 #section-id-1635227870132 .sppb-pricing-price {
  background: transparent !important;
  color: #0a8f94 !important;
  font-weight: 800 !important;
  font-size: 2.35rem !important;
  line-height: 1.1 !important;
  padding: 4px 0 0 !important;
  margin: 0 !important;
}

body.itemid-313 #section-id-1635227870132 .sppb-pricing-price-container {
  background: transparent !important;
  background-image: none !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  box-shadow: none !important;
}

body.itemid-313 #section-id-1635227870132 .sppb-pricing-duration {
  background: transparent !important;
  color: #6b7280 !important;
}

body.itemid-313 #section-id-1635227870132 .sppb-pricing-features {
  flex: 1 1 auto;
  text-align: left !important;
  padding: 6px 22px 4px !important;
  margin: 0 !important;
  background: transparent !important;
}

body.itemid-313 #section-id-1635227870132 .sppb-pricing-features li {
  font-size: 14px !important;
  line-height: 1.5 !important;
  padding: 8px 0 !important;
  border-bottom: 1px solid rgba(21, 32, 51, 0.06);
  background: transparent !important;
}

html.hu-theme-light body.itemid-313 #section-id-1635227870132 .sppb-pricing-features li {
  color: #3a4558 !important;
}

body.itemid-313 #section-id-1635227870132 .sppb-pricing-features li:last-child {
  border-bottom: 0;
}

body.itemid-313 #section-id-1635227870132 .sppb-pricing-footer {
  margin-top: auto !important;
  padding: 0 !important;
  background: transparent !important;
}

body.itemid-313 #section-id-1635227870132 .sppb-btn {
  width: calc(100% - 44px) !important;
  margin: 14px 22px 22px !important;
  border-radius: 999px !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em;
  padding: 11px 16px !important;
}

/* Premium featured — เด่นด้วยขอบ/ป้าย ไม่ scale ไม่ล้น */
body.itemid-313 #sppb-addon-1635243367216,
body.itemid-313 #sppb-addon-1635243367216:hover {
  overflow: visible !important;
  transform: none !important;
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
}

body.itemid-313 #sppb-addon-1635243367216 .sppb-pricing-box {
  border: 2px solid #0a8f94 !important;
  box-shadow: 0 14px 36px rgba(10, 143, 148, 0.18) !important;
  position: relative;
  transform: none !important;
  margin-top: 0 !important;
  background: #ffffff !important;
  z-index: 2;
}

body.itemid-313 #sppb-addon-1635243367216 .sppb-pricing-box::before {
  content: "แนะนำ";
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, #ff9a3d 0%, #ff7a1a 100%);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: 999px;
  z-index: 4;
  box-shadow: 0 6px 14px rgba(255, 122, 26, 0.35);
}

body.itemid-313 #sppb-addon-1635243367216 .sppb-pricing-header {
  background: transparent !important;
  background-image: none !important;
  padding: 32px 22px 12px !important;
}

body.itemid-313 #sppb-addon-1635243367216 .sppb-addon-title.sppb-pricing-title,
body.itemid-313 #sppb-addon-1635243367216 .sppb-pricing-title {
  background: transparent !important;
  background-image: none !important;
  color: #0a8f94 !important;
}

body.itemid-313 #sppb-addon-1635243367216 .sppb-pricing-price {
  color: #0a8f94 !important;
  background: transparent !important;
}

body.itemid-313 #sppb-addon-1635243367216 .sppb-btn {
  background: #0a8f94 !important;
  border-color: #0a8f94 !important;
  color: #fff !important;
}

body.itemid-313 #sppb-addon-1635243367216 .sppb-btn:hover {
  background: #087a7e !important;
  border-color: #087a7e !important;
  color: #fff !important;
}

/* Dark mode — อ่านชัดทั้งรายการและปุ่ม */
html.hu-theme-dark body.itemid-313 #section-id-1635227870132 .sppb-pricing-box {
  background: #1a2233 !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35) !important;
  color: #e8edf7 !important;
}

html.hu-theme-dark body.itemid-313 #section-id-1635227870132 #sppb-addon-1635243367213,
html.hu-theme-dark body.itemid-313 #section-id-1635227870132 #sppb-addon-1635243367216,
html.hu-theme-dark body.itemid-313 #section-id-1635227870132 #sppb-addon-1635229705117,
html.hu-theme-dark body.itemid-313 #section-id-1635227870132 .sppb-addon-pricing-table {
  color: #e8edf7 !important;
}

html.hu-theme-dark body.itemid-313 #section-id-1635227870132 .sppb-addon-title.sppb-pricing-title,
html.hu-theme-dark body.itemid-313 #section-id-1635227870132 .sppb-pricing-title,
html.hu-theme-dark body.itemid-313 #section-id-1635227870132 .sppb-pricing-title strong {
  background: transparent !important;
  color: #f3f6fb !important;
}

html.hu-theme-dark body.itemid-313 #section-id-1635227870132 .sppb-pricing-price {
  color: #5fd4d8 !important;
}

html.hu-theme-dark body.itemid-313 #section-id-1635227870132 .sppb-pricing-duration {
  color: rgba(243, 246, 251, 0.65) !important;
}

html.hu-theme-dark body.itemid-313 #section-id-1635227870132 .sppb-pricing-features,
html.hu-theme-dark body.itemid-313 #section-id-1635227870132 .sppb-pricing-features ul,
html.hu-theme-dark body.itemid-313 #section-id-1635227870132 .sppb-pricing-features li,
html.hu-theme-dark body.itemid-313 #section-id-1635227870132 .sppb-pricing-features li span,
html.hu-theme-dark body.itemid-313 #section-id-1635227870132 .sppb-pricing-features li strong,
html.hu-theme-dark body.itemid-313 #section-id-1635227870132 .sppb-pricing-features li p,
html.hu-theme-dark body.itemid-313 .pricing-table .sppb-pricing-features li,
html.hu-theme-dark body.itemid-313 .pricing-table .sppb-pricing-features li strong {
  color: #eef2f8 !important;
  -webkit-text-fill-color: #eef2f8 !important;
  border-bottom-color: rgba(255, 255, 255, 0.08) !important;
  opacity: 1 !important;
}

html.hu-theme-dark body.itemid-313 #section-id-1635227870132 .sppb-pricing-features li i,
html.hu-theme-dark body.itemid-313 #section-id-1635227870132 .sppb-pricing-features li .fa {
  color: #5fd4d8 !important;
}

/* รายการที่ถูกขีดฆ่า / ไม่รวมในแพ็ก — ยังให้อ่านได้ */
html.hu-theme-dark body.itemid-313 #section-id-1635227870132 .sppb-pricing-features li .fa-times,
html.hu-theme-dark body.itemid-313 #section-id-1635227870132 .sppb-pricing-features li .fa-times-circle,
html.hu-theme-dark body.itemid-313 #section-id-1635227870132 .sppb-pricing-features li s,
html.hu-theme-dark body.itemid-313 #section-id-1635227870132 .sppb-pricing-features li del {
  color: rgba(243, 246, 251, 0.45) !important;
}

html.hu-theme-dark body.itemid-313 #section-id-1635227870132 .sppb-btn,
html.hu-theme-dark body.itemid-313 #section-id-1635227870132 .sppb-btn.sppb-btn-default,
html.hu-theme-dark body.itemid-313 #section-id-1635227870132 .sppb-btn.sppb-btn-outline,
html.hu-theme-dark body.itemid-313 #section-id-1635227870132 a.sppb-btn,
html.hu-theme-dark body.itemid-313 #btn-1635243367213,
html.hu-theme-dark body.itemid-313 #btn-1635229705117,
html.hu-theme-dark body.itemid-313 #sppb-addon-1635243367213 .sppb-btn.sppb-btn-default,
html.hu-theme-dark body.itemid-313 #sppb-addon-1635229705117 .sppb-btn.sppb-btn-default {
  background: transparent !important;
  color: #5fd4d8 !important;
  border: 1.5px solid #5fd4d8 !important;
  border-color: #5fd4d8 !important;
}

html.hu-theme-dark body.itemid-313 #section-id-1635227870132 .sppb-btn:hover,
html.hu-theme-dark body.itemid-313 #btn-1635243367213:hover,
html.hu-theme-dark body.itemid-313 #btn-1635229705117:hover,
html.hu-theme-dark body.itemid-313 #sppb-addon-1635243367213 .sppb-btn.sppb-btn-default:hover,
html.hu-theme-dark body.itemid-313 #sppb-addon-1635229705117 .sppb-btn.sppb-btn-default:hover {
  background: rgba(95, 212, 216, 0.14) !important;
  color: #9aebef !important;
  border-color: #9aebef !important;
}

/* หัวข้อเหนือแพ็กเกจ */
html.hu-theme-dark body.itemid-313 #section-id-1635227870132 .sppb-addon-title,
html.hu-theme-dark body.itemid-313 #section-id-1635227870132 .sppb-addon-heading .sppb-addon-title,
html.hu-theme-dark body.itemid-313 #sppb-addon-1651822954248,
html.hu-theme-dark body.itemid-313 #sppb-addon-1651822954248 .sppb-addon-title,
html.hu-theme-dark body.itemid-313 #sppb-addon-1651822954248 h3 {
  color: #f3f6fb !important;
}

html.hu-theme-dark body.itemid-313 #sppb-addon-1635243367216 .sppb-pricing-box {
  background: #1a2233 !important;
  border-color: #0a8f94 !important;
}

html.hu-theme-dark body.itemid-313 #sppb-addon-1635243367216 .sppb-pricing-title,
html.hu-theme-dark body.itemid-313 #sppb-addon-1635243367216 .sppb-pricing-title strong {
  color: #5fd4d8 !important;
}

html.hu-theme-dark body.itemid-313 #sppb-addon-1635243367216 .sppb-btn,
html.hu-theme-dark body.itemid-313 #sppb-addon-1635243367216 .sppb-btn:hover {
  background: #0a8f94 !important;
  border-color: #0a8f94 !important;
  color: #fff !important;
}

/* =========================================================
   Partner logos — Our Partner / Our Partnership (itemid-304)
   ========================================================= */
body.itemid-304 #section-id-1651817529914 > .sppb-row-container,
body.itemid-304 #section-id-1651817529911 > .sppb-row-container,
body.itemid-304 #section-id-1651818912013 > .sppb-row-container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

body.itemid-304 #section-id-1651817529914 .sppb-addon-single-image,
body.itemid-304 #section-id-1651817529911 .sppb-addon-single-image {
  background: #ffffff !important;
  border-radius: 16px !important;
  padding: 16px 18px !important;
  min-height: 78px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.07);
  border: 1px solid rgba(21, 32, 51, 0.05);
  transition: transform .2s ease, box-shadow .2s ease;
}

body.itemid-304 #section-id-1651817529914 .sppb-addon-single-image:hover,
body.itemid-304 #section-id-1651817529911 .sppb-addon-single-image:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.12);
}

body.itemid-304 #section-id-1651817529914 .sppb-addon-single-image img,
body.itemid-304 #section-id-1651817529911 .sppb-addon-single-image img {
  max-height: 48px !important;
  width: auto !important;
  object-fit: contain !important;
}

html.hu-theme-dark body.itemid-304 #section-id-1651817529914 .sppb-addon-single-image,
html.hu-theme-dark body.itemid-304 #section-id-1651817529911 .sppb-addon-single-image {
  background: #ffffff !important;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
  border-color: rgba(255, 255, 255, 0.08);
}

/* ---- ปุ่มร่วมเป็น Partner — แถบ CTA ผูกกับโลโก้ ---- */
body.itemid-304 #section-id-1651817529914 {
  padding-bottom: 0 !important;
}

body.itemid-304 #section-id-1651818912013 {
  padding: 0 0 36px !important;
  position: relative;
  margin-top: -8px !important;
}

body.itemid-304 #section-id-1651818912013 > .sppb-row-container {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 28px 32px !important;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(10, 143, 148, 0.08) 0%, rgba(95, 212, 216, 0.12) 50%, rgba(10, 143, 148, 0.06) 100%);
  border: 1px solid rgba(10, 143, 148, 0.16);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}

body.itemid-304 #section-id-1651818912013 .sppb-row {
  justify-content: center !important;
  width: 100%;
  margin: 0 !important;
}

body.itemid-304 #column-wrap-id-1651818912012,
body.itemid-304 #column-wrap-id-1651818912015 {
  display: none !important;
}

body.itemid-304 #column-wrap-id-1651818912014 {
  flex: 1 1 auto !important;
  max-width: 100% !important;
  width: 100% !important;
  margin: 0 auto !important;
}

body.itemid-304 #sppb-addon-wrapper-1651818912018,
body.itemid-304 #sppb-addon-1651818912018 {
  text-align: center !important;
  margin: 0 !important;
  width: 100% !important;
}

body.itemid-304 #sppb-addon-1651818912018 .sppb-btn,
body.itemid-304 #sppb-addon-1651818912018 a.sppb-btn {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px;
  width: 100% !important;
  max-width: 480px !important;
  min-height: 62px !important;
  padding: 18px 44px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, #0a8f94 0%, #12c2c9 55%, #5fd4d8 100%) !important;
  color: #ffffff !important;
  font-size: 17px !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em;
  line-height: 1.2 !important;
  box-shadow:
    0 16px 36px rgba(10, 143, 148, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.28) !important;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
  overflow: hidden;
}

body.itemid-304 #sppb-addon-1651818912018 .sppb-btn::before,
body.itemid-304 #sppb-addon-1651818912018 a.sppb-btn::before {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  flex: 0 0 auto;
}

body.itemid-304 #sppb-addon-1651818912018 .sppb-btn:hover,
body.itemid-304 #sppb-addon-1651818912018 a.sppb-btn:hover {
  color: #ffffff !important;
  transform: translateY(-2px) scale(1.01);
  filter: brightness(1.04);
  box-shadow:
    0 20px 44px rgba(10, 143, 148, 0.44),
    inset 0 1px 0 rgba(255, 255, 255, 0.32) !important;
}

html.hu-theme-dark body.itemid-304 #section-id-1651818912013 {
  padding: 0 0 40px !important;
}

html.hu-theme-dark body.itemid-304 #section-id-1651818912013 > .sppb-row-container {
  background:
    linear-gradient(135deg, rgba(10, 143, 148, 0.14) 0%, rgba(30, 40, 56, 0.9) 45%, rgba(95, 212, 216, 0.1) 100%);
  border-color: rgba(95, 212, 216, 0.22);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

html.hu-theme-dark body.itemid-304 #sppb-addon-1651818912018 .sppb-btn,
html.hu-theme-dark body.itemid-304 #sppb-addon-1651818912018 a.sppb-btn {
  background: linear-gradient(135deg, #0a8f94 0%, #14b8c0 50%, #5fd4d8 100%) !important;
  box-shadow:
    0 18px 42px rgba(10, 143, 148, 0.42),
    0 0 0 1px rgba(95, 212, 216, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.22) !important;
}

/* =========================================================
   Partner quote form — ขอใบเสนอราคา (itemid-304)
   ========================================================= */
body.itemid-304 #section-id-1651805204216 {
  padding: 72px 0 88px !important;
  background: linear-gradient(180deg, #f3f6fa 0%, #e8eef5 100%) !important;
}

body.itemid-304 #section-id-1651805204216 > .sppb-row-container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

body.itemid-304 #section-id-1651805204216 .sppb-row {
  align-items: stretch !important;
  gap: 24px;
}

body.itemid-304 #column-wrap-id-1651805204215,
body.itemid-304 #column-wrap-id-1651805204218,
body.itemid-304 #column-id-1651805204215,
body.itemid-304 #column-id-1651805204218,
body.itemid-304 #column-id-1651805204215 .sppb-column-addons,
body.itemid-304 #column-id-1651805204218 .sppb-column-addons {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
}

body.itemid-304 #sppb-addon-wrapper-1651805204197,
body.itemid-304 #sppb-addon-1651805204197,
body.itemid-304 #sppb-addon-1651805204197 .sppb-addon-person,
body.itemid-304 #sppb-addon-1651805204197 .sppb-person-image {
  height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  flex: 1 1 auto !important;
}

body.itemid-304 #sppb-addon-1651805204197 .sppb-person-image {
  border-radius: 28px !important;
  overflow: hidden !important;
  background: #f5c518;
  box-shadow: 0 20px 48px rgba(21, 32, 51, 0.14);
}

body.itemid-304 #sppb-addon-1651805204197 .sppb-person-image img,
body.itemid-304 #sppb-addon-1651805204197 img {
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  object-fit: cover !important;
  object-position: center top !important;
  display: block !important;
}

body.itemid-304 #column-id-1651805204218 {
  justify-content: stretch !important;
}

body.itemid-304 #column-id-1651805204218 .sppb-column-addons {
  background: #ffffff !important;
  border: 1px solid rgba(21, 32, 51, 0.07) !important;
  border-radius: 28px !important;
  box-shadow: 0 20px 48px rgba(21, 32, 51, 0.1) !important;
  padding: 32px 34px 28px !important;
  height: 100% !important;
  min-height: 100% !important;
  justify-content: flex-start !important;
  box-sizing: border-box !important;
  gap: 0;
}

/* Desktop: grid + ภาพซ้ายเต็มความสูงเท่าฟอร์ม */
@media (min-width: 992px) {
  body.itemid-304 #section-id-1651805204216 > .sppb-row-container > .sppb-row {
    display: grid !important;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.35fr) !important;
    gap: 28px !important;
    align-items: stretch !important;
  }

  body.itemid-304 #column-wrap-id-1651805204215,
  body.itemid-304 #column-wrap-id-1651805204218 {
    width: 100% !important;
    max-width: none !important;
    flex: none !important;
    float: none !important;
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    min-height: 100% !important;
  }

  body.itemid-304 #column-id-1651805204215 {
    position: relative !important;
    height: 100% !important;
    min-height: 100% !important;
  }

  body.itemid-304 #column-id-1651805204215 .sppb-column-addons {
    position: absolute !important;
    inset: 0 !important;
    height: auto !important;
    min-height: 0 !important;
  }

  body.itemid-304 #sppb-addon-wrapper-1651805204197,
  body.itemid-304 #sppb-addon-1651805204197,
  body.itemid-304 #sppb-addon-1651805204197 .sppb-addon-person {
    position: relative !important;
    height: 100% !important;
    min-height: 100% !important;
  }

  body.itemid-304 #sppb-addon-1651805204197 .sppb-person-image {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    border-radius: 28px !important;
    overflow: hidden !important;
  }

  body.itemid-304 #sppb-addon-1651805204197 .sppb-person-image img,
  body.itemid-304 #sppb-addon-1651805204197 img {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
    max-height: none !important;
    object-fit: cover !important;
    object-position: center top !important;
  }

  body.itemid-304 #column-id-1651805204218,
  body.itemid-304 #column-id-1651805204218 .sppb-column-addons {
    height: 100% !important;
    min-height: 100% !important;
  }
}

body.itemid-304 #sppb-addon-wrapper-1651805204187,
body.itemid-304 #sppb-addon-wrapper-1651805204188 {
  margin: 0 !important;
  padding: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
}

body.itemid-304 #sppb-addon-wrapper-1651805204188,
body.itemid-304 #sppb-addon-1651805204188,
body.itemid-304 #sppb-addon-1651805204188 > div {
  max-width: 100% !important;
  width: 100% !important;
}

body.itemid-304 #sppb-addon-1651805204188 {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
  flex: 1 1 auto !important;
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
}

body.itemid-304 #sppb-addon-1651805204188 .sppb-addon-content,
body.itemid-304 #sppb-addon-1651805204188 .sppb-addon-form-builder,
body.itemid-304 #sppb-addon-1651805204188 form {
  display: flex !important;
  flex-direction: column !important;
  flex: 1 1 auto !important;
  height: 100% !important;
}

body.itemid-304 #sppb-addon-1651805204187 {
  margin: 0 !important;
  padding: 0 0 18px !important;
  background: transparent !important;
  flex: 0 0 auto !important;
}

body.itemid-304 #sppb-addon-1651805204187 .sppb-addon-title {
  color: #152033 !important;
  font-size: clamp(1.7rem, 2.3vw, 2.15rem) !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  margin: 0 !important;
  letter-spacing: -0.02em;
}

body.itemid-304 #sppb-addon-1651805204187 .sppb-addon-title::after {
  content: "กรอกข้อมูลเพื่อรับใบเสนอราคาที่เหมาะกับธุรกิจของคุณ";
  display: block;
  margin-top: 12px;
  margin-bottom: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  color: #66758a !important;
  font-size: 14.5px !important;
  font-weight: 500 !important;
  line-height: 1.55 !important;
  letter-spacing: 0;
}

/* ฟิลด์ฟอร์ม — สัดส่วนโล่งขึ้น */
body.itemid-304 #sppb-addon-1651805204188 .sppb-form-group {
  margin-bottom: 0 !important;
}

body.itemid-304 #sppb-addon-1651805204188 .sppb-row {
  display: flex !important;
  flex-wrap: wrap !important;
  row-gap: 28px !important;
  column-gap: 0 !important;
  margin-left: -12px !important;
  margin-right: -12px !important;
  flex: 0 0 auto !important;
}

body.itemid-304 #sppb-addon-1651805204188 .sppb-row > [class*="sppb-col-"] {
  padding-left: 12px !important;
  padding-right: 12px !important;
  margin-bottom: 0 !important;
}

/* ช่องข้อความเพิ่มเติม — ไม่ยืดเกิน สัดส่วนสมดุล */
body.itemid-304 #sppb-addon-1651805204188 .sppb-form-builder-field-6 {
  flex: 0 0 auto !important;
  display: block !important;
  margin-top: 6px !important;
}

body.itemid-304 #sppb-addon-1651805204188 .sppb-form-builder-field-6 .sppb-form-group,
body.itemid-304 #sppb-addon-1651805204188 .sppb-form-builder-field-6 textarea {
  flex: none !important;
  height: auto !important;
}

@media (max-width: 991.98px) {
  body.itemid-304 #sppb-addon-1651805204188 .sppb-col-md-6 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    width: 100% !important;
  }
}

body.itemid-304 #sppb-addon-1651805204188 label,
body.itemid-304 #sppb-addon-1651805204188 .sppb-form-label {
  display: block !important;
  color: #1f2a3d !important;
  font-size: 13.5px !important;
  font-weight: 700 !important;
  margin: 0 0 10px !important;
  letter-spacing: 0.01em;
  line-height: 1.35 !important;
  white-space: normal !important;
}

body.itemid-304 #sppb-addon-1651805204188 .sppb-form-control,
body.itemid-304 #sppb-addon-1651805204188 input[type="text"],
body.itemid-304 #sppb-addon-1651805204188 input[type="email"],
body.itemid-304 #sppb-addon-1651805204188 input[type="tel"],
body.itemid-304 #sppb-addon-1651805204188 select,
body.itemid-304 #sppb-addon-1651805204188 textarea {
  width: 100% !important;
  min-height: 52px !important;
  height: 52px !important;
  padding: 14px 16px !important;
  border: 1.5px solid #d5dee9 !important;
  border-radius: 14px !important;
  background: #f4f7fb !important;
  color: #152033 !important;
  font-size: 15px !important;
  line-height: 1.45 !important;
  box-sizing: border-box !important;
  overflow: visible !important;
  box-shadow: none !important;
  transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}

body.itemid-304 #sppb-addon-1651805204188 select {
  appearance: none !important;
  -webkit-appearance: none !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236b7785' d='M1.4.3L6 4.9 10.6.3 12 1.7 6 7.7 0 1.7z'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 16px center !important;
  padding-right: 40px !important;
}

/* ข้อความเพิ่มเติม — สูงพอดี ไม่ดันฟอร์มสูงเกินภาพ */
body.itemid-304 #sppb-addon-1651805204188 textarea,
body.itemid-304 #sppb-addon-1651805204188 .sppb-form-builder-field-6 textarea,
body.itemid-304 #sppb-form-builder-field-6 {
  min-height: 120px !important;
  height: auto !important;
  resize: vertical !important;
  padding-top: 14px !important;
  padding-bottom: 14px !important;
}

@media (min-width: 992px) {
  body.itemid-304 #sppb-addon-1651805204188 textarea,
  body.itemid-304 #sppb-addon-1651805204188 .sppb-form-builder-field-6 textarea,
  body.itemid-304 #sppb-form-builder-field-6 {
    min-height: 140px !important;
  }
}

body.itemid-304 #sppb-addon-1651805204188 .sppb-form-control:focus,
body.itemid-304 #sppb-addon-1651805204188 input:focus,
body.itemid-304 #sppb-addon-1651805204188 select:focus,
body.itemid-304 #sppb-addon-1651805204188 textarea:focus {
  outline: none !important;
  border-color: #0a8f94 !important;
  background: #ffffff !important;
  box-shadow: 0 0 0 4px rgba(10, 143, 148, 0.14) !important;
}

body.itemid-304 #sppb-addon-1651805204188 .sppb-form-control::placeholder,
body.itemid-304 #sppb-addon-1651805204188 input::placeholder,
body.itemid-304 #sppb-addon-1651805204188 textarea::placeholder {
  color: #8b97a8 !important;
}

/* ปุ่มส่ง */
body.itemid-304 #sppb-addon-1651805204188 .sppb-btn-wrap {
  margin-top: 18px !important;
  padding-top: 4px !important;
}

body.itemid-304 #sppb-addon-1651805204188 .sppb-btn,
body.itemid-304 #sppb-addon-1651805204188 button[type="submit"],
body.itemid-304 #sppb-addon-1651805204188 .sppb-btn-wrap .sppb-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  min-height: 56px !important;
  margin-top: 0 !important;
  padding: 16px 28px !important;
  border: 0 !important;
  border-radius: 14px !important;
  background: linear-gradient(135deg, #0a8f94 0%, #0bb3b8 100%) !important;
  color: #ffffff !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em;
  box-shadow: 0 12px 28px rgba(10, 143, 148, 0.32) !important;
  transition: transform .2s ease, background-color .2s ease, box-shadow .2s ease;
}

body.itemid-304 #sppb-addon-1651805204188 .sppb-btn:hover,
body.itemid-304 #sppb-addon-1651805204188 button[type="submit"]:hover {
  background: linear-gradient(135deg, #087a7e 0%, #0a9ea3 100%) !important;
  color: #ffffff !important;
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(10, 143, 148, 0.38) !important;
}

/* Dark mode */
html.hu-theme-dark body.itemid-304 #section-id-1651805204216 {
  background: linear-gradient(180deg, #10161f 0%, #0c1118 100%) !important;
}

html.hu-theme-dark body.itemid-304 #column-id-1651805204218 .sppb-column-addons {
  background: linear-gradient(180deg, #1e2838 0%, #182131 100%) !important;
  border-color: rgba(95, 212, 216, 0.18) !important;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.4) !important;
}

html.hu-theme-dark body.itemid-304 #sppb-addon-1651805204187 .sppb-addon-title {
  color: #f5f8fc !important;
}

html.hu-theme-dark body.itemid-304 #sppb-addon-1651805204187 .sppb-addon-title::after {
  color: rgba(243, 246, 251, 0.58) !important;
}

html.hu-theme-dark body.itemid-304 #sppb-addon-1651805204188 label,
html.hu-theme-dark body.itemid-304 #sppb-addon-1651805204188 .sppb-form-label {
  color: rgba(243, 246, 251, 0.92) !important;
}

html.hu-theme-dark body.itemid-304 #sppb-addon-1651805204188 .sppb-form-control,
html.hu-theme-dark body.itemid-304 #sppb-addon-1651805204188 input[type="text"],
html.hu-theme-dark body.itemid-304 #sppb-addon-1651805204188 input[type="email"],
html.hu-theme-dark body.itemid-304 #sppb-addon-1651805204188 input[type="tel"],
html.hu-theme-dark body.itemid-304 #sppb-addon-1651805204188 select,
html.hu-theme-dark body.itemid-304 #sppb-addon-1651805204188 textarea {
  background-color: #2a3548 !important;
  border-color: rgba(255, 255, 255, 0.22) !important;
  color: #f3f6fb !important;
}

html.hu-theme-dark body.itemid-304 #sppb-addon-1651805204188 select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%235fd4d8' d='M1.4.3L6 4.9 10.6.3 12 1.7 6 7.7 0 1.7z'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 16px center !important;
}

html.hu-theme-dark body.itemid-304 #sppb-addon-1651805204188 .sppb-form-control:focus,
html.hu-theme-dark body.itemid-304 #sppb-addon-1651805204188 input:focus,
html.hu-theme-dark body.itemid-304 #sppb-addon-1651805204188 select:focus,
html.hu-theme-dark body.itemid-304 #sppb-addon-1651805204188 textarea:focus {
  border-color: #5fd4d8 !important;
  background: #334155 !important;
  box-shadow: 0 0 0 4px rgba(95, 212, 216, 0.18) !important;
}

html.hu-theme-dark body.itemid-304 #sppb-addon-1651805204188 .sppb-form-control::placeholder,
html.hu-theme-dark body.itemid-304 #sppb-addon-1651805204188 input::placeholder,
html.hu-theme-dark body.itemid-304 #sppb-addon-1651805204188 textarea::placeholder {
  color: rgba(243, 246, 251, 0.38) !important;
}

@media (max-width: 991.98px) {
  body.itemid-304 #section-id-1651805204216 {
    padding: 40px 0 48px !important;
  }

  body.itemid-304 #sppb-addon-1651805204197 .sppb-person-image img,
  body.itemid-304 #sppb-addon-1651805204197 img {
    min-height: 340px !important;
  }

  body.itemid-304 #column-id-1651805204218 .sppb-column-addons {
    padding: 28px 22px 24px !important;
    margin-top: 8px !important;
    min-height: 0 !important;
  }

  body.itemid-304 #sppb-addon-1651805204188 textarea,
  body.itemid-304 #sppb-addon-1651805204188 .sppb-form-builder-field-6 textarea {
    min-height: 120px !important;
  }

  body.itemid-304 #sppb-addon-1651818912018 .sppb-btn,
  body.itemid-304 #sppb-addon-1651818912018 a.sppb-btn {
    min-width: 0 !important;
    width: 100% !important;
    max-width: 100%;
  }

  body.itemid-304 #section-id-1651818912013 > .sppb-row-container {
    padding: 20px 18px !important;
    border-radius: 18px;
  }
}

/* =========================================================
   API Tracking Landing (itemid-414)  |  light + dark mode
   ========================================================= */

body.itemid-414 {
  --trk-teal: #0d9488;
  --trk-teal-deep: #0f766e;
  --trk-teal-light: #5eead4;
  --trk-navy: #0c1a2e;
  --trk-slate: #1e293b;
  --trk-bg: #ffffff;
  --trk-bg-alt: #f0fdf9;
  --trk-bg-muted: #f1f5f9;
  --trk-text: #0f172a;
  --trk-text-sub: #475569;
  --trk-border: rgba(13, 148, 136, 0.14);
  --trk-card: #ffffff;
  --trk-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
}

body.itemid-414 .sppb-row-container {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Hero: one centered composition ─────────────────────── */
body.itemid-414 #section-id-1753100000001 {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
}
body.itemid-414 #section-id-1753100000001::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 26, 46, 0.55) 0%, rgba(12, 26, 46, 0.72) 55%, rgba(12, 26, 46, 0.88) 100%);
  z-index: 0;
  pointer-events: none;
}
body.itemid-414 #section-id-1753100000001 .sppb-row-container {
  position: relative;
  z-index: 1;
  width: 100%;
}
body.itemid-414 #section-id-1753100000001 #column-id-1753100000002,
body.itemid-414 #section-id-1753100000001 .sppb-column-addons {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
body.itemid-414 #section-id-1753100000001 .sppb-addon-wrapper {
  width: 100%;
  max-width: 720px;
}
body.itemid-414 #section-id-1753100000001 .sppb-addon-header,
body.itemid-414 #section-id-1753100000001 .sppb-addon-header .sppb-addon-title {
  text-align: center !important;
  -webkit-text-fill-color: #5eead4 !important;
  background-image: none !important;
  color: #5eead4 !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em;
  margin-bottom: 12px !important;
}
body.itemid-414 #section-id-1753100000001 .sppb-addon-text-block,
body.itemid-414 #section-id-1753100000001 .sppb-addon-text-block p {
  text-align: center !important;
  color: rgba(255, 255, 255, 0.9) !important;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
body.itemid-414 #section-id-1753100000001 .sppb-addon-button-group {
  text-align: center !important;
  margin-top: 8px;
}
body.itemid-414 #section-id-1753100000001 .sppb-btn-outline,
body.itemid-414 #section-id-1753100000001 .sppb-btn-secondary,
body.itemid-414 #section-id-1753100000001 a.sppb-btn:not(.sppb-btn-primary) {
  border: 1.5px solid rgba(255, 255, 255, 0.75) !important;
  color: #ffffff !important;
  background: transparent !important;
}
body.itemid-414 #section-id-1753100000001 a.sppb-btn:not(.sppb-btn-primary):hover {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: #ffffff !important;
  color: #ffffff !important;
}

/* ── Headings ───────────────────────────────────────────── */
body.itemid-414 .sppb-addon-heading h2 {
  font-weight: 750;
  color: var(--trk-text);
  letter-spacing: -0.02em;
}
body.itemid-414 .sppb-addon-text-block p {
  color: var(--trk-text-sub);
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Stats ──────────────────────────────────────────────── */
body.itemid-414 #section-id-1753100000006 {
  background: var(--trk-bg-muted) !important;
}
body.itemid-414 #section-id-1753100000006 .sppb-row {
  gap: 16px 0;
}
body.itemid-414 .sppb-addon-animated-number {
  padding: 28px 16px 24px;
  border-radius: 18px;
  background: var(--trk-card);
  border: 1px solid var(--trk-border);
  box-shadow: var(--trk-shadow);
  transition: transform .2s ease, box-shadow .2s ease;
}
body.itemid-414 .sppb-addon-animated-number:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(13, 148, 136, 0.12);
}
body.itemid-414 .sppb-animated-number,
body.itemid-414 .sppb-animated-number-counter {
  color: var(--trk-teal) !important;
  font-weight: 800 !important;
}
body.itemid-414 .sppb-animated-number-title {
  color: var(--trk-text-sub) !important;
  font-size: 13.5px !important;
  font-weight: 500;
  margin-top: 6px !important;
}

/* ── Why: left accent strip, not heavy cards ────────────── */
body.itemid-414 #section-id-1753100000015 {
  background: var(--trk-bg-alt) !important;
}
body.itemid-414 #section-id-1753100000015 .sppb-addon-feature {
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 8px 8px 8px 20px !important;
  border-left: 3px solid var(--trk-teal) !important;
  transform: none !important;
  height: auto;
}
body.itemid-414 #section-id-1753100000015 .sppb-addon-feature:hover {
  border-color: var(--trk-teal-deep) !important;
  box-shadow: none !important;
  transform: none !important;
  background: rgba(13, 148, 136, 0.04) !important;
}
body.itemid-414 #section-id-1753100000015 .sppb-icon .sppb-icon-container,
body.itemid-414 #section-id-1753100000015 .sppb-icon .sppb-icon-container > i {
  color: var(--trk-teal) !important;
}
body.itemid-414 #section-id-1753100000015 .sppb-feature-box-title,
body.itemid-414 #section-id-1753100000015 .sppb-addon-title {
  color: var(--trk-text) !important;
  font-weight: 700 !important;
}
body.itemid-414 #section-id-1753100000015 .sppb-addon-text {
  color: var(--trk-text-sub) !important;
}

/* ── Services: elevated cards + icon chip ───────────────── */
body.itemid-414 #section-id-1753100000027 {
  background: var(--trk-bg) !important;
}
body.itemid-414 #section-id-1753100000027 .sppb-addon-feature {
  background: var(--trk-card) !important;
  border: 1px solid var(--trk-border) !important;
  border-radius: 18px !important;
  padding: 28px 22px !important;
  box-shadow: var(--trk-shadow);
  text-align: center !important;
  height: 100%;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
body.itemid-414 #section-id-1753100000027 .sppb-addon-feature:hover {
  transform: translateY(-4px);
  border-color: var(--trk-teal) !important;
  box-shadow: 0 16px 40px rgba(13, 148, 136, 0.14);
}
body.itemid-414 #section-id-1753100000027 .sppb-icon {
  margin-bottom: 14px;
}
body.itemid-414 #section-id-1753100000027 .sppb-icon .sppb-icon-container {
  width: 56px !important;
  height: 56px !important;
  line-height: 56px !important;
  border-radius: 14px;
  background: rgba(13, 148, 136, 0.1);
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
}
body.itemid-414 #section-id-1753100000027 .sppb-icon .sppb-icon-container > i {
  font-size: 22px !important;
  width: auto !important;
  height: auto !important;
  line-height: 1 !important;
  color: var(--trk-teal) !important;
}
body.itemid-414 #section-id-1753100000027 .sppb-feature-box-title,
body.itemid-414 #section-id-1753100000027 .sppb-addon-title,
body.itemid-414 #section-id-1753100000027 .sppb-addon-title a {
  color: var(--trk-teal) !important;
  font-weight: 700 !important;
  text-align: center !important;
}
body.itemid-414 #section-id-1753100000027 .sppb-addon-text,
body.itemid-414 #section-id-1753100000027 .sppb-addon-content {
  text-align: center !important;
  color: var(--trk-text-sub) !important;
}

/* ── Carriers: equal tiles, soft section ────────────────── */
body.itemid-414 #section-id-1753100000039 {
  background: var(--trk-bg-muted) !important;
}
body.itemid-414 #section-id-1753100000039 .sppb-addon-clients .sppb-row,
body.itemid-414 #section-id-1753100000039 .sppb-clients {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
body.itemid-414 #section-id-1753100000039 .sppb-addon-clients [class*="sppb-col"],
body.itemid-414 #section-id-1753100000039 .sppb-clients-item,
body.itemid-414 #section-id-1753100000039 .sppb-addon-clients .sppb-client {
  background: #ffffff !important;
  border-radius: 14px !important;
  border: 1px solid rgba(15, 23, 42, 0.06) !important;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
  min-height: 84px !important;
  padding: 16px 18px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 !important;
  transition: transform .2s ease, box-shadow .2s ease;
}
body.itemid-414 #section-id-1753100000039 .sppb-addon-clients img,
body.itemid-414 #section-id-1753100000039 .sppb-clients-item img {
  max-height: 42px !important;
  max-width: 120px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
}
body.itemid-414 #section-id-1753100000039 .sppb-addon-clients [class*="sppb-col"]:hover,
body.itemid-414 #section-id-1753100000039 .sppb-clients-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(13, 148, 136, 0.12);
}

/* ── How it works: numbered dark steps ──────────────────── */
body.itemid-414 #section-id-1753100000044 {
  background: var(--trk-navy) !important;
}
body.itemid-414 #section-id-1753100000044 .sppb-addon-header .sppb-addon-title {
  -webkit-text-fill-color: #ffffff !important;
  background-image: none !important;
  color: #ffffff !important;
}
body.itemid-414 #section-id-1753100000044 .sppb-addon-text-block,
body.itemid-414 #section-id-1753100000044 .sppb-addon-text-block p {
  color: rgba(255, 255, 255, 0.72) !important;
}
body.itemid-414 #section-id-1753100000044 .sppb-addon-feature {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(94, 234, 212, 0.18) !important;
  border-radius: 20px !important;
  padding: 32px 24px !important;
  text-align: center !important;
  box-shadow: none !important;
  height: 100%;
  position: relative;
}
body.itemid-414 #section-id-1753100000044 .sppb-addon-feature:hover {
  border-color: rgba(94, 234, 212, 0.45) !important;
  background: rgba(94, 234, 212, 0.06) !important;
  transform: translateY(-3px);
}
body.itemid-414 #section-id-1753100000044 .sppb-icon .sppb-icon-container > i {
  color: var(--trk-teal-light) !important;
  font-size: 28px !important;
}
body.itemid-414 #section-id-1753100000044 .sppb-feature-box-title,
body.itemid-414 #section-id-1753100000044 .sppb-addon-title {
  color: #ffffff !important;
  text-align: center !important;
  font-weight: 700 !important;
}
body.itemid-414 #section-id-1753100000044 .sppb-addon-text,
body.itemid-414 #section-id-1753100000044 .sppb-addon-content {
  color: rgba(255, 255, 255, 0.68) !important;
  text-align: center !important;
}

/* ── CTA ────────────────────────────────────────────────── */
body.itemid-414 #section-id-1753100000054 .sppb-addon-header .sppb-addon-title {
  -webkit-text-fill-color: #ffffff !important;
  background-image: none !important;
  color: #ffffff !important;
}
body.itemid-414 #section-id-1753100000054 .sppb-addon-text-block,
body.itemid-414 #section-id-1753100000054 .sppb-addon-text-block p {
  color: rgba(255, 255, 255, 0.92) !important;
}
body.itemid-414 #section-id-1753100000054 .sppb-btn-primary,
body.itemid-414 #section-id-1753100000054 a.sppb-btn-primary {
  background: #ffffff !important;
  border-color: #ffffff !important;
  color: var(--trk-teal) !important;
  box-shadow: 0 8px 24px rgba(12, 26, 46, 0.18);
}
body.itemid-414 #section-id-1753100000054 .sppb-btn-primary:hover {
  background: #f0fdfa !important;
  color: var(--trk-teal-deep) !important;
  transform: translateY(-2px);
}
body.itemid-414 #section-id-1753100000054 a.sppb-btn:not(.sppb-btn-primary) {
  border: 1.5px solid rgba(255, 255, 255, 0.85) !important;
  color: #ffffff !important;
  background: transparent !important;
}
body.itemid-414 #section-id-1753100000054 a.sppb-btn:not(.sppb-btn-primary):hover {
  background: rgba(255, 255, 255, 0.14) !important;
}

/* ── Buttons global ─────────────────────────────────────── */
body.itemid-414 .sppb-btn {
  border-radius: 10px !important;
  font-weight: 650;
  padding: 12px 24px !important;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
body.itemid-414 .sppb-btn-primary {
  background: var(--trk-teal) !important;
  border-color: var(--trk-teal) !important;
  color: #fff !important;
}
body.itemid-414 .sppb-btn-primary:hover {
  background: var(--trk-teal-deep) !important;
  border-color: var(--trk-teal-deep) !important;
}

@media (max-width: 991px) {
  body.itemid-414 #section-id-1753100000001 {
    min-height: 0;
  }
  body.itemid-414 .sppb-addon-animated-number,
  body.itemid-414 #section-id-1753100000015 .sppb-addon-feature,
  body.itemid-414 #section-id-1753100000027 .sppb-addon-feature,
  body.itemid-414 #section-id-1753100000044 .sppb-addon-feature {
    margin-bottom: 14px;
  }
}

/* =========================================================
   DARK MODE — itemid-414
   ========================================================= */
html.hu-theme-dark body.itemid-414 {
  --trk-text: #e2e8f0;
  --trk-text-sub: #94a3b8;
  --trk-bg: #0b1220;
  --trk-bg-alt: #0f172a;
  --trk-bg-muted: #111827;
  --trk-card: #1e293b;
  --trk-border: rgba(94, 234, 212, 0.14);
  --trk-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
}

/* Force section backgrounds by ID (SPPB writes CSS, not inline style) */
html.hu-theme-dark body.itemid-414 #section-id-1753100000006,
html.hu-theme-dark .sp-page-builder .page-content body.itemid-414 #section-id-1753100000006,
html.hu-theme-dark .sp-page-builder .page-content #section-id-1753100000006 {
  background-color: #0f172a !important;
  background: #0f172a !important;
}
html.hu-theme-dark .sp-page-builder .page-content #section-id-1753100000015 {
  background-color: #0b1220 !important;
  background: #0b1220 !important;
}
html.hu-theme-dark .sp-page-builder .page-content #section-id-1753100000027 {
  background-color: #0f172a !important;
  background: #0f172a !important;
}
html.hu-theme-dark .sp-page-builder .page-content #section-id-1753100000039 {
  background-color: #0b1220 !important;
  background: #0b1220 !important;
}

html.hu-theme-dark body.itemid-414 .sppb-addon-heading h2,
html.hu-theme-dark body.itemid-414 .sppb-addon-heading h3 {
  color: #e2e8f0 !important;
}
html.hu-theme-dark body.itemid-414 .sppb-addon-text-block p {
  color: #94a3b8 !important;
}

html.hu-theme-dark body.itemid-414 .sppb-addon-animated-number {
  background: #1e293b;
  border-color: rgba(94, 234, 212, 0.16);
}
html.hu-theme-dark body.itemid-414 .sppb-animated-number,
html.hu-theme-dark body.itemid-414 .sppb-animated-number-counter {
  color: var(--trk-teal-light) !important;
}

html.hu-theme-dark body.itemid-414 #section-id-1753100000015 .sppb-addon-feature {
  border-left-color: var(--trk-teal-light) !important;
}
html.hu-theme-dark body.itemid-414 #section-id-1753100000015 .sppb-addon-feature:hover {
  background: rgba(94, 234, 212, 0.05) !important;
}
html.hu-theme-dark body.itemid-414 #section-id-1753100000015 .sppb-feature-box-title,
html.hu-theme-dark body.itemid-414 #section-id-1753100000015 .sppb-addon-title {
  color: #e2e8f0 !important;
}
html.hu-theme-dark body.itemid-414 #section-id-1753100000015 .sppb-addon-text {
  color: #94a3b8 !important;
}

html.hu-theme-dark body.itemid-414 #section-id-1753100000027 .sppb-addon-feature {
  background: #1e293b !important;
  border-color: rgba(94, 234, 212, 0.12) !important;
}
html.hu-theme-dark body.itemid-414 #section-id-1753100000027 .sppb-icon .sppb-icon-container {
  background: rgba(94, 234, 212, 0.1);
}
html.hu-theme-dark body.itemid-414 #section-id-1753100000027 .sppb-feature-box-title,
html.hu-theme-dark body.itemid-414 #section-id-1753100000027 .sppb-addon-title,
html.hu-theme-dark body.itemid-414 #section-id-1753100000027 .sppb-addon-title a {
  color: var(--trk-teal-light) !important;
}
html.hu-theme-dark body.itemid-414 #section-id-1753100000027 .sppb-addon-text {
  color: #94a3b8 !important;
}

/* Carrier logos: keep white tiles so brand marks stay readable */
html.hu-theme-dark body.itemid-414 #section-id-1753100000039 .sppb-addon-clients [class*="sppb-col"],
html.hu-theme-dark body.itemid-414 #section-id-1753100000039 .sppb-clients-item,
html.hu-theme-dark body.itemid-414 #section-id-1753100000039 .sppb-addon-clients .sppb-client {
  background: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
}

@media (prefers-reduced-motion: no-preference) {
  body.itemid-414 .sppb-addon-animated-number,
  body.itemid-414 #section-id-1753100000027 .sppb-addon-feature,
  body.itemid-414 #section-id-1753100000044 .sppb-addon-feature {
    animation: trk-fadein .55s ease both;
  }
}
@keyframes trk-fadein {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =========================================================
   Supported Carriers page (itemid-417) — page 86
   ========================================================= */
body.itemid-417 {
  --trk-teal: #0d9488;
  --trk-teal-light: #5eead4;
  --trk-navy: #0c1a2e;
  --trk-text: #0f172a;
  --trk-text-sub: #334155;
  --trk-bg: #eef2f7;
  --trk-card: #ffffff;
}

body.itemid-417 .sppb-row-container {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}

/* Keep site footer always visible + readable (both themes) */
body.itemid-417 #sp-footer,
body.itemid-417 #sp-footer-bottom {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: relative !important;
  z-index: 2 !important;
}
body.itemid-417 #sp-footer {
  background: #0c1a2e !important;
  color: #e2e8f0 !important;
  margin-top: 0 !important;
  clear: both !important;
}
body.itemid-417 #sp-footer,
body.itemid-417 #sp-footer p,
body.itemid-417 #sp-footer .sp-module-content,
body.itemid-417 #sp-footer .sp-module-content * {
  color: #e2e8f0 !important;
}
body.itemid-417 #sp-footer a {
  color: #e2e8f0 !important;
}
body.itemid-417 #sp-footer-bottom {
  background: #08111f !important;
  color: #94a3b8 !important;
}

/* Hero */
body.itemid-417 #section-id-1753200000001 .sppb-addon-header .sppb-addon-title {
  -webkit-text-fill-color: #5eead4 !important;
  background-image: none !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  color: #5eead4 !important;
  font-weight: 800 !important;
  text-align: center !important;
}
body.itemid-417 #section-id-1753200000001 .sppb-addon-text-block,
body.itemid-417 #section-id-1753200000001 .sppb-addon-text-block p,
body.itemid-417 #section-id-1753200000001 .sppb-addon-text-block .sppb-addon-content,
body.itemid-417 #section-id-1753200000001 .sppb-addon-content {
  color: #ffffff !important;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  font-size: 16px !important;
  line-height: 1.7 !important;
}
/* Hero description spacing */
body.itemid-417 #sppb-addon-wrapper-1753200000004,
body.itemid-417 #sppb-addon-1753200000004 {
  margin: 16px auto 28px !important;
  padding: 0 16px !important;
  max-width: 680px;
}
body.itemid-417 #sppb-addon-1753200000004 .sppb-addon-content {
  color: #ffffff !important;
  padding: 4px 0 8px !important;
}
body.itemid-417 #section-id-1753200000001 .sppb-addon-text-block strong,
body.itemid-417 #section-id-1753200000001 .sppb-addon-content strong {
  color: #ffffff !important;
}
body.itemid-417 #section-id-1753200000001 a.sppb-btn:not(.sppb-btn-primary) {
  border: 1.5px solid rgba(255,255,255,0.85) !important;
  color: #fff !important;
  background: transparent !important;
}
body.itemid-417 #section-id-1753200000001 .sppb-btn-primary {
  background: #0d9488 !important;
  border-color: #0d9488 !important;
  color: #fff !important;
}

/* Light mode: soft slate grid so white logo cards stand out */
.sp-page-builder .page-content #section-id-1753200000006,
.sp-page-builder .page-content #section-id-1753200000021,
.sp-page-builder .page-content #section-id-1753200000030,
.sp-page-builder .page-content #section-id-1753200000039,
.sp-page-builder .page-content #section-id-1753200000048 {
  background-color: #eef2f7 !important;
  background: #eef2f7 !important;
}

/* Eyebrow */
body.itemid-417 .trk-carriers-eyebrow {
  display: inline-block;
  color: #0d9488 !important;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

/* Logo cards — only carrier grid sections (NOT footer logo) */
body.itemid-417 #section-id-1753200000021 .sppb-addon-wrapper.addon-root-image .sppb-addon-single-image,
body.itemid-417 #section-id-1753200000030 .sppb-addon-wrapper.addon-root-image .sppb-addon-single-image,
body.itemid-417 #section-id-1753200000039 .sppb-addon-wrapper.addon-root-image .sppb-addon-single-image,
body.itemid-417 #section-id-1753200000048 .sppb-addon-wrapper.addon-root-image .sppb-addon-single-image {
  background: #ffffff !important;
  border-radius: 16px !important;
  padding: 18px 20px !important;
  min-height: 96px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08) !important;
  border: 1px solid rgba(15, 23, 42, 0.1) !important;
  transition: transform .2s ease, box-shadow .2s ease;
  margin-bottom: 0 !important;
}
body.itemid-417 #section-id-1753200000021 .sppb-addon-wrapper.addon-root-image:hover .sppb-addon-single-image,
body.itemid-417 #section-id-1753200000030 .sppb-addon-wrapper.addon-root-image:hover .sppb-addon-single-image,
body.itemid-417 #section-id-1753200000039 .sppb-addon-wrapper.addon-root-image:hover .sppb-addon-single-image,
body.itemid-417 #section-id-1753200000048 .sppb-addon-wrapper.addon-root-image:hover .sppb-addon-single-image {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(13, 148, 136, 0.16) !important;
}
body.itemid-417 #section-id-1753200000021 .sppb-addon-single-image img,
body.itemid-417 #section-id-1753200000030 .sppb-addon-single-image img,
body.itemid-417 #section-id-1753200000039 .sppb-addon-single-image img,
body.itemid-417 #section-id-1753200000048 .sppb-addon-single-image img {
  max-height: 48px !important;
  max-width: 140px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
}

/* Footer logo: never get white card / size crush (logo-w is white) */
body.itemid-417 #sp-footer .sppb-addon-wrapper.addon-root-image .sppb-addon-single-image,
body.itemid-417 #sp-footer #sppb-addon-1634211885932 .sppb-addon-single-image,
body.itemid-417 #sp-footer #sppb-addon-1634211885932 .sppb-addon-single-image-container {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  padding: 0 !important;
  min-height: 0 !important;
  border-radius: 0 !important;
}
body.itemid-417 #sp-footer img[src*="logo-w.png"],
body.itemid-417 #sp-footer #sppb-addon-1634211885932 img {
  max-height: 56px !important;
  max-width: 220px !important;
  width: auto !important;
  height: auto !important;
  filter: none !important;
  opacity: 1 !important;
}

/* Intro headings — kill SPPB transparent text-fill */
body.itemid-417 #section-id-1753200000006 .sppb-addon-heading h2,
body.itemid-417 #section-id-1753200000006 .sppb-addon-heading h3,
body.itemid-417 #section-id-1753200000006 .sppb-addon-header .sppb-addon-title {
  -webkit-text-fill-color: #0c1a2e !important;
  background-image: none !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  color: #0c1a2e !important;
  font-weight: 750 !important;
}
body.itemid-417 #section-id-1753200000006 .sppb-addon-text-block,
body.itemid-417 #section-id-1753200000006 .sppb-addon-text-block p {
  color: #1e293b !important;
  max-width: none;
  margin-left: 0;
  font-size: 16px !important;
  line-height: 1.75 !important;
  opacity: 1 !important;
  font-weight: 450;
}

/* CTA */
body.itemid-417 .sppb-btn {
  border-radius: 10px !important;
  font-weight: 650;
  padding: 12px 26px !important;
}
body.itemid-417 #section-id-1753200000049 .sppb-addon-header .sppb-addon-title {
  -webkit-text-fill-color: #fff !important;
  background-image: none !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  color: #fff !important;
}
body.itemid-417 #section-id-1753200000049 .sppb-addon-text-block,
body.itemid-417 #section-id-1753200000049 .sppb-addon-text-block p,
body.itemid-417 #section-id-1753200000049 .sppb-addon-content {
  color: #ffffff !important;
}
/* CTA button group spacing */
body.itemid-417 #sppb-addon-wrapper-1753200000053,
body.itemid-417 #sppb-addon-1753200000053 {
  margin: 20px auto 0 !important;
  padding: 8px 12px 0 !important;
}
body.itemid-417 #sppb-addon-1753200000053 .sppb-addon-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin: 0 !important;
}
body.itemid-417 #sppb-addon-1753200000053 .sppb-btn,
body.itemid-417 #section-id-1753200000049 .sppb-btn,
body.itemid-417 #btn-17532000000530,
body.itemid-417 #btn-17532000000531 {
  margin: 0 !important;
}
/* Primary CTA: white pill (both themes) */
body.itemid-417 #section-id-1753200000049 .sppb-btn-primary,
body.itemid-417 #section-id-1753200000049 a.sppb-btn-primary,
body.itemid-417 #btn-17532000000530 {
  background: #ffffff !important;
  border: 1.5px solid #ffffff !important;
  color: #0d9488 !important;
  box-shadow: 0 8px 22px rgba(12, 26, 46, 0.18);
}
body.itemid-417 #section-id-1753200000049 .sppb-btn-primary:hover,
body.itemid-417 #btn-17532000000530:hover {
  background: #f0fdfa !important;
  border-color: #f0fdfa !important;
  color: #0f766e !important;
}
/* Outline CTA: white border + white text (both themes) */
body.itemid-417 #section-id-1753200000049 a.sppb-btn:not(.sppb-btn-primary),
body.itemid-417 #section-id-1753200000049 .sppb-btn-outline,
body.itemid-417 #section-id-1753200000049 .sppb-btn-custom,
body.itemid-417 #btn-17532000000531 {
  background: transparent !important;
  border: 1.5px solid #ffffff !important;
  color: #ffffff !important;
}
body.itemid-417 #section-id-1753200000049 a.sppb-btn:not(.sppb-btn-primary):hover,
body.itemid-417 #btn-17532000000531:hover {
  background: rgba(255, 255, 255, 0.14) !important;
  border-color: #ffffff !important;
  color: #ffffff !important;
}

/* Force white CTA buttons in light mode too */
html.hu-theme-light body.itemid-417 #btn-17532000000530,
html.hu-theme-light body.itemid-417 #section-id-1753200000049 .sppb-btn-primary {
  background: #ffffff !important;
  border-color: #ffffff !important;
  color: #0d9488 !important;
}
html.hu-theme-light body.itemid-417 #btn-17532000000531,
html.hu-theme-light body.itemid-417 #section-id-1753200000049 .sppb-btn-outline,
html.hu-theme-light body.itemid-417 #section-id-1753200000049 .sppb-btn-custom {
  background: transparent !important;
  border-color: #ffffff !important;
  color: #ffffff !important;
}

@media (max-width: 767px) {
  body.itemid-417 .sppb-addon-wrapper.addon-root-image {
    margin-bottom: 12px;
  }
}

/* Dark mode */
html.hu-theme-dark body.itemid-417 {
  --trk-text: #e2e8f0;
  --trk-text-sub: #cbd5e1;
  --trk-bg: #0b1220;
  --trk-card: #ffffff;
}
html.hu-theme-dark .sp-page-builder .page-content #section-id-1753200000006,
html.hu-theme-dark .sp-page-builder .page-content #section-id-1753200000021,
html.hu-theme-dark .sp-page-builder .page-content #section-id-1753200000030,
html.hu-theme-dark .sp-page-builder .page-content #section-id-1753200000039,
html.hu-theme-dark .sp-page-builder .page-content #section-id-1753200000048 {
  background-color: #0b1220 !important;
  background: #0b1220 !important;
}
html.hu-theme-dark body.itemid-417 #section-id-1753200000006 .sppb-addon-heading h2,
html.hu-theme-dark body.itemid-417 #section-id-1753200000006 .sppb-addon-heading h3,
html.hu-theme-dark body.itemid-417 #section-id-1753200000006 .sppb-addon-header .sppb-addon-title {
  -webkit-text-fill-color: #f8fafc !important;
  background-image: none !important;
  color: #f8fafc !important;
}
html.hu-theme-dark body.itemid-417 #section-id-1753200000006 .sppb-addon-text-block,
html.hu-theme-dark body.itemid-417 #section-id-1753200000006 .sppb-addon-text-block p {
  color: #cbd5e1 !important;
}
html.hu-theme-dark body.itemid-417 .trk-carriers-eyebrow {
  color: #5eead4 !important;
}
html.hu-theme-dark body.itemid-417 #section-id-1753200000021 .sppb-addon-wrapper.addon-root-image .sppb-addon-single-image,
html.hu-theme-dark body.itemid-417 #section-id-1753200000030 .sppb-addon-wrapper.addon-root-image .sppb-addon-single-image,
html.hu-theme-dark body.itemid-417 #section-id-1753200000039 .sppb-addon-wrapper.addon-root-image .sppb-addon-single-image,
html.hu-theme-dark body.itemid-417 #section-id-1753200000048 .sppb-addon-wrapper.addon-root-image .sppb-addon-single-image {
  background: #ffffff !important;
  border-color: rgba(255,255,255,0.12) !important;
}
html.hu-theme-dark body.itemid-417 #sp-footer {
  background: #060b14 !important;
}
html.hu-theme-dark body.itemid-417 #sp-footer .sppb-addon-wrapper.addon-root-image .sppb-addon-single-image,
html.hu-theme-dark body.itemid-417 #sp-footer #sppb-addon-1634211885932 .sppb-addon-single-image {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
}
html.hu-theme-dark body.itemid-417 #sp-footer img[src*="logo-w.png"] {
  filter: none !important;
  opacity: 1 !important;
}

/* =========================================================
   Connect API Tracking / For Developers (itemid-416) — page 80
   ========================================================= */
body.itemid-416 {
  --dev-teal: #0d9488;
  --dev-teal-light: #5eead4;
  --dev-navy: #0c1a2e;
  --dev-text: #0f172a;
  --dev-sub: #475569;
}

body.itemid-416 .sppb-row-container {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero */
body.itemid-416 #section-id-1753300000001 .sppb-addon-header .sppb-addon-title {
  -webkit-text-fill-color: #5eead4 !important;
  background-image: none !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  color: #5eead4 !important;
  font-weight: 800 !important;
  text-align: center !important;
}
body.itemid-416 #section-id-1753300000001 .sppb-addon-text-block,
body.itemid-416 #section-id-1753300000001 .sppb-addon-text-block p,
body.itemid-416 #section-id-1753300000001 .sppb-addon-content {
  color: #ffffff !important;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
body.itemid-416 #section-id-1753300000001 .sppb-addon-content strong {
  color: #ffffff !important;
}
body.itemid-416 #section-id-1753300000001 .sppb-btn-primary {
  background: #0d9488 !important;
  border-color: #0d9488 !important;
  color: #fff !important;
}
body.itemid-416 #section-id-1753300000001 a.sppb-btn:not(.sppb-btn-primary) {
  border: 1.5px solid #ffffff !important;
  color: #ffffff !important;
  background: transparent !important;
}

/* Light sections */
.sp-page-builder .page-content #section-id-1753300000006,
.sp-page-builder .page-content #section-id-1753300000011,
.sp-page-builder .page-content #section-id-1753300000038 {
  background: #ffffff !important;
}
.sp-page-builder .page-content #section-id-1753300000020 {
  background: #f1f5f9 !important;
}

body.itemid-416 .sppb-addon-heading h2 {
  color: var(--dev-text);
  font-weight: 750;
}
body.itemid-416 .sppb-addon-text-block p {
  color: var(--dev-sub);
}

/* Feature cards */
body.itemid-416 #section-id-1753300000011 .sppb-addon-feature,
body.itemid-416 #section-id-1753300000020 .sppb-addon-feature,
body.itemid-416 #section-id-1753300000038 .sppb-addon-feature {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  padding: 24px 22px;
  height: 100%;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
body.itemid-416 #section-id-1753300000011 .sppb-addon-feature:hover,
body.itemid-416 #section-id-1753300000020 .sppb-addon-feature:hover,
body.itemid-416 #section-id-1753300000038 .sppb-addon-feature:hover {
  transform: translateY(-3px);
  border-color: #0d9488;
  box-shadow: 0 14px 32px rgba(13, 148, 136, 0.12);
}
body.itemid-416 #section-id-1753300000020 .sppb-addon-feature {
  background: #ffffff;
  text-align: center;
}
body.itemid-416 .sppb-feature-box-title,
body.itemid-416 .sppb-addon-feature .sppb-addon-title {
  color: var(--dev-text) !important;
  font-weight: 700 !important;
}
body.itemid-416 .sppb-addon-feature .sppb-addon-text {
  color: var(--dev-sub) !important;
}

/* Docs dark section */
body.itemid-416 #section-id-1753300000030 .sppb-addon-header .sppb-addon-title {
  -webkit-text-fill-color: #ffffff !important;
  background-image: none !important;
  color: #ffffff !important;
}
body.itemid-416 #section-id-1753300000030 .sppb-addon-text-block,
body.itemid-416 #section-id-1753300000030 .sppb-addon-text-block p,
body.itemid-416 #section-id-1753300000030 .sppb-addon-content {
  color: #ffffff !important;
  text-align: left;
}
body.itemid-416 #section-id-1753300000030 .sppb-addon-feature {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(94,234,212,0.2);
  border-radius: 16px;
  padding: 24px;
}
body.itemid-416 #section-id-1753300000030 .sppb-feature-box-title,
body.itemid-416 #section-id-1753300000030 .sppb-addon-feature .sppb-addon-title {
  color: #ffffff !important;
}
body.itemid-416 #section-id-1753300000030 .sppb-addon-feature .sppb-addon-text {
  color: rgba(255,255,255,0.8) !important;
}
body.itemid-416 #section-id-1753300000030 .sppb-btn-primary {
  background: #ffffff !important;
  border-color: #ffffff !important;
  color: #0d9488 !important;
}
body.itemid-416 #section-id-1753300000030 a.sppb-btn:not(.sppb-btn-primary) {
  border: 1.5px solid #ffffff !important;
  color: #ffffff !important;
  background: transparent !important;
}

/* Bottom CTA */
body.itemid-416 #section-id-1753300000048 .sppb-addon-header .sppb-addon-title {
  -webkit-text-fill-color: #ffffff !important;
  background-image: none !important;
  color: #ffffff !important;
}
body.itemid-416 #section-id-1753300000048 .sppb-addon-text-block,
body.itemid-416 #section-id-1753300000048 .sppb-addon-text-block p,
body.itemid-416 #section-id-1753300000048 .sppb-addon-content {
  color: #ffffff !important;
}
body.itemid-416 #section-id-1753300000048 .sppb-btn-primary {
  background: #ffffff !important;
  border-color: #ffffff !important;
  color: #0d9488 !important;
}
body.itemid-416 #section-id-1753300000048 a.sppb-btn:not(.sppb-btn-primary) {
  border: 1.5px solid #ffffff !important;
  color: #ffffff !important;
  background: transparent !important;
}

body.itemid-416 .sppb-btn {
  border-radius: 10px !important;
  font-weight: 650;
  padding: 12px 24px !important;
}

/* Footer logo consistency on this page too */
body.itemid-416 #sp-footer {
  background: #0c1a2e !important;
  color: #e2e8f0 !important;
}
body.itemid-416 #sp-footer,
body.itemid-416 #sp-footer p,
body.itemid-416 #sp-footer .sp-module-content {
  color: #e2e8f0 !important;
}
body.itemid-416 #sp-footer .sppb-addon-wrapper.addon-root-image .sppb-addon-single-image {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  padding: 0 !important;
}
body.itemid-416 #sp-footer img[src*="logo-w.png"] {
  max-height: 56px !important;
  max-width: 220px !important;
  filter: none !important;
}

@media (max-width: 767px) {
  body.itemid-416 #section-id-1753300000011 .sppb-addon-feature,
  body.itemid-416 #section-id-1753300000020 .sppb-addon-feature,
  body.itemid-416 #section-id-1753300000038 .sppb-addon-feature {
    margin-bottom: 14px;
  }
}

/* Dark mode */
html.hu-theme-dark body.itemid-416 {
  --dev-text: #e2e8f0;
  --dev-sub: #94a3b8;
}
html.hu-theme-dark .sp-page-builder .page-content #section-id-1753300000006,
html.hu-theme-dark .sp-page-builder .page-content #section-id-1753300000011,
html.hu-theme-dark .sp-page-builder .page-content #section-id-1753300000038 {
  background: #0f172a !important;
}
html.hu-theme-dark .sp-page-builder .page-content #section-id-1753300000020 {
  background: #0b1220 !important;
}
html.hu-theme-dark body.itemid-416 .sppb-addon-heading h2 {
  color: #e2e8f0 !important;
}
html.hu-theme-dark body.itemid-416 .sppb-addon-text-block p {
  color: #94a3b8 !important;
}
html.hu-theme-dark body.itemid-416 #section-id-1753300000011 .sppb-addon-feature,
html.hu-theme-dark body.itemid-416 #section-id-1753300000020 .sppb-addon-feature,
html.hu-theme-dark body.itemid-416 #section-id-1753300000038 .sppb-addon-feature {
  background: #1e293b;
  border-color: rgba(94,234,212,0.12);
}
html.hu-theme-dark body.itemid-416 .sppb-feature-box-title,
html.hu-theme-dark body.itemid-416 .sppb-addon-feature .sppb-addon-title {
  color: #e2e8f0 !important;
}
html.hu-theme-dark body.itemid-416 .sppb-addon-feature .sppb-addon-text {
  color: #94a3b8 !important;
}

/* Light-section primary buttons (Automate / Capabilities / Use cases) */
body.itemid-416 #section-id-1753300000006 .sppb-btn-primary,
body.itemid-416 #section-id-1753300000011 .sppb-btn-primary,
body.itemid-416 #section-id-1753300000020 .sppb-btn-primary,
body.itemid-416 #section-id-1753300000038 .sppb-btn-primary {
  background: #0d9488 !important;
  border-color: #0d9488 !important;
  color: #ffffff !important;
}
body.itemid-416 #section-id-1753300000006 a.sppb-btn:not(.sppb-btn-primary),
body.itemid-416 #section-id-1753300000011 a.sppb-btn:not(.sppb-btn-primary),
body.itemid-416 #section-id-1753300000020 a.sppb-btn:not(.sppb-btn-primary),
body.itemid-416 #section-id-1753300000038 a.sppb-btn:not(.sppb-btn-primary) {
  border: 1.5px solid #0d9488 !important;
  color: #0d9488 !important;
  background: transparent !important;
}

/* Dark mode: light sections stay readable; buttons keep teal */
html.hu-theme-dark body.itemid-416 #section-id-1753300000006 .sppb-btn-primary,
html.hu-theme-dark body.itemid-416 #section-id-1753300000011 .sppb-btn-primary,
html.hu-theme-dark body.itemid-416 #section-id-1753300000020 .sppb-btn-primary,
html.hu-theme-dark body.itemid-416 #section-id-1753300000038 .sppb-btn-primary {
  background: #0d9488 !important;
  border-color: #0d9488 !important;
  color: #ffffff !important;
}
html.hu-theme-dark body.itemid-416 #section-id-1753300000006 a.sppb-btn:not(.sppb-btn-primary),
html.hu-theme-dark body.itemid-416 #section-id-1753300000011 a.sppb-btn:not(.sppb-btn-primary),
html.hu-theme-dark body.itemid-416 #section-id-1753300000020 a.sppb-btn:not(.sppb-btn-primary),
html.hu-theme-dark body.itemid-416 #section-id-1753300000038 a.sppb-btn:not(.sppb-btn-primary) {
  border: 1.5px solid #5eead4 !important;
  color: #5eead4 !important;
  background: transparent !important;
}

/* =========================================================
   Footer bottom bar — layout + light/dark readability
   ========================================================= */
#sp-footer-bottom {
  background: #08111f !important;
  color: #cbd5e1 !important;
  padding: 14px 0 !important;
  margin: 0 !important;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
}

#sp-footer-bottom .container-inner,
#sp-footer-bottom .row,
#sp-footer-bottom #sp-content-bottom,
#sp-footer-bottom .sp-column {
  margin: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

#sp-footer-bottom .sp-column {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px 24px !important;
  flex-wrap: wrap !important;
  min-height: 44px;
  width: 100%;
}

#sp-footer-bottom .sp-copyright {
  display: block !important;
  flex: 1 1 240px !important;
  margin: 0 !important;
  padding: 0 !important;
  text-align: left !important;
  justify-content: flex-start !important;
  color: #cbd5e1 !important;
  font-size: 13px !important;
  line-height: 1.5 !important;
  font-weight: 500 !important;
  letter-spacing: 0.01em;
  white-space: normal !important;
}

#sp-footer-bottom .sp-copyright a {
  color: #5eead4 !important;
  margin-left: 0 !important;
}

#sp-footer-bottom ul.social-icons {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 10px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  flex: 0 0 auto !important;
}

#sp-footer-bottom ul.social-icons > li {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

#sp-footer-bottom ul.social-icons a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 36px !important;
  height: 36px !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.08) !important;
  color: #f8fafc !important;
  font-size: 16px !important;
  line-height: 1 !important;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

#sp-footer-bottom ul.social-icons a:hover,
#sp-footer-bottom ul.social-icons a:focus {
  background: #0d9488 !important;
  color: #ffffff !important;
  transform: translateY(-1px);
}

/* Light mode: light bar + dark text (readable) */
html.hu-theme-light #sp-footer-bottom {
  background: #eef2f7 !important;
  color: #334155 !important;
  border-top: 1px solid rgba(15, 23, 42, 0.1);
}

html.hu-theme-light #sp-footer-bottom .sp-copyright {
  color: #334155 !important;
}

html.hu-theme-light #sp-footer-bottom .sp-copyright a {
  color: #0d9488 !important;
}

html.hu-theme-light #sp-footer-bottom ul.social-icons a {
  background: #ffffff !important;
  color: #0f172a !important;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
}

html.hu-theme-light #sp-footer-bottom ul.social-icons a:hover,
html.hu-theme-light #sp-footer-bottom ul.social-icons a:focus {
  background: #0d9488 !important;
  color: #ffffff !important;
}

/* Keep itemid page overrides consistent */
body.itemid-417 #sp-footer-bottom,
body.itemid-416 #sp-footer-bottom,
body.itemid-414 #sp-footer-bottom {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

@media (max-width: 575.98px) {
  #sp-footer-bottom .sp-column {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
  }
  #sp-footer-bottom ul.social-icons {
    justify-content: flex-start !important;
  }
  #sp-footer-bottom .sp-copyright {
    font-size: 12px !important;
  }
}

/* Footer-bottom light mode: stronger contrast + clear theme toggle */
html.hu-theme-light #sp-footer-bottom .sp-copyright,
html.hu-theme-light body #sp-footer-bottom .sp-copyright {
  color: #0f172a !important;
  opacity: 1 !important;
}

html.hu-theme-light #sp-footer-bottom ul.social-icons a,
html.hu-theme-light body #sp-footer-bottom ul.social-icons a,
html.hu-theme-light #sp-footer-bottom ul.social-icons a .fab,
html.hu-theme-light body #sp-footer-bottom ul.social-icons a .fab {
  background: #ffffff !important;
  color: #0f172a !important;
  opacity: 1 !important;
}

html.hu-theme-light #sp-footer-bottom ul.social-icons .social-icon-facebook a {
  color: #1877f2 !important;
}
html.hu-theme-light #sp-footer-bottom ul.social-icons .social-icon-custom a {
  color: #06c755 !important;
}

/* Dark mode copyright must stay light */
html.hu-theme-dark #sp-footer-bottom .sp-copyright,
html.hu-theme-dark body #sp-footer-bottom .sp-copyright {
  color: #e2e8f0 !important;
  opacity: 1 !important;
}

/* Leave room for floating theme toggle (bottom-right) */
#sp-footer-bottom .sp-column {
  padding-right: 72px !important;
}
@media (max-width: 575.98px) {
  #sp-footer-bottom .sp-column {
    padding-right: 64px !important;
  }
}

/* Dark mode social icons on footer-bottom */
html.hu-theme-dark #sp-footer-bottom ul.social-icons a,
html.hu-theme-dark body #sp-footer-bottom ul.social-icons a {
  background: rgba(255, 255, 255, 0.1) !important;
  color: #f8fafc !important;
  box-shadow: none !important;
}
html.hu-theme-dark #sp-footer-bottom ul.social-icons a:hover,
html.hu-theme-dark #sp-footer-bottom ul.social-icons a:focus {
  background: #0d9488 !important;
  color: #ffffff !important;
}
html.hu-theme-dark #sp-footer-bottom ul.social-icons .social-icon-facebook a,
html.hu-theme-dark #sp-footer-bottom ul.social-icons .social-icon-custom a,
html.hu-theme-dark #sp-footer-bottom ul.social-icons a .fab {
  color: #f8fafc !important;
}

/* Dev page: text block breathing room */
body.itemid-416 #sppb-addon-1753300000004,
body.itemid-416 #sppb-addon-wrapper-1753300000004 {
  margin: 12px auto 28px !important;
  padding: 0 18px 8px !important;
  max-width: 720px;
}
body.itemid-416 #sppb-addon-1753300000004 .sppb-addon-content {
  line-height: 1.75 !important;
}

body.itemid-416 #sppb-addon-1753300000023,
body.itemid-416 #sppb-addon-wrapper-1753300000023 {
  margin: 4px auto 28px !important;
  padding: 0 16px 8px !important;
  max-width: 680px;
  text-align: center;
}
body.itemid-416 #sppb-addon-1753300000023 .sppb-addon-content {
  line-height: 1.7 !important;
}

/* Capabilities cards spacing */
body.itemid-416 #section-id-1753300000011 > .sppb-row-container,
body.itemid-416 #section-id-1753300000011 .sppb-row {
  row-gap: 20px;
}
body.itemid-416 #section-id-1753300000011 [class*="sppb-col"] {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}
body.itemid-416 #section-id-1753300000011 .sppb-addon-wrapper {
  margin-bottom: 8px !important;
  height: 100%;
}
body.itemid-416 #section-id-1753300000011 .sppb-addon-feature {
  padding: 28px 24px !important;
  margin: 0 !important;
  height: 100%;
}

/* Bottom CTA heading — centered & bold */
body.itemid-416 #sppb-addon-1753300000050,
body.itemid-416 #sppb-addon-wrapper-1753300000050 {
  text-align: center !important;
  margin: 0 auto 8px !important;
  padding: 8px 16px 0 !important;
  max-width: 820px;
}
body.itemid-416 #sppb-addon-1753300000050 .sppb-addon-title {
  -webkit-text-fill-color: #ffffff !important;
  background-image: none !important;
  color: #ffffff !important;
  text-align: center !important;
  font-weight: 800 !important;
  font-size: clamp(1.6rem, 2.4vw, 2.25rem) !important;
  line-height: 1.3 !important;
  margin: 0 auto !important;
}
body.itemid-416 #sppb-addon-1753300000051,
body.itemid-416 #sppb-addon-wrapper-1753300000051 {
  text-align: center !important;
  margin: 0 auto 18px !important;
  padding: 0 16px !important;
  max-width: 560px;
}
body.itemid-416 #sppb-addon-1753300000051 .sppb-addon-content,
body.itemid-416 #sppb-addon-1753300000051 p {
  text-align: center !important;
  color: #ffffff !important;
  opacity: 0.95;
}
body.itemid-416 #sppb-addon-1753300000052,
body.itemid-416 #sppb-addon-wrapper-1753300000052 {
  text-align: center !important;
  margin: 0 auto !important;
}
body.itemid-416 #btn-17533000000520 {
  display: inline-flex !important;
  justify-content: center;
}
