@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@400;500;600;700;800;900&display=swap');

:root {
  --tpl-red: #e8335e;
  --tpl-red-dark: #c11f46;
  --tpl-navy: #123a63;
  --tpl-navy-dark: #0a2440;
  --tpl-ink: #16202c;
  --tpl-muted: #5c6b7c;
  --tpl-soft: #f8fafc;
  --tpl-soft-2: #f4f6f9;
  --tpl-line: #e5e9f0;
  --tpl-white: #ffffff;
  --tpl-font: "Nunito Sans", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body,
button,
input,
select,
textarea {
  font-family: var(--tpl-font) !important;
}

body {
  margin: 0;
  color: var(--tpl-ink);
  background: var(--tpl-white);
  letter-spacing: 0 !important;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: var(--tpl-navy);
  text-decoration: none;
}

a:hover {
  color: var(--tpl-red);
}

img {
  max-width: 100%;
  display: block;
}

/* Shared header from the approved template */
.wh-wrap {
  width: 100%;
  position: relative;
  z-index: 100;
  background: var(--tpl-white);
}

.wh-topbar {
  background: var(--tpl-navy-dark) !important;
  color: rgba(255, 255, 255, 0.72) !important;
  padding: 0 !important;
  box-shadow: none !important;
}

.wh-topbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 9px 32px !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.wh-topbar-left {
  display: flex;
  align-items: center;
  gap: 18px !important;
  flex-wrap: wrap;
}

.wh-topbar-item,
.wh-topbar-item a {
  color: rgba(255, 255, 255, 0.72) !important;
  font-size: 12.5px !important;
  font-weight: 600 !important;
  line-height: 1.4;
}

.wh-topbar-item:hover,
.wh-topbar-item a:hover {
  color: var(--tpl-white) !important;
}

.wh-topbar-item svg {
  stroke: currentColor !important;
}

.wh-tb-divider {
  width: 1px;
  height: 13px !important;
  background: rgba(255, 255, 255, 0.18) !important;
}

.wh-dot {
  width: 6px;
  height: 6px;
  background: var(--tpl-red) !important;
  border-radius: 50%;
}

.wh-auth-tag {
  color: var(--tpl-white) !important;
  font-size: 11.5px !important;
  font-weight: 700 !important;
  letter-spacing: 0.14em !important;
}

.wh-main {
  background: var(--tpl-white) !important;
  border-bottom: 1px solid var(--tpl-line) !important;
  border-image: none !important;
  box-shadow: none !important;
}

.wh-main-inner {
  max-width: 1280px;
  height: 86px !important;
  margin: 0 auto;
  padding: 0 32px !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.west-brand-lockup {
  display: flex !important;
  align-items: center !important;
  flex-direction: row !important;
  gap: 13px !important;
  flex-shrink: 0;
}

.west-logo-mark img,
.wh-logo,
.wf-logo-mark img {
  height: 42px !important;
  width: auto !important;
}

.wh-logo-text,
.wf-logo-name {
  color: var(--tpl-navy) !important;
  font-size: 20px !important;
  font-weight: 800 !important;
  line-height: 1.15 !important;
  letter-spacing: -0.2px !important;
}

.wh-logo-sub,
.wf-tagline {
  color: var(--tpl-red) !important;
  font-size: 10.5px !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase;
}

.wh-nav {
  display: flex;
  align-items: center;
  gap: 34px !important;
}

.wh-nav-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.wh-nav-link {
  position: relative;
  color: var(--tpl-ink) !important;
  padding: 8px 0 !important;
  font-size: 14.5px !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.wh-nav-link::after {
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  height: 2px !important;
  background: var(--tpl-red) !important;
}

.wh-nav-link:hover {
  color: var(--tpl-red) !important;
}

.wh-dropdown {
  display: block !important;
  top: 100% !important;
  left: -20px !important;
  min-width: 280px !important;
  padding: 10px !important;
  border: 1px solid var(--tpl-line) !important;
  border-radius: 6px !important;
  box-shadow: 0 20px 44px rgba(10, 36, 64, 0.14) !important;
  z-index: 10000 !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
}

.wh-dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -18px;
  height: 18px;
}

.wh-nav-item:hover .wh-dropdown,
.wh-nav-item:focus-within .wh-dropdown,
.wh-nav-item.open .wh-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.wh-dd-item {
  position: relative;
  z-index: 1;
  padding: 10px 14px !important;
  border-radius: 4px !important;
  color: var(--tpl-ink) !important;
  font-size: 13.5px !important;
  font-weight: 600 !important;
}

.wh-dd-item:hover {
  color: var(--tpl-red) !important;
  background: var(--tpl-soft) !important;
}

.wh-cta,
.wh-mob-cta,
.hp-btn-primary,
.hp-submit,
.sp-btn-quote {
  background: var(--tpl-red) !important;
  color: var(--tpl-white) !important;
  border: 1px solid var(--tpl-red) !important;
  border-radius: 5px !important;
  box-shadow: none !important;
  font-size: 13.5px !important;
  font-weight: 700 !important;
  letter-spacing: 0.01em !important;
  text-transform: none !important;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.wh-cta {
  padding: 12px 24px !important;
}

.wh-cta:hover,
.wh-mob-cta:hover,
.hp-btn-primary:hover,
.hp-submit:hover,
.sp-btn-quote:hover {
  background: var(--tpl-red-dark) !important;
  border-color: var(--tpl-red-dark) !important;
  color: var(--tpl-white) !important;
  transform: none !important;
}

.hp-hero-left .hp-hero-btns .hp-btn-primary,
.hp-hero-clean .hp-hero-btns .hp-btn-primary,
.hp-featured .hp-btn-primary {
  background: var(--tpl-red) !important;
  color: var(--tpl-white) !important;
  border-color: var(--tpl-red) !important;
  box-shadow: none !important;
}

.hp-hero-left .hp-hero-btns .hp-btn-primary:hover,
.hp-hero-clean .hp-hero-btns .hp-btn-primary:hover,
.hp-featured .hp-btn-primary:hover {
  background: var(--tpl-red-dark) !important;
  border-color: var(--tpl-red-dark) !important;
  color: var(--tpl-white) !important;
}

.wh-hamburger span {
  background: var(--tpl-navy) !important;
}

.wh-mobile-menu {
  border-top: 1px solid var(--tpl-line) !important;
  box-shadow: none !important;
}

.wh-mob-link,
.wh-mob-toggle {
  color: var(--tpl-ink) !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  border-bottom-color: #f0f2f6 !important;
}

.wh-mob-sublink {
  color: var(--tpl-muted) !important;
  font-size: 13.5px !important;
  font-weight: 600 !important;
}

/* Homepage template */
.hp-hero,
.hp-hero-clean {
  max-width: 1280px !important;
  min-height: auto !important;
  margin: 0 auto !important;
  padding: 88px 32px 76px !important;
  display: grid !important;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr) !important;
  gap: 56px !important;
  align-items: center !important;
  background: var(--tpl-white) !important;
  border: 0 !important;
  overflow: visible !important;
}

.hp-hero-clean .hp-hero-left {
  max-width: none;
}

.hp-hero-tag,
.hp-hero-clean .hp-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 26px !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
}

.hp-hero-tag span,
.hp-hero-clean .hp-hero-tag span {
  color: var(--tpl-navy) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.14em !important;
}

.hp-hero-tag .dot,
.hp-hero-clean .hp-hero-tag .dot {
  width: 7px !important;
  height: 7px !important;
  background: var(--tpl-red) !important;
  border-radius: 50%;
}

.hp-hero h1,
.hp-hero-clean h1 {
  margin: 0 !important;
  color: var(--tpl-red) !important;
  font-size: clamp(38px, 4.1vw, 55px) !important;
  line-height: 1.1 !important;
  font-weight: 800 !important;
  letter-spacing: -0.01em !important;
}

.hp-hero h1 em,
.hp-hero-clean h1 em {
  color: var(--tpl-red) !important;
  font-style: normal;
  text-shadow: none !important;
}

.hp-hero p,
.hp-hero-clean p {
  max-width: 540px !important;
  margin: 22px 0 0 !important;
  color: var(--tpl-muted) !important;
  font-size: 16.5px !important;
  line-height: 1.75 !important;
}

.hp-hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px !important;
  margin-top: 32px !important;
}

.hp-hero-left .hp-hero-btns .hp-btn-primary {
  padding: 15px 30px !important;
  font-size: 14.5px !important;
}

.hp-btn-secondary {
  padding: 15px 30px !important;
  background: transparent !important;
  color: var(--tpl-navy) !important;
  border: 1.5px solid rgba(18, 58, 99, 0.28) !important;
  border-radius: 5px !important;
  box-shadow: none !important;
  font-size: 14.5px !important;
  font-weight: 700 !important;
}

.hp-btn-secondary:hover {
  border-color: var(--tpl-navy) !important;
  color: var(--tpl-navy) !important;
  background: transparent !important;
  transform: none !important;
}

.hp-hero-stats,
.hp-hero-clean .hp-hero-stats {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 0 !important;
  max-width: 480px !important;
  margin-top: 44px !important;
  padding-top: 24px !important;
  border-top: 1px solid var(--tpl-line) !important;
  border-image: none !important;
}

.hp-stat .num,
.hp-hero-clean .hp-stat .num {
  color: var(--tpl-red) !important;
  font-size: 28px !important;
  font-weight: 800 !important;
  text-shadow: none !important;
}

.hp-stat .num span,
.hp-hero-clean .hp-stat .num span {
  color: var(--tpl-navy) !important;
}

.hp-stat .lbl,
.hp-hero-clean .hp-stat .lbl {
  color: var(--tpl-muted) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  line-height: 1.35;
}

.hp-hero-media {
  margin: 0 !important;
  border: 1px solid var(--tpl-line) !important;
  border-radius: 8px !important;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(10, 36, 64, 0.18) !important;
}

.hp-hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 16px !important;
  border: 1px solid var(--tpl-line) !important;
  border-radius: 6px !important;
  overflow: hidden;
  background: var(--tpl-white) !important;
}

.hp-hero-proof span {
  padding: 13px 10px !important;
  background: var(--tpl-white) !important;
  color: var(--tpl-navy) !important;
  font-size: 11.5px !important;
  font-weight: 700 !important;
  letter-spacing: 0.03em !important;
  text-align: center;
}

.hp-intro,
.hp-featured,
.hp-why,
.hp-ind,
.hp-contact {
  max-width: 1280px !important;
  margin: 0 auto !important;
  padding-left: 32px !important;
  padding-right: 32px !important;
}

.hp-intro {
  padding-top: 20px !important;
  padding-bottom: 92px !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
  gap: 64px !important;
  align-items: center !important;
}

.hp-intro-img {
  margin: 0 !important;
  border-radius: 8px !important;
  overflow: hidden;
  border: 1px solid var(--tpl-line) !important;
  box-shadow: none !important;
  background: var(--tpl-white) !important;
}

.hp-intro-img img {
  width: 100% !important;
  aspect-ratio: 16 / 10 !important;
  object-fit: cover !important;
  object-position: center !important;
}

.hp-section-tag {
  display: inline-flex !important;
  align-items: center !important;
  gap: 9px !important;
  margin-bottom: 16px;
  color: var(--tpl-red) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase;
}

.hp-section-tag::before,
.hp-section-tag::after {
  display: none !important;
}

.hp-section-tag .dot,
.hp-section-tag > div {
  width: 7px !important;
  height: 7px !important;
  background: var(--tpl-red) !important;
  border-radius: 50%;
}

.hp-section-head h2,
.hp-intro h2,
.hp-contact h2 {
  margin: 0 !important;
  color: var(--tpl-navy) !important;
  font-size: clamp(27px, 2.6vw, 36px) !important;
  line-height: 1.22 !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
}

.hp-section-head h2::after,
.hp-intro h2::after,
.hp-contact h2::after {
  display: none !important;
}

.hp-intro p,
.hp-section-head p {
  color: var(--tpl-muted) !important;
  font-size: 16px !important;
  line-height: 1.75 !important;
}

.hp-cert {
  padding: 8px 16px !important;
  border: 1px solid rgba(18, 58, 99, 0.18) !important;
  border-radius: 5px !important;
  color: var(--tpl-navy) !important;
  background: var(--tpl-white) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
}

.hp-featured {
  max-width: none !important;
  padding-top: 88px !important;
  padding-bottom: 88px !important;
  background: var(--tpl-soft) !important;
}

.hp-featured > * {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.hp-featured-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 22px !important;
}

.hp-featured-card,
.hp-prod-card,
.hp-why-item,
.hp-ind-card,
.sp-info-card,
.sp-cta-card,
.sp-contact-card,
.cat-card {
  border: 1px solid var(--tpl-line) !important;
  border-radius: 8px !important;
  background: var(--tpl-white) !important;
  box-shadow: none !important;
}

.hp-featured-card:hover,
.hp-prod-card:hover,
.hp-ind-card:hover,
.cat-card:hover {
  border-color: rgba(232, 51, 94, 0.35) !important;
  box-shadow: 0 20px 40px -18px rgba(10, 36, 64, 0.16) !important;
  transform: none !important;
}

.hp-featured-img {
  height: 210px !important;
  min-height: 210px !important;
  padding: 26px !important;
  background: var(--tpl-soft-2) !important;
  border-bottom: 1px solid var(--tpl-line) !important;
}

.hp-featured-img::before,
.hp-featured-img::after {
  display: none !important;
}

.hp-featured-img img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  transform: none !important;
  filter: none !important;
}

.hp-featured-body {
  padding: 20px 20px 24px !important;
}

.hp-featured-cat {
  color: #8b97a8 !important;
  font-size: 12px !important;
  font-weight: 700 !important;
}

.hp-featured-body h3 {
  margin: 6px 0 0 !important;
  color: var(--tpl-navy) !important;
  font-size: 17px !important;
  font-weight: 800 !important;
}

.hp-products,
.hp-why,
.hp-ind {
  padding-top: 88px !important;
  padding-bottom: 88px !important;
  background: var(--tpl-white) !important;
}

.hp-prod-grid,
.hp-why-grid,
.hp-ind-grid {
  gap: 22px !important;
}

.hp-prod-icon,
.hp-ind-icon,
.hp-ci-icon {
  background: var(--tpl-red) !important;
  background-image: none !important;
  color: var(--tpl-white) !important;
  border-radius: 6px !important;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22) !important;
}

.hp-products .hp-prod-icon,
.hp-ind-icon,
.hp-ci-icon,
.contact-icon {
  background: var(--tpl-red) !important;
  background-image: none !important;
  color: var(--tpl-white) !important;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22) !important;
}

.hp-prod-icon svg,
.hp-ind-icon svg,
.hp-ci-icon svg {
  stroke: currentColor !important;
  fill: none !important;
}

.hp-prod-icon svg *,
.hp-ind-icon svg *,
.hp-ci-icon svg * {
  stroke: currentColor !important;
}

.hp-prod-card h3,
.hp-why-item h4,
.hp-ind-card h4 {
  color: var(--tpl-navy) !important;
  font-weight: 800 !important;
}

.hp-prod-card p,
.hp-why-item p,
.hp-ind-card p {
  color: var(--tpl-muted) !important;
}

.hp-prod-model {
  background: var(--tpl-soft) !important;
  color: var(--tpl-navy) !important;
  border: 1px solid var(--tpl-line) !important;
}

.hp-prod-link {
  color: var(--tpl-red) !important;
  font-weight: 700 !important;
}

.hp-ind .hp-section-tag {
  color: var(--tpl-red) !important;
  border-color: rgba(232, 51, 94, 0.26) !important;
}

.hp-contact {
  max-width: none !important;
  position: relative;
  display: grid !important;
  grid-template-columns: minmax(260px, 0.82fr) minmax(520px, 1.18fr) !important;
  gap: 36px !important;
  align-items: center !important;
  padding-top: 88px !important;
  padding-bottom: 88px !important;
  padding-left: max(32px, calc((100vw - 1280px) / 2 + 32px)) !important;
  padding-right: max(32px, calc((100vw - 1280px) / 2 + 32px)) !important;
  overflow: hidden;
  background: var(--tpl-white) !important;
  border-top: 1px solid var(--tpl-line) !important;
  border-bottom: 1px solid var(--tpl-line) !important;
}

.hp-contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/wp-content/uploads/hero/west-contact-bg.webp") center / cover no-repeat;
  opacity: 0.7;
  z-index: 0;
}

.hp-contact::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.9) 42%, rgba(255, 255, 255, 0.76) 64%, rgba(255, 255, 255, 0.9) 100%),
    linear-gradient(135deg, rgba(232, 51, 94, 0.12), rgba(18, 58, 99, 0.12));
  z-index: 0;
}

.hp-contact-left,
.hp-contact-right {
  position: relative;
  z-index: 1;
  max-width: none;
  margin: 0 !important;
}

.hp-contact-left {
  max-width: 430px !important;
}

.hp-contact-left p {
  max-width: 380px;
  color: var(--tpl-muted) !important;
  font-size: 15.5px !important;
  line-height: 1.75 !important;
}

.hp-contact-info {
  display: grid !important;
  gap: 12px !important;
  margin-top: 28px !important;
}

.hp-ci {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 12px 14px !important;
  border: 1px solid rgba(18, 58, 99, 0.13) !important;
  border-radius: 6px !important;
  background: rgba(255, 255, 255, 0.86) !important;
}

.hp-ci-label {
  color: var(--tpl-red) !important;
  font-size: 11.5px !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase;
}

.hp-ci-val {
  color: var(--tpl-navy) !important;
  font-size: 15px !important;
  font-weight: 800 !important;
}

.hp-contact-right {
  background: var(--tpl-white) !important;
  border: 1px solid var(--tpl-line) !important;
  border-radius: 8px !important;
  box-shadow: 0 24px 60px -36px rgba(10, 36, 64, 0.34) !important;
}

.hp-contact-right h3 {
  color: var(--tpl-navy) !important;
  font-weight: 800 !important;
}

.hp-form-group label {
  color: var(--tpl-navy) !important;
  font-weight: 800 !important;
}

.hp-form-group input,
.hp-form-group select,
.hp-form-group textarea {
  border-color: rgba(18, 58, 99, 0.16) !important;
  background: var(--tpl-white) !important;
  color: var(--tpl-ink) !important;
}

.hp-form-group input:focus,
.hp-form-group select:focus,
.hp-form-group textarea:focus {
  border-color: var(--tpl-red) !important;
  box-shadow: 0 0 0 3px rgba(232, 51, 94, 0.12) !important;
}

/* Page hero system: shared pink, blue, and white brand language */
.vc-hero,
.tl-hero,
.ud-hero,
.blog-landing-hero {
  position: relative !important;
  overflow: hidden !important;
  border-bottom: 3px solid var(--tpl-red) !important;
  box-shadow: none !important;
}

.vc-hero::before,
.vc-hero::after,
.tl-hero::before,
.tl-hero::after,
.ud-hero::before,
.ud-hero::after,
.blog-landing-hero::before,
.blog-landing-hero::after {
  display: none !important;
}

.vc-hero {
  min-height: 480px !important;
  padding: 92px 32px !important;
  background:
    linear-gradient(90deg, rgba(10, 36, 64, 0.9) 0%, rgba(18, 58, 99, 0.72) 44%, rgba(232, 51, 94, 0.2) 100%),
    url("/wp-content/uploads/hero/west-vietnam-reception.png") center / cover no-repeat !important;
}

.tl-hero {
  min-height: 390px !important;
  padding: 82px 32px !important;
  background:
    linear-gradient(90deg, rgba(10, 36, 64, 0.94) 0%, rgba(18, 58, 99, 0.72) 46%, rgba(232, 51, 94, 0.22) 100%),
    url("/wp-content/uploads/hero/west-hydraulic-system.webp") center right / cover no-repeat !important;
}

.ud-hero {
  min-height: 520px !important;
  padding: 88px max(32px, calc((100vw - 1280px) / 2 + 32px)) !important;
  background:
    linear-gradient(90deg, rgba(10, 36, 64, 0.92) 0%, rgba(18, 58, 99, 0.76) 48%, rgba(232, 51, 94, 0.18) 100%),
    url("/wp-content/uploads/2026/04/hinh-anh-gian-khoan-w.e.st_.png") center / cover no-repeat !important;
}

.blog-landing-hero {
  min-height: 360px;
  padding: 82px 32px;
  background:
    linear-gradient(90deg, rgba(10, 36, 64, 0.92) 0%, rgba(18, 58, 99, 0.68) 48%, rgba(232, 51, 94, 0.2) 100%),
    url("/wp-content/uploads/hero/west-hero-clean.webp") center / cover no-repeat;
}

.vc-hero-inner,
.tl-hero-inner,
.blog-landing-hero-inner {
  position: relative !important;
  z-index: 1 !important;
  max-width: 780px !important;
}

.vc-hero-inner,
.tl-hero-inner {
  margin-left: auto !important;
  margin-right: auto !important;
}

.blog-landing-hero-inner {
  max-width: 860px;
  margin: 0 auto;
}

.vc-hero-tag,
.tl-hero-tag,
.ud-hero-tag,
.blog-landing-tag {
  background: rgba(255, 255, 255, 0.92) !important;
  border: 1px solid rgba(232, 51, 94, 0.35) !important;
  border-radius: 999px !important;
  color: var(--tpl-red) !important;
}

.vc-hero-tag span,
.tl-hero-tag span,
.ud-hero-tag span,
.blog-landing-tag {
  color: var(--tpl-red) !important;
  letter-spacing: 0.12em !important;
}

.blog-landing-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 16px;
  margin-bottom: 18px;
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
}

.blog-landing-tag span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--tpl-red);
}

.vc-hero h1,
.tl-hero h1,
.ud-hero h1,
.blog-landing-hero h1 {
  color: var(--tpl-white) !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
  text-shadow: 0 18px 44px rgba(10, 36, 64, 0.32);
}

.vc-hero h1 em,
.ud-hero h1 em {
  color: #ff5d82 !important;
}

.vc-hero p,
.tl-hero p,
.ud-hero p,
.blog-landing-hero p {
  color: rgba(255, 255, 255, 0.88) !important;
  font-size: 16px !important;
  line-height: 1.8 !important;
}

.vc-hero-stats {
  border-top-color: rgba(255, 255, 255, 0.22) !important;
}

.vc-stat .num,
.vc-stat .lbl {
  color: var(--tpl-white) !important;
}

.vc-mv-icon,
.vc-fg-feat-icon,
.tl-section-icon,
.ud-app-card-icon,
.ud-challenge-item .icon {
  background: var(--tpl-red) !important;
  background-image: none !important;
  color: var(--tpl-white) !important;
  border-radius: 6px !important;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2) !important;
}

.vc-mv-icon svg,
.vc-fg-feat-icon svg,
.tl-section-icon svg,
.ud-app-card-icon svg,
.ud-challenge-item .icon svg {
  stroke: currentColor !important;
  fill: none !important;
}

.vc-section-tag,
.ud-section-tag,
.tl-section-count,
.tl-badge.red {
  color: var(--tpl-red) !important;
  border-color: rgba(232, 51, 94, 0.28) !important;
}

.tl-btn-view,
.ud-btn-primary {
  background: var(--tpl-red) !important;
  border-color: var(--tpl-red) !important;
  color: var(--tpl-white) !important;
}

.tl-btn-dl,
.ud-btn-outline {
  border-color: rgba(18, 58, 99, 0.28) !important;
  color: var(--tpl-navy) !important;
  background: var(--tpl-white) !important;
}

.blog-card:hover {
  border-color: rgba(232, 51, 94, 0.42) !important;
}

.blog-card-read,
.blog-card h2 {
  color: var(--tpl-navy) !important;
}

.blog-breadcrumb {
  max-width: 1280px !important;
  margin: 22px auto 0 !important;
  padding: 0 32px !important;
}

.blog-listing-shell {
  max-width: 1280px;
  margin: 0 auto;
  padding: 34px 32px 92px;
}

.blog-listing-head {
  max-width: 760px;
  margin-bottom: 30px;
}

.blog-listing-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--tpl-red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blog-listing-tag::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--tpl-red);
}

.blog-listing-head h2 {
  margin: 0;
  color: var(--tpl-navy);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0;
}

.blog-listing-head p {
  margin: 12px 0 0;
  color: var(--tpl-muted);
  font-size: 16px;
  line-height: 1.75;
}

.blog-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px !important;
}

.blog-card {
  position: relative;
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
  min-width: 0;
  padding: 0 !important;
  overflow: hidden;
  border: 1px solid var(--tpl-line) !important;
  border-radius: 8px !important;
  background: var(--tpl-white) !important;
  box-shadow: none !important;
}

.blog-card:hover {
  border-color: rgba(232, 51, 94, 0.42) !important;
  box-shadow: 0 20px 42px -24px rgba(10, 36, 64, 0.28) !important;
  transform: none !important;
}

.blog-card-img {
  position: relative;
  width: 100% !important;
  min-height: 184px !important;
  height: 184px;
  padding: 22px !important;
  border-right: 0 !important;
  border-bottom: 1px solid var(--tpl-line) !important;
  background: var(--tpl-soft-2) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.blog-card-img::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 46%;
  height: 48%;
  background: var(--tpl-red);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}

.blog-card-img img {
  position: relative;
  z-index: 1;
  max-width: 100% !important;
  max-height: 138px !important;
  object-fit: contain !important;
}

.blog-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px !important;
}

.blog-card-date {
  margin-bottom: 9px !important;
  color: var(--tpl-red) !important;
  font-size: 11.5px !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-card h2 {
  margin: 0 0 10px !important;
  color: var(--tpl-navy) !important;
  font-size: 18px !important;
  line-height: 1.35 !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
}

.blog-card p {
  margin: 0 0 16px !important;
  color: var(--tpl-muted) !important;
  font-size: 14px !important;
  line-height: 1.65 !important;
}

.blog-card-read {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  margin-top: auto;
  padding: 9px 13px;
  border: 1px solid rgba(18, 58, 99, 0.16);
  border-radius: 5px;
  color: var(--tpl-navy) !important;
  background: var(--tpl-white);
  font-size: 12.5px !important;
  font-weight: 900 !important;
}

.blog-card:hover .blog-card-read {
  border-color: var(--tpl-red);
  color: var(--tpl-red) !important;
}

.blog-card:first-child {
  grid-column: span 2;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
  min-height: 340px;
  border-bottom: 3px solid var(--tpl-red) !important;
}

.blog-card:first-child .blog-card-img {
  height: 100%;
  min-height: 340px !important;
  border-right: 1px solid var(--tpl-line) !important;
  border-bottom: 0 !important;
  background:
    linear-gradient(135deg, rgba(232, 51, 94, 0.08), rgba(18, 58, 99, 0.08)),
    var(--tpl-soft-2) !important;
}

.blog-card:first-child .blog-card-img::after {
  width: 54%;
  height: 56%;
}

.blog-card:first-child .blog-card-img img {
  max-height: 230px !important;
}

.blog-card:first-child .blog-card-body {
  padding: 30px !important;
}

.blog-card:first-child h2 {
  font-size: clamp(25px, 2.5vw, 34px) !important;
  line-height: 1.18 !important;
}

.blog-card:first-child p {
  font-size: 15.5px !important;
  line-height: 1.75 !important;
}

@media (max-width: 980px) {
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-card:first-child {
    grid-column: span 2;
  }
}

@media (max-width: 680px) {
  .blog-listing-shell,
  .blog-breadcrumb {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .blog-grid,
  .blog-card:first-child {
    grid-template-columns: 1fr !important;
  }

  .blog-card:first-child {
    grid-column: span 1;
  }

  .blog-card:first-child .blog-card-img {
    min-height: 220px !important;
    border-right: 0 !important;
    border-bottom: 1px solid var(--tpl-line) !important;
  }
}

.blog-article-clean {
  max-width: 1080px;
  margin: 28px auto 96px;
  padding: 0 32px;
  color: var(--tpl-ink);
  font-size: 17px;
  line-height: 1.82;
}

.blog-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
  max-width: 1080px;
  margin: 28px auto 0;
  color: #718097;
  font-size: 14px;
}

.blog-breadcrumb a {
  color: var(--tpl-navy);
  font-weight: 800;
  text-decoration: none;
}

.blog-breadcrumb span:last-child {
  color: #718097;
}

.blog-post-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 34px;
  align-items: center;
  margin-bottom: 48px;
  padding: 34px;
  border: 1px solid var(--tpl-line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(18, 58, 99, 0.06), rgba(232, 51, 94, 0.05)),
    #fff;
  box-shadow: 0 18px 55px rgba(18, 58, 99, 0.08);
}

.blog-article-clean .blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.blog-article-clean .blog-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 12px;
  border: 1px solid rgba(18, 58, 99, 0.14);
  border-radius: 999px;
  color: var(--tpl-navy);
  background: var(--tpl-white);
  font-size: 12px;
  font-weight: 900;
}

.blog-article-clean .blog-meta span:first-child,
.blog-related-kicker {
  color: var(--tpl-red);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-featured-img {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 310px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--tpl-line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(247, 249, 252, 0.88)),
    var(--tpl-soft-2);
  box-shadow: inset 0 -4px 0 var(--tpl-red), 0 14px 34px rgba(18, 58, 99, 0.08);
}

.blog-featured-img::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 42%;
  height: 48%;
  background: var(--tpl-red);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  opacity: 0.92;
}

.blog-featured-img img {
  position: relative;
  z-index: 1;
  max-width: min(82%, 520px);
  max-height: 250px;
  object-fit: contain;
}

.blog-article-clean h1 {
  margin: 0 0 22px;
  color: var(--tpl-navy);
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: 0;
}

.blog-post-lead {
  max-width: 720px;
  margin: 0;
  color: #5f6f86;
  font-size: 18px;
  line-height: 1.75;
}

.blog-post-body {
  max-width: 820px;
  margin: 0 auto;
}

.blog-article-clean h2 {
  margin: 42px 0 14px;
  color: var(--tpl-navy);
  font-size: clamp(24px, 2.5vw, 32px);
  line-height: 1.22;
  font-weight: 900;
  letter-spacing: 0;
}

.blog-article-clean h3 {
  margin: 30px 0 10px;
  color: var(--tpl-navy);
  font-size: 22px;
  line-height: 1.3;
  font-weight: 900;
  letter-spacing: 0;
}

.blog-article-clean p,
.blog-article-clean li {
  color: var(--tpl-muted);
}

.blog-article-clean a {
  color: var(--tpl-red);
  font-weight: 850;
  text-decoration: none;
}

.blog-article-clean a:hover {
  color: var(--tpl-navy);
}

.blog-article-clean ul,
.blog-article-clean ol {
  padding-left: 24px;
  margin: 14px 0 22px;
}

.blog-article-clean li {
  margin: 8px 0;
}

.blog-article-clean blockquote {
  margin: 28px 0;
  padding: 22px 26px;
  border-left: 5px solid var(--tpl-red);
  border-radius: 0 8px 8px 0;
  color: var(--tpl-navy);
  background: linear-gradient(90deg, rgba(232, 51, 94, 0.08), rgba(18, 58, 99, 0.04));
  font-size: 18px;
  font-weight: 850;
}

.blog-article-clean pre {
  margin: 24px 0;
  padding: 18px 20px;
  overflow-x: auto;
  border: 1px solid var(--tpl-line);
  border-radius: 8px;
  background: #f7f9fc;
  color: var(--tpl-navy);
  font-size: 13px;
  line-height: 1.6;
}

.blog-article-clean pre code {
  font-family: Consolas, "Liberation Mono", monospace;
  white-space: pre;
}

.blog-table-wrap {
  overflow-x: auto;
  margin: 26px 0;
  border: 1px solid var(--tpl-line);
  border-radius: 8px;
  background: var(--tpl-white);
}

.blog-article-clean table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}

.blog-article-clean th {
  padding: 14px 16px;
  color: var(--tpl-white);
  background: var(--tpl-navy);
  font-size: 13px;
  font-weight: 900;
  text-align: left;
}

.blog-article-clean td {
  padding: 14px 16px;
  border-top: 1px solid var(--tpl-line);
  color: var(--tpl-muted);
  font-size: 14px;
}

.blog-product-links,
.blog-related-panel,
.blog-cta-panel {
  margin-top: 42px;
  padding: 28px;
  border: 1px solid var(--tpl-line);
  border-radius: 8px;
  background: var(--tpl-white);
}

.blog-related-panel {
  background: linear-gradient(135deg, rgba(18, 58, 99, 0.04), rgba(232, 51, 94, 0.05));
}

.blog-related-kicker {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--tpl-red);
  font-size: 12px;
  font-weight: 900;
}

.blog-related-panel h2,
.blog-cta-panel h2 {
  margin-top: 0;
}

.blog-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.blog-related-card {
  display: flex;
  flex-direction: column;
  min-height: 150px;
  padding: 18px;
  border: 1px solid rgba(18, 58, 99, 0.12);
  border-bottom: 3px solid var(--tpl-red);
  border-radius: 8px;
  background: var(--tpl-white);
}

.blog-related-card span {
  margin-bottom: 10px;
  color: var(--tpl-red);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-related-card strong {
  color: var(--tpl-navy);
  font-size: 15px;
  line-height: 1.45;
}

.blog-product-link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.blog-product-link-list a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid rgba(232, 51, 94, 0.28);
  border-radius: 6px;
  color: var(--tpl-navy);
  background: rgba(232, 51, 94, 0.06);
  font-size: 13px;
  font-weight: 900;
}

.blog-cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  border-bottom: 3px solid var(--tpl-red);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.86)),
    url("/wp-content/uploads/hero/west-contact-bg.webp") center / cover no-repeat;
}

.blog-cta-panel p {
  margin-bottom: 0;
}

.blog-cta-panel > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 6px;
  color: var(--tpl-white) !important;
  background: var(--tpl-red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .blog-article-clean {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 16px;
  }

  .blog-breadcrumb {
    margin-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .blog-post-hero {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 22px;
  }

  .blog-featured-img {
    min-height: 240px;
  }

  .blog-related-grid,
  .blog-cta-panel {
    grid-template-columns: 1fr;
  }
}

.cat-wrap {
  max-width: 1280px !important;
  padding-left: 32px !important;
  padding-right: 32px !important;
}

.cat-header {
  position: relative;
  overflow: hidden;
  margin: 0 0 40px !important;
  padding: 64px 42px !important;
  border: 1px solid rgba(18, 58, 99, 0.12);
  border-bottom: 3px solid var(--tpl-red);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(10, 36, 64, 0.94) 0%, rgba(18, 58, 99, 0.76) 48%, rgba(232, 51, 94, 0.18) 100%),
    url("/wp-content/uploads/hero/west-hero-clean.webp") center / cover no-repeat !important;
}

.cat-header h1 {
  max-width: 720px;
  color: var(--tpl-white) !important;
  font-size: clamp(32px, 4vw, 48px) !important;
  line-height: 1.15 !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
}

.cat-header p {
  max-width: 660px !important;
  color: rgba(255, 255, 255, 0.88) !important;
  font-size: 16px !important;
  line-height: 1.75 !important;
}

/* Product detail shell from the approved template */
.sp-wrap {
  max-width: none !important;
  width: 100% !important;
  padding: 0 !important;
  background: var(--tpl-white);
  color: var(--tpl-ink);
}

.sp-breadcrumb {
  max-width: none !important;
  margin: 0 !important;
  padding: 16px 32px !important;
  background: var(--tpl-soft) !important;
  border-bottom: 1px solid var(--tpl-line) !important;
  color: var(--tpl-muted) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
}

.sp-breadcrumb > * {
  max-width: 1280px;
}

.sp-breadcrumb a {
  color: var(--tpl-muted) !important;
}

.sp-breadcrumb a:hover {
  color: var(--tpl-red) !important;
}

.sp-main {
  max-width: 1280px !important;
  margin: 0 auto !important;
  padding: 48px 32px 24px !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1.62fr) minmax(280px, 1fr) !important;
  gap: 44px !important;
  align-items: start !important;
}

.sp-img-box {
  height: 520px !important;
  padding: 32px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden;
  background: var(--tpl-soft-2) !important;
  border: 1px solid var(--tpl-line) !important;
  border-radius: 8px !important;
}

.sp-img-box::after {
  display: none !important;
}

.sp-img-box img {
  max-width: 88% !important;
  max-height: 92% !important;
  object-fit: contain !important;
}

.sp-tabs {
  margin-top: 36px !important;
}

.sp-tab-nav {
  display: flex;
  gap: 6px !important;
  border-bottom: 1px solid var(--tpl-line) !important;
  overflow-x: auto;
}

.sp-tab-btn {
  padding: 12px 18px !important;
  background: none !important;
  border: none !important;
  border-bottom: 3px solid transparent !important;
  color: var(--tpl-muted) !important;
  font-family: var(--tpl-font) !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  white-space: nowrap;
}

.sp-tab-btn.active {
  color: var(--tpl-red) !important;
  border-bottom-color: var(--tpl-red) !important;
}

.sp-tab-content {
  border: 1px solid var(--tpl-line) !important;
  border-top: none !important;
  border-radius: 0 0 8px 8px !important;
  padding: 28px 26px !important;
}

.sp-spec-table td {
  padding: 12px 14px !important;
  border-bottom: 1px solid var(--tpl-line) !important;
  font-size: 14px !important;
}

.sp-spec-table tr:nth-child(odd) {
  background: var(--tpl-soft) !important;
}

.sp-spec-table td:first-child {
  width: 38%;
  color: var(--tpl-muted) !important;
  font-weight: 700 !important;
}

.sp-spec-table td:last-child {
  color: var(--tpl-navy) !important;
  font-weight: 700 !important;
}

.sp-spec-table-rich .sp-spec-section-row td {
  padding-top: 16px !important;
  padding-bottom: 9px !important;
  background: var(--tpl-white) !important;
  color: var(--tpl-red) !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase;
}

.sp-spec-unit {
  display: inline-block;
  margin-left: 6px;
  color: #8b97a8;
  font-size: 12px;
  font-weight: 800;
}

.sp-desc h3 {
  margin: 24px 0 10px !important;
  color: var(--tpl-navy) !important;
  font-size: 18px !important;
  line-height: 1.3 !important;
  font-weight: 900 !important;
}

.sp-desc ul {
  display: grid;
  gap: 9px;
  margin: 0 0 18px !important;
  padding-left: 20px !important;
}

.sp-desc li,
.sp-doc-list li {
  color: var(--tpl-muted) !important;
  font-size: 14.5px !important;
  line-height: 1.65 !important;
}

.sp-doc-list {
  display: grid;
  gap: 8px;
  padding-left: 20px !important;
}

.sp-doc-list a {
  color: var(--tpl-red) !important;
  font-weight: 800 !important;
}

.sp-doc-list span {
  color: var(--tpl-muted);
}

.sp-order-table tr:first-child td {
  background: var(--tpl-soft) !important;
  color: var(--tpl-navy) !important;
  font-weight: 900 !important;
}

.sp-catalog-note {
  margin-top: 24px !important;
  padding: 12px 14px !important;
  border-left: 3px solid var(--tpl-red);
  background: var(--tpl-soft) !important;
  color: var(--tpl-navy) !important;
  font-weight: 700 !important;
}

.sp-info-card,
.sp-cta-card,
.sp-contact-card {
  padding: 26px !important;
}

.sp-product-tag {
  color: var(--tpl-red) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
}

.sp-product-tag .dot {
  background: var(--tpl-red) !important;
}

.sp-info-card h1 {
  margin: 12px 0 0 !important;
  color: var(--tpl-navy) !important;
  font-size: 30px !important;
  line-height: 1.15 !important;
  font-weight: 800 !important;
}

.sp-info-card p,
.sp-cta-card p,
.sp-desc p {
  color: var(--tpl-muted) !important;
  font-size: 14.5px !important;
  line-height: 1.7 !important;
}

.sp-badge {
  border: 1px solid rgba(18, 58, 99, 0.18) !important;
  border-radius: 4px !important;
  color: var(--tpl-navy) !important;
  background: var(--tpl-white) !important;
}

.sp-divider {
  background: var(--tpl-line) !important;
}

.sp-qs-label {
  color: #8b97a8 !important;
  font-weight: 650 !important;
}

.sp-qs-val {
  color: var(--tpl-navy) !important;
  font-weight: 800 !important;
}

.sp-cta-card {
  background: var(--tpl-soft) !important;
}

.sp-cta-card h3,
.sp-contact-card h4 {
  color: var(--tpl-navy) !important;
  font-weight: 800 !important;
}

.sp-btn-quote {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px !important;
}

.sp-btn-doc {
  border: 1.5px solid rgba(18, 58, 99, 0.22) !important;
  color: var(--tpl-navy) !important;
  background: var(--tpl-white) !important;
  border-radius: 5px !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}

.sp-btn-doc:hover {
  border-color: var(--tpl-navy) !important;
  background: var(--tpl-white) !important;
  color: var(--tpl-navy) !important;
}

.sp-contact-item svg {
  stroke: var(--tpl-red) !important;
}

.sp-contact-item .lbl {
  color: #8b97a8 !important;
}

.sp-contact-item a {
  color: var(--tpl-navy) !important;
}

.sp-app-tag {
  border: 1px solid var(--tpl-line) !important;
  border-radius: 5px !important;
  background: var(--tpl-soft) !important;
  color: var(--tpl-navy) !important;
  font-weight: 700 !important;
}

.sp-related-item {
  color: var(--tpl-navy) !important;
  font-weight: 700 !important;
}

.sp-related-item .dot {
  background: var(--tpl-red) !important;
}

/* Footer from template */
.wf {
  background: var(--tpl-soft) !important;
  color: var(--tpl-ink) !important;
  padding: 0 !important;
  border: 0 !important;
  box-shadow: none !important;
}

.wf::before,
.wf::after {
  display: none !important;
}

.wf-colorbar {
  display: flex;
  height: 3px;
  width: 100%;
}

.wf-colorbar span:first-child {
  flex: 1;
  background: var(--tpl-red);
}

.wf-colorbar span:last-child {
  flex: 1;
  background: var(--tpl-navy);
}

.wf-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 32px 0 !important;
}

.wf-top {
  display: flex;
  justify-content: space-between;
  align-items: center !important;
  flex-wrap: wrap;
  gap: 20px !important;
  padding: 0 0 36px !important;
  margin: 0 !important;
  border: 0 !important;
  border-bottom: 1px solid var(--tpl-line) !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.wf-origin {
  color: var(--tpl-muted) !important;
  font-size: 12.5px !important;
  font-weight: 700 !important;
}

.wf-auth-text {
  color: var(--tpl-navy) !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase;
}

.wf-since,
.cert-badge {
  padding: 7px 14px !important;
  border: 1px solid var(--tpl-line) !important;
  border-radius: 4px !important;
  color: var(--tpl-navy) !important;
  background: var(--tpl-white) !important;
  box-shadow: none !important;
  font-size: 12.5px !important;
  font-weight: 800 !important;
}

.wf-grid {
  display: grid !important;
  grid-template-columns: 1.3fr 1fr 1fr 1.1fr !important;
  gap: 32px !important;
  margin: 0 !important;
  padding: 32px 0 44px !important;
}

.wf-grid > div {
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.wf h4 {
  display: inline-block;
  margin: 0 0 16px !important;
  padding-bottom: 10px !important;
  border: 0 !important;
  border-bottom: 2px solid var(--tpl-red) !important;
  color: var(--tpl-navy) !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  letter-spacing: 0.1em !important;
}

.wf h4::after {
  display: none !important;
}

.wf p,
.wf ul li a,
.contact-text,
.contact-text a,
.wf-bar-copy,
.wf-bar-links a {
  color: #445064 !important;
  font-size: 14.5px !important;
  line-height: 1.72 !important;
}

.wf ul {
  display: grid;
  gap: 12px;
  margin-top: 16px !important;
}

.wf ul li {
  margin: 0 !important;
}

.wf ul li::before {
  display: none !important;
}

.wf ul li a:hover,
.contact-text a:hover,
.wf-bar-links a:hover {
  color: var(--tpl-red) !important;
}

.contact-item {
  margin-bottom: 13px !important;
}

.contact-icon {
  display: none !important;
}

.contact-label {
  display: block;
  margin-bottom: 3px;
  color: var(--tpl-red) !important;
  font-size: 11.5px !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
}

.wf-bar-wrap {
  background: transparent !important;
  border-top: 1px solid var(--tpl-line) !important;
}

.wf-bar {
  max-width: 1280px;
  margin: 0 auto;
  padding: 22px 32px !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  border: 0 !important;
}

.wf-dist-label {
  color: var(--tpl-red) !important;
}

.wf-dist-name {
  color: var(--tpl-navy) !important;
}

.wf-bar-links {
  display: flex;
  gap: 22px;
}

@media (max-width: 1080px) {
  .wh-nav {
    gap: 20px !important;
  }

  .hp-contact {
    grid-template-columns: 1fr !important;
  }

  .hp-contact-left {
    max-width: 720px !important;
  }

  .sp-main {
    grid-template-columns: 1fr !important;
  }

  .wf-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 980px) {
  .wh-nav,
  .wh-cta {
    display: none !important;
  }

  .wh-hamburger {
    display: flex !important;
  }

  .hp-hero,
  .hp-hero-clean,
  .hp-intro {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  .hp-featured-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 680px) {
  .wh-topbar-inner,
  .wh-main-inner,
  .hp-hero,
  .hp-hero-clean,
  .hp-intro,
  .hp-featured,
  .hp-products,
  .hp-why,
  .hp-ind,
  .hp-contact,
  .sp-main,
  .sp-breadcrumb,
  .wf-inner,
  .wf-bar {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .wh-topbar-left .wh-tb-divider,
  .wh-topbar-left .wh-topbar-item:not(:first-child),
  .wh-topbar-right {
    display: none !important;
  }

  .wh-main-inner {
    height: 76px !important;
  }

  .wh-logo-text {
    font-size: 17px !important;
  }

  .wh-logo-sub {
    font-size: 8px !important;
  }

  .west-logo-mark img,
  .wh-logo,
  .wf-logo-mark img {
    height: 34px !important;
  }

  .hp-hero,
  .hp-hero-clean {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }

  .hp-hero h1,
  .hp-hero-clean h1 {
    font-size: 36px !important;
  }

  .hp-hero-proof,
  .hp-hero-stats {
    grid-template-columns: 1fr !important;
  }

  .hp-featured-grid,
  .wf-grid {
    grid-template-columns: 1fr !important;
  }

  .sp-img-box {
    height: 360px !important;
  }
}
