/* =====================================================
   MOLITER V3 — PRODUCT LIST & PRODUCT DETAIL
===================================================== */
:root {
  --mp-red: #e60012;
  --mp-red-dark: #bd0010;
  --mp-black: #08090b;
  --mp-dark: #111318;
  --mp-text: #22252a;
  --mp-muted: #6d727a;
  --mp-border: #e5e7ea;
  --mp-light: #f5f6f8;
  --mp-white: #ffffff;
}

html { scroll-behavior: smooth; }
body.moliter-products-page,
body.moliter-product-detail-page {
  color: var(--mp-text);
  background: #ffffff;
}

.mp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--mp-red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.8px;
  line-height: 1.4;
}

.mp-eyebrow::before {
  width: 34px;
  height: 2px;
  content: "";
  background: currentColor;
}

/* Product center hero */
.mp-hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 82% 30%, rgba(230,0,18,.42), transparent 30%),
    linear-gradient(115deg, #060708 0%, #101216 58%, #320009 100%);
}

.mp-hero::after {
  position: absolute;
  right: -90px;
  bottom: -170px;
  width: 470px;
  height: 470px;
  content: "";
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 50%;
}

.mp-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 355px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  padding-top: 75px;
  padding-bottom: 68px;
}

.mp-hero h1 {
  max-width: 850px;
  margin: 16px 0 19px;
  color: #ffffff;
  font-size: clamp(46px, 5vw, 72px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -2px;
  text-transform: none;
}

.mp-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(255,255,255,.68);
  font-size: 17px;
  line-height: 1.72;
}

.mp-hero__breadcrumb,
.mp-hero__breadcrumb a {
  flex: 0 0 auto;
  color: rgba(255,255,255,.62);
  font-size: 13px;
}

/* Category navigation */
.mp-category-nav {
  padding: 80px 0 22px;
  background: #ffffff;
}

.mp-category-nav__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 32px;
}

.mp-category-nav__head h2,
.mp-section-heading h2 {
  margin: 12px 0 0;
  color: #101216;
  font-size: clamp(34px, 3.5vw, 50px);
  font-weight: 780;
  line-height: 1.12;
  letter-spacing: -1.4px;
  text-transform: none;
}

.mp-text-link {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  padding-bottom: 5px;
  color: #16181c;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
  border-bottom: 2px solid var(--mp-red);
}

.mp-text-link span {
  margin-left: 15px;
  color: var(--mp-red);
  font-size: 20px;
}

.mp-category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-bottom: 27px;
  border-bottom: 1px solid var(--mp-border);
}

.mp-category-pills a {
  display: inline-flex;
  min-height: 44px;
  padding: 0 19px;
  align-items: center;
  justify-content: center;
  color: #363a41;
  background: #f3f4f6;
  border: 1px solid #e6e8eb;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.mp-category-pills a:hover,
.mp-category-pills a.is-active {
  color: #ffffff;
  background: var(--mp-red);
  border-color: var(--mp-red);
}

/* Product cards */
.mp-products {
  padding: 38px 0 105px;
  background: #ffffff;
}

.mp-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.mp-product-card {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--mp-border);
  border-radius: 7px;
  box-shadow: 0 12px 36px rgba(12,16,24,.045);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.mp-product-card:hover {
  border-color: rgba(230,0,18,.28);
  box-shadow: 0 24px 55px rgba(12,16,24,.12);
  transform: translateY(-7px);
}

.mp-product-card__image {
  position: relative;
  display: flex;
  aspect-ratio: 1 / .82;
  padding: 30px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 46%, #ffffff 0%, #f0f2f5 78%);
  border-bottom: 1px solid var(--mp-border);
}

.mp-product-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .38s ease;
}

.mp-product-card:hover .mp-product-card__image img { transform: scale(1.045); }

.mp-product-card__video {
  position: absolute;
  top: 18px;
  right: 18px;
  display: flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--mp-red);
  border-radius: 50%;
  font-size: 12px;
  box-shadow: 0 8px 22px rgba(230,0,18,.28);
}

.mp-product-card__body {
  min-height: 255px;
  padding: 27px 28px 29px;
}

.mp-product-card__category {
  display: block;
  margin-bottom: 10px;
  color: var(--mp-red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.25px;
  text-transform: uppercase;
}

.mp-product-card h2 {
  min-height: 56px;
  margin: 0;
  font-size: 20px;
  font-weight: 760;
  line-height: 1.38;
  text-transform: none;
}

.mp-product-card h2 a {
  color: #15171b;
  text-decoration: none;
}

.mp-product-card h2 a:hover { color: var(--mp-red); }

.mp-product-card p {
  min-height: 68px;
  margin: 13px 0 20px;
  color: var(--mp-muted);
  font-size: 14px;
  line-height: 1.65;
}

.mp-product-card__link {
  display: inline-flex;
  align-items: center;
  color: var(--mp-red);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.mp-product-card__link span {
  margin-left: 13px;
  font-size: 20px;
  transition: transform .22s ease;
}

.mp-product-card__link:hover span { transform: translateX(5px); }

.mp-empty-note {
  display: grid;
  grid-template-columns: auto minmax(0,1fr) auto;
  gap: 26px;
  margin-top: 50px;
  padding: 30px 34px;
  align-items: center;
  background: #111318;
  border-radius: 6px;
}

.mp-empty-note strong { color: #ffffff; font-size: 18px; }
.mp-empty-note span { color: rgba(255,255,255,.60); font-size: 14px; line-height: 1.65; }
.mp-empty-note a {
  display: inline-flex;
  min-height: 44px;
  padding: 0 20px;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--mp-red);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}

/* Detail breadcrumb */
.mp-detail-breadcrumb {
  padding: 18px 0;
  color: #777c84;
  background: #f3f4f6;
  border-bottom: 1px solid #e6e8eb;
  font-size: 13px;
}

.mp-detail-breadcrumb a { color: #50545b; text-decoration: none; }
.mp-detail-breadcrumb a:hover { color: var(--mp-red); }

/* Product detail hero */
.mp-detail-hero {
  padding: 72px 0 82px;
  background: #ffffff;
}

.mp-detail-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(380px, .94fr);
  gap: 76px;
  align-items: start;
}

.mp-gallery__main {
  display: flex;
  aspect-ratio: 1 / .82;
  padding: 48px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 45%, #ffffff 0%, #eef0f3 78%);
  border: 1px solid var(--mp-border);
  border-radius: 7px;
}

.mp-gallery__main img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mp-gallery__thumbs {
  display: flex;
  gap: 12px;
  margin-top: 15px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.mp-gallery__thumbs button {
  display: flex;
  width: 82px;
  height: 82px;
  padding: 7px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  background: #ffffff;
  border: 1px solid var(--mp-border);
  border-radius: 4px;
  cursor: pointer;
}

.mp-gallery__thumbs button.is-active,
.mp-gallery__thumbs button:hover { border-color: var(--mp-red); }
.mp-gallery__thumbs img { width: 100%; height: 100%; object-fit: contain; }

.mp-detail-summary { padding-top: 17px; }

.mp-detail-summary h1 {
  margin: 18px 0 21px;
  color: #101216;
  font-size: clamp(42px, 4.5vw, 64px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -1.8px;
  text-transform: none;
}

.mp-detail-summary__description {
  color: var(--mp-muted);
  font-size: 17px;
  line-height: 1.75;
}

.mp-detail-summary__description:empty::before {
  content: "Professional interactive display hardware designed for reliable project deployment and flexible customization.";
}

.mp-detail-summary__trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 32px 0 30px;
  border-top: 1px solid var(--mp-border);
  border-bottom: 1px solid var(--mp-border);
}

.mp-detail-summary__trust > div {
  padding: 20px 15px 20px 0;
}

.mp-detail-summary__trust > div + div {
  padding-left: 18px;
  border-left: 1px solid var(--mp-border);
}

.mp-detail-summary__trust strong {
  display: block;
  margin-bottom: 5px;
  color: #15171b;
  font-size: 17px;
  font-weight: 780;
}

.mp-detail-summary__trust span {
  display: block;
  color: #80848b;
  font-size: 11px;
  font-weight: 650;
  line-height: 1.45;
}

.mp-detail-summary__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.mp-btn {
  display: inline-flex;
  min-height: 52px;
  padding: 0 24px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 760;
  text-decoration: none;
}

.mp-btn--red { color: #ffffff; background: var(--mp-red); border-color: var(--mp-red); }
.mp-btn--red:hover { color: #ffffff; background: var(--mp-red-dark); border-color: var(--mp-red-dark); }
.mp-btn--dark { color: #111318; background: #ffffff; border-color: #cfd2d7; }
.mp-btn--dark:hover { color: var(--mp-red); border-color: var(--mp-red); }

.mp-detail-summary__note {
  margin: 20px 0 0;
  color: #8a8e95;
  font-size: 12px;
  line-height: 1.55;
}

/* Specifications */
.mp-specifications {
  padding: 90px 0 100px;
  background: #f5f6f8;
}

.mp-section-heading { max-width: 820px; margin-bottom: 38px; }
.mp-section-heading p {
  max-width: 700px;
  margin: 16px 0 0;
  color: var(--mp-muted);
  font-size: 15px;
  line-height: 1.7;
}

.mp-spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  background: #ffffff;
  border-top: 1px solid #dfe2e6;
  border-left: 1px solid #dfe2e6;
  border-radius: 5px;
  box-shadow: 0 18px 45px rgba(12,16,24,.06);
}

.mp-spec-item {
  display: grid;
  grid-template-columns: minmax(145px, 39%) minmax(0, 1fr);
  min-height: 58px;
  border-right: 1px solid #dfe2e6;
  border-bottom: 1px solid #dfe2e6;
}

.mp-spec-name,
.mp-spec-value {
  display: flex;
  padding: 14px 16px;
  align-items: center;
  box-sizing: border-box;
  overflow-wrap: anywhere;
}

.mp-spec-name {
  color: #202329;
  background: #f7f8f9;
  font-size: 13px;
  font-weight: 750;
}

.mp-spec-value {
  color: #5e636c;
  background: #ffffff;
  font-size: 14px;
  line-height: 1.5;
}

/* Rich content */
.mp-description {
  padding: 95px 0 100px;
  background: #ffffff;
}

.mp-richtext {
  color: #4d525a;
  font-size: 16px;
  line-height: 1.78;
}

.mp-richtext img {
  max-width: 100%;
  height: auto !important;
  border-radius: 5px;
}

.mp-richtext h2,
.mp-richtext h3,
.mp-richtext h4,
.mp-richtext h5 {
  color: #15171b;
  text-transform: none;
}

.mp-richtext table { width: 100% !important; border-collapse: collapse; }
.mp-richtext th,
.mp-richtext td { padding: 13px 15px; border: 1px solid #dfe2e6; }
.mp-richtext th { color: #17191d; background: #f5f6f8; }

/* Related products */
.mp-related {
  padding: 90px 0 100px;
  background: #f5f6f8;
}

.mp-related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.mp-related-card {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--mp-border);
  border-radius: 5px;
}

.mp-related-card__image {
  display: flex;
  aspect-ratio: 1 / .82;
  padding: 22px;
  align-items: center;
  justify-content: center;
  background: #f0f2f4;
  border-bottom: 1px solid var(--mp-border);
}

.mp-related-card__image img { width: 100%; height: 100%; object-fit: contain; }
.mp-related-card > div { padding: 19px 20px 21px; }
.mp-related-card h3 { min-height: 48px; margin: 0 0 12px; font-size: 16px; line-height: 1.45; text-transform: none; }
.mp-related-card h3 a { color: #17191d; text-decoration: none; }
.mp-related-card > div > a { color: var(--mp-red); font-size: 13px; font-weight: 750; text-decoration: none; }

/* CTA */
.mp-project-cta {
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 80% 30%, rgba(255,255,255,.14), transparent 28%),
    linear-gradient(100deg, #be000f, #e60012 55%, #a9000d);
}

.mp-project-cta__inner {
  display: flex;
  min-height: 215px;
  align-items: center;
  justify-content: space-between;
  gap: 46px;
}

.mp-project-cta span { color: rgba(255,255,255,.72); font-size: 11px; font-weight: 800; letter-spacing: 1.6px; }
.mp-project-cta h2 { margin: 10px 0 8px; color: #ffffff; font-size: clamp(32px, 4vw, 50px); line-height: 1.12; text-transform: none; }
.mp-project-cta p { margin: 0; color: rgba(255,255,255,.72); font-size: 15px; }
.mp-project-cta a {
  display: inline-flex;
  min-height: 54px;
  padding: 0 25px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: #131519;
  background: #ffffff;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}
.mp-project-cta a b { margin-left: 17px; color: var(--mp-red); font-size: 20px; }

/* Footer */
.mp-footer { color: #ffffff; background: #090a0d; }
.mp-footer__main { padding: 72px 0 25px; }
.mp-footer__grid { display: grid; grid-template-columns: 1.35fr .8fr .9fr 1.15fr; gap: 55px; }
.mp-footer__logo { display: inline-block; margin-bottom: 18px; }
.mp-footer__logo img { display: block; width: auto; max-width: 205px; height: 50px; object-fit: contain; }
.mp-footer__brand > p { max-width: 360px; margin: 0; color: rgba(255,255,255,.60); font-size: 14px; line-height: 1.72; }
.mp-footer__social { display: flex; gap: 9px; margin-top: 22px; }
.mp-footer__social a { display: inline-flex; width: 37px; height: 37px; align-items: center; justify-content: center; color: #fff; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.10); border-radius: 50%; text-decoration: none; }
.mp-footer__social a:hover { background: var(--mp-red); border-color: var(--mp-red); }
.mp-footer__column h3 { position: relative; margin: 8px 0 23px; padding-bottom: 13px; color: #fff; font-size: 17px; text-transform: none; }
.mp-footer__column h3::after { position: absolute; bottom: 0; left: 0; width: 32px; height: 2px; content: ""; background: var(--mp-red); }
.mp-footer__column ul { margin: 0; padding: 0; }
.mp-footer__column li { margin: 0 0 11px; list-style: none; color: rgba(255,255,255,.62); font-size: 14px; line-height: 1.55; }
.mp-footer__column a { color: rgba(255,255,255,.68); text-decoration: none; }
.mp-footer__column a:hover { color: #fff; }
.mp-footer__contact span { display: block; margin-bottom: 3px; color: rgba(255,255,255,.38); font-size: 10px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; }
.mp-footer__contact p { margin: 0; }
.mp-footer__bottom { margin-top: 52px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.10); }
.mp-footer__bottom p { margin: 0; color: rgba(255,255,255,.42); font-size: 12px; text-align: center; }

/* Existing floating-message plugin brand color */
.ey_message .message-header,
.ey_message .message-header:hover,
.ey_message .ey_input-submit,
.ch_form .submit_btn,
.gotop {
  color: #ffffff !important;
  background: var(--mp-red) !important;
  background-image: none !important;
  border-color: var(--mp-red) !important;
}

.ey_message .ey_input-submit:hover,
.ch_form .submit_btn:hover {
  background: var(--mp-red-dark) !important;
  border-color: var(--mp-red-dark) !important;
}

/* Responsive */
@media screen and (max-width: 1120px) {
  .mp-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mp-detail-hero__grid { gap: 45px; }
  .mp-related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mp-footer__grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .mp-footer__contact { grid-column: 1 / -1; }
}

@media screen and (max-width: 850px) {
  .mp-hero__inner,
  .mp-category-nav__head,
  .mp-project-cta__inner { display: block; }
  .mp-hero__breadcrumb { margin-top: 30px; }
  .mp-detail-hero__grid { grid-template-columns: 1fr; }
  .mp-detail-summary { padding-top: 0; }
  .mp-spec-grid { grid-template-columns: 1fr; }
  .mp-empty-note { grid-template-columns: 1fr; }
  .mp-text-link { margin-top: 24px; }
  .mp-project-cta__inner { padding-top: 58px; padding-bottom: 58px; }
  .mp-project-cta a { margin-top: 28px; }
}

@media screen and (max-width: 680px) {
  .mp-hero__inner { min-height: 310px; padding-top: 55px; padding-bottom: 54px; }
  .mp-hero h1 { font-size: 44px; letter-spacing: -1px; }
  .mp-hero p { font-size: 15px; }
  .mp-category-nav { padding-top: 65px; }
  .mp-product-grid,
  .mp-related-grid { grid-template-columns: 1fr; }
  .mp-product-card__body { min-height: auto; }
  .mp-product-card h2,
  .mp-product-card p { min-height: auto; }
  .mp-detail-hero { padding: 48px 0 60px; }
  .mp-gallery__main { padding: 25px; }
  .mp-detail-summary h1 { font-size: 42px; }
  .mp-detail-summary__trust { grid-template-columns: 1fr; }
  .mp-detail-summary__trust > div { padding: 15px 0; }
  .mp-detail-summary__trust > div + div { padding-left: 0; border-top: 1px solid var(--mp-border); border-left: 0; }
  .mp-specifications,
  .mp-description,
  .mp-related { padding: 70px 0 76px; }
  .mp-spec-item { grid-template-columns: 43% minmax(0, 1fr); }
  .mp-footer__grid { grid-template-columns: 1fr; gap: 35px; }
  .mp-footer__contact { grid-column: auto; }
}

.mp-related-card--category {
  min-height: 220px;
  background:
    radial-gradient(circle at 88% 18%, rgba(230,0,18,.18), transparent 35%),
    linear-gradient(145deg, #ffffff, #f2f3f5);
}

.mp-related-card__category-link {
  display: flex;
  min-height: 220px;
  padding: 30px;
  flex-direction: column;
  justify-content: flex-end;
  color: #17191d;
  text-decoration: none;
}

.mp-related-card__category-link > span {
  margin-bottom: 12px;
  color: var(--mp-red);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
}

.mp-related-card__category-link h3 {
  min-height: 0;
  margin: 0 0 17px;
  color: #15171b;
  font-size: 22px;
  line-height: 1.3;
}

.mp-related-card__category-link b {
  color: var(--mp-red);
  font-size: 13px;
}

/* =====================================================
   MOLITER V4 — UNIFIED INNER-PAGE DESIGN SYSTEM
   About / Solutions / Case Studies / News / Article
===================================================== */
:root {
  --v4-red: #e60012;
  --v4-red-dark: #bd0010;
  --v4-black: #08090b;
  --v4-dark: #111318;
  --v4-text: #202329;
  --v4-muted: #676d76;
  --v4-border: #e3e6ea;
  --v4-light: #f5f6f8;
  --v4-white: #ffffff;
}

body.v4-inner-page {
  color: var(--v4-text);
  background: #fff;
}

body.v4-inner-page main {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
}

.v4-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--v4-red);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.v4-eyebrow::before {
  width: 34px;
  height: 2px;
  content: "";
  background: currentColor;
}

.v4-page-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 82% 28%, rgba(230,0,18,.42), transparent 29%),
    linear-gradient(116deg, #060708 0%, #111318 59%, #340009 100%);
}

.v4-page-hero::after {
  position: absolute;
  right: -135px;
  bottom: -235px;
  width: 570px;
  height: 570px;
  content: "";
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 50%;
}

.v4-page-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 360px;
  padding-top: 78px;
  padding-bottom: 68px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 44px;
}

.v4-page-hero h1 {
  max-width: 900px;
  margin: 16px 0 18px;
  color: #fff;
  font-size: clamp(48px, 5vw, 74px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -2px;
  text-transform: none;
}

.v4-page-hero p {
  max-width: 780px;
  margin: 0;
  color: rgba(255,255,255,.70);
  font-size: 17px;
  line-height: 1.72;
}

.v4-breadcrumb,
.v4-breadcrumb a {
  color: rgba(255,255,255,.62);
  font-size: 13px;
  text-decoration: none;
}

.v4-section {
  padding: 100px 0;
  background: #fff;
}

.v4-section--light { background: var(--v4-light); }
.v4-section--dark { color: #fff; background: #0c0e12; }

.v4-section-heading {
  max-width: 820px;
  margin-bottom: 52px;
}

.v4-section-heading h2,
.v4-about-intro__content h2,
.v4-solution-overview__content h2 {
  margin: 14px 0 0;
  color: #111318;
  font-size: clamp(36px, 3.7vw, 55px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  text-transform: none;
}

.v4-section-heading p {
  max-width: 700px;
  margin: 18px 0 0;
  color: var(--v4-muted);
  font-size: 16px;
  line-height: 1.72;
}

.v4-section-heading--light h2 { color: #fff; }
.v4-section-heading--light p { color: rgba(255,255,255,.64); }

.v4-richtext {
  color: #565c65;
  font-size: 16px;
  line-height: 1.8;
}

.v4-richtext p { margin: 0 0 17px; }
.v4-richtext h2,
.v4-richtext h3,
.v4-richtext h4 {
  margin: 34px 0 14px;
  color: #15171b;
  line-height: 1.25;
  text-transform: none;
}
.v4-richtext ul,
.v4-richtext ol { margin: 18px 0; padding-left: 24px; }
.v4-richtext li { margin-bottom: 9px; }
.v4-richtext img { max-width: 100%; height: auto !important; border-radius: 7px; }
.v4-richtext table { width: 100% !important; border-collapse: collapse; }
.v4-richtext th,
.v4-richtext td { padding: 13px 15px; border: 1px solid var(--v4-border); }
.v4-richtext th { color: #17191d; background: #f5f6f8; }
.v4-richtext--dark { color: rgba(255,255,255,.68); }
.v4-richtext--dark h2,
.v4-richtext--dark h3,
.v4-richtext--dark h4 { color: #fff; }

.v4-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 31px;
}

.v4-btn {
  display: inline-flex;
  min-height: 52px;
  padding: 0 25px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.v4-btn--red { color: #fff; background: var(--v4-red); border-color: var(--v4-red); }
.v4-btn--red:hover { color: #fff; background: var(--v4-red-dark); border-color: var(--v4-red-dark); }
.v4-btn--outline { color: #15171b; background: transparent; border-color: #c9cdd2; }
.v4-btn--outline:hover { color: var(--v4-red); border-color: var(--v4-red); }

/* About */
.v4-about-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  align-items: center;
  gap: 78px;
}

.v4-about-intro__media {
  position: relative;
  min-height: 520px;
  padding: 0 28px 30px 0;
}

.v4-about-intro__media > img {
  display: block;
  width: 100%;
  min-height: 520px;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 25px 60px rgba(0,0,0,.14);
}

.v4-about-intro__media::after {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: 73%;
  height: 73%;
  content: "";
  background: linear-gradient(135deg, rgba(230,0,18,.18), rgba(230,0,18,.02));
  border-radius: 8px;
}

.v4-about-intro__badge {
  position: absolute;
  right: 0;
  bottom: 0;
  min-width: 230px;
  padding: 24px 27px;
  color: #fff;
  background: var(--v4-red);
  border-radius: 5px 0 5px 0;
  box-shadow: 0 15px 35px rgba(230,0,18,.28);
}

.v4-about-intro__badge strong,
.v4-about-intro__badge span { display: block; }
.v4-about-intro__badge strong { font-size: 25px; line-height: 1.15; }
.v4-about-intro__badge span { margin-top: 6px; color: rgba(255,255,255,.82); font-size: 13px; }
.v4-about-copy { margin-top: 25px; }

.v4-facts { padding: 0 0 105px; background: #fff; }
.v4-facts__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0,1fr));
  overflow: hidden;
  color: #fff;
  background: #101216;
  border-radius: 8px;
  box-shadow: 0 22px 48px rgba(0,0,0,.14);
}
.v4-facts__grid > div { position: relative; min-height: 130px; padding: 30px 23px; }
.v4-facts__grid > div:not(:last-child)::after { position: absolute; top: 29px; right: 0; width: 1px; height: calc(100% - 58px); content: ""; background: rgba(255,255,255,.12); }
.v4-facts strong,
.v4-facts span { display: block; }
.v4-facts strong { color: #fff; font-size: 22px; font-weight: 800; line-height: 1.2; }
.v4-facts span { margin-top: 8px; color: rgba(255,255,255,.56); font-size: 12px; line-height: 1.45; }

.v4-capability-list { display: grid; gap: 78px; }
.v4-capability { display: grid; grid-template-columns: minmax(0,1.02fr) minmax(0,.98fr); align-items: center; gap: 72px; }
.v4-capability--reverse .v4-capability__media { order: 2; }
.v4-capability--reverse .v4-capability__content { order: 1; }
.v4-capability__media { min-height: 430px; overflow: hidden; border-radius: 8px; box-shadow: 0 18px 48px rgba(0,0,0,.11); }
.v4-capability__media img { display: block; width: 100%; min-height: 430px; height: 100%; object-fit: cover; }
.v4-capability__content > span { display: block; color: var(--v4-red); font-size: 13px; font-weight: 900; letter-spacing: 2px; }
.v4-capability__content h3 { margin: 12px 0 18px; color: #14161a; font-size: clamp(31px,2.7vw,44px); font-weight: 800; line-height: 1.15; text-transform: none; }
.v4-capability__content p { margin: 0 0 20px; color: var(--v4-muted); font-size: 16px; line-height: 1.75; }
.v4-capability__content ul { margin: 0; padding: 0; }
.v4-capability__content li { position: relative; margin: 12px 0; padding-left: 23px; color: #34383e; list-style: none; font-size: 14px; }
.v4-capability__content li::before { position: absolute; top: 8px; left: 0; width: 8px; height: 8px; content: ""; background: var(--v4-red); border-radius: 50%; }

.v4-navigation-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 20px; }
.v4-navigation-card {
  position: relative;
  display: flex;
  min-height: 300px;
  padding: 34px 30px;
  flex-direction: column;
  color: #1b1e23;
  background: #fff;
  border: 1px solid var(--v4-border);
  border-radius: 7px;
  text-decoration: none;
  box-shadow: 0 12px 34px rgba(12,16,24,.05);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.v4-navigation-card::after { position: absolute; right: 0; bottom: 0; left: 0; height: 4px; content: ""; background: var(--v4-red); transform: scaleX(0); transform-origin: left; transition: transform .28s ease; }
.v4-navigation-card:hover { color: #1b1e23; border-color: rgba(230,0,18,.28); box-shadow: 0 24px 52px rgba(12,16,24,.12); transform: translateY(-7px); }
.v4-navigation-card:hover::after { transform: scaleX(1); }
.v4-navigation-card > span { color: var(--v4-red); font-size: 12px; font-weight: 900; letter-spacing: 1.8px; }
.v4-navigation-card h3 { margin: 27px 0 15px; color: #14161a; font-size: 27px; line-height: 1.2; text-transform: none; }
.v4-navigation-card p { margin: 0; color: var(--v4-muted); font-size: 14px; line-height: 1.7; }
.v4-navigation-card b { margin-top: auto; padding-top: 26px; color: var(--v4-red); font-size: 13px; }

/* Solutions */
.v4-solution-card-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 28px; }
.v4-solution-card { overflow: hidden; color: #1b1e23; background: #fff; border: 1px solid var(--v4-border); border-radius: 8px; text-decoration: none; box-shadow: 0 14px 38px rgba(12,16,24,.07); transition: transform .28s ease, box-shadow .28s ease; }
.v4-solution-card:hover { color: #1b1e23; box-shadow: 0 25px 55px rgba(12,16,24,.13); transform: translateY(-7px); }
.v4-solution-card__media { min-height: 320px; overflow: hidden; background: radial-gradient(circle at 70% 30%, rgba(230,0,18,.26), transparent 38%), linear-gradient(135deg,#101216,#2a0007); }
.v4-solution-card__media img { display: block; width: 100%; height: 320px; object-fit: cover; transition: transform .4s ease; }
.v4-solution-card:hover .v4-solution-card__media img { transform: scale(1.04); }
.v4-solution-card__body { padding: 31px 32px 34px; }
.v4-solution-card__body > span { color: var(--v4-red); font-size: 11px; font-weight: 800; letter-spacing: 1.5px; }
.v4-solution-card h2 { margin: 12px 0 13px; color: #15171b; font-size: 29px; line-height: 1.2; text-transform: none; }
.v4-solution-card p { min-height: 48px; margin: 0; color: var(--v4-muted); font-size: 14px; line-height: 1.7; }
.v4-solution-card b { display: block; margin-top: 21px; color: var(--v4-red); font-size: 13px; }

.v4-solution-overview__grid { display: grid; grid-template-columns: minmax(0,.92fr) minmax(0,1.08fr); align-items: center; gap: 75px; }
.v4-solution-overview__content .v4-richtext { margin-top: 25px; }
.v4-solution-overview__media { display: flex; min-height: 520px; padding: 34px; align-items: center; justify-content: center; overflow: hidden; background: radial-gradient(circle at 70% 35%, rgba(230,0,18,.20), transparent 38%), #f1f3f6; border-radius: 8px; }
.v4-solution-overview__media img { display: block; max-width: 100%; max-height: 520px; object-fit: contain; }
.v4-benefit-content > ul,
.v4-scenario-content > ul { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; margin: 0; padding: 0; }
.v4-benefit-content > ul > li,
.v4-scenario-content > ul > li { min-height: 175px; padding: 27px; list-style: none; border-radius: 6px; }
.v4-benefit-content > ul > li { color: rgba(255,255,255,.72); background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.10); }
.v4-scenario-content > ul > li { color: #51565e; background: #fff; border: 1px solid var(--v4-border); box-shadow: 0 10px 28px rgba(12,16,24,.04); }

.v4-gallery-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 20px; }
.v4-gallery-grid figure { margin: 0; overflow: hidden; background: #f0f2f4; border: 1px solid var(--v4-border); border-radius: 7px; }
.v4-gallery-grid img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.v4-gallery-grid figcaption { padding: 13px 16px; color: #656a72; font-size: 12px; }
.v4-gallery-grid figcaption:empty { display: none; }

/* Article and case lists */
.v4-article-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 28px; }
.v4-article-card { overflow: hidden; background: #fff; border: 1px solid var(--v4-border); border-radius: 7px; box-shadow: 0 12px 36px rgba(12,16,24,.05); transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease; }
.v4-article-card:hover { border-color: rgba(230,0,18,.28); box-shadow: 0 24px 55px rgba(12,16,24,.12); transform: translateY(-7px); }
.v4-article-card__media { display: block; min-height: 245px; overflow: hidden; background: radial-gradient(circle at 78% 28%, rgba(230,0,18,.24), transparent 34%), linear-gradient(135deg,#15171c,#2d0008); }
.v4-article-card__media img { display: block; width: 100%; height: 245px; object-fit: cover; transition: transform .4s ease; }
.v4-article-card:hover .v4-article-card__media img { transform: scale(1.04); }
.v4-article-card__body { min-height: 280px; padding: 28px 28px 30px; display: flex; flex-direction: column; }
.v4-article-card h2 { margin: 12px 0 13px; color: #15171b; font-size: 22px; line-height: 1.35; text-transform: none; }
.v4-article-card h2 a { color: inherit; text-decoration: none; }
.v4-article-card p { margin: 0 0 14px; color: var(--v4-muted); font-size: 14px; line-height: 1.7; }
.v4-card-link { margin-top: auto; padding-top: 14px; color: #1b1e23; font-size: 13px; font-weight: 800; text-decoration: none; }
.v4-card-link span { margin-left: 11px; color: var(--v4-red); font-size: 18px; }
.v4-case-meta { display: flex; flex-wrap: wrap; gap: 7px; }
.v4-case-meta span { display: inline-flex; min-height: 28px; padding: 0 10px; align-items: center; color: var(--v4-red); background: rgba(230,0,18,.07); border-radius: 3px; font-size: 10px; font-weight: 800; letter-spacing: .8px; text-transform: uppercase; }
.v4-case-product { color: #2d3137 !important; font-weight: 700; }
.v4-news-date { color: var(--v4-red); font-size: 11px; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase; }
.v4-news-filter { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 38px; padding-bottom: 24px; border-bottom: 1px solid var(--v4-border); }
.v4-news-filter a { display: inline-flex; min-height: 42px; padding: 0 18px; align-items: center; color: #363a41; background: #f3f4f6; border: 1px solid #e6e8eb; border-radius: 4px; font-size: 13px; font-weight: 700; text-decoration: none; }
.v4-news-filter a:hover,
.v4-news-filter a.is-active { color: #fff; background: var(--v4-red); border-color: var(--v4-red); }
.v4-pagination { display: flex; margin-top: 46px; justify-content: center; }
.v4-pagination a,
.v4-pagination span { display: inline-flex; min-width: 42px; min-height: 42px; margin: 0 4px; padding: 0 11px; align-items: center; justify-content: center; color: #34383e; background: #fff; border: 1px solid var(--v4-border); border-radius: 4px; text-decoration: none; }
.v4-pagination a:hover,
.v4-pagination .active { color: #fff; background: var(--v4-red); border-color: var(--v4-red); }

/* Article detail */
.v4-article-hero { color: #fff; background: radial-gradient(circle at 82% 28%, rgba(230,0,18,.38), transparent 30%), linear-gradient(116deg,#060708,#111318 60%,#340009); }
.v4-article-hero__inner { min-height: 430px; padding-top: 72px; padding-bottom: 70px; display: flex; flex-direction: column; justify-content: flex-end; }
.v4-article-hero h1 { max-width: 1050px; margin: 19px 0 18px; color: #fff; font-size: clamp(44px,5vw,70px); font-weight: 800; line-height: 1.08; letter-spacing: -1.8px; text-transform: none; }
.v4-article-hero__meta { display: flex; flex-wrap: wrap; gap: 22px; color: rgba(255,255,255,.58); font-size: 13px; }
.v4-article-hero .v4-breadcrumb { margin-bottom: 28px; }
.v4-featured-image { padding: 70px 0 0; background: #fff; }
.v4-featured-image img { display: block; width: 100%; max-height: 720px; object-fit: cover; border-radius: 8px; box-shadow: 0 18px 48px rgba(0,0,0,.10); }
.v4-article-content__inner { max-width: 980px; }
.v4-main-article-content { font-size: 17px; line-height: 1.85; }
.v4-case-summary { margin-bottom: 55px; padding: 35px 38px; background: #f5f6f8; border-left: 4px solid var(--v4-red); border-radius: 0 7px 7px 0; }
.v4-case-summary > p { margin: 18px 0 25px; color: #535961; font-size: 17px; line-height: 1.75; }
.v4-case-summary__meta { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
.v4-case-summary__meta > div { padding: 17px 19px; background: #fff; border: 1px solid var(--v4-border); border-radius: 5px; }
.v4-case-summary__meta span,
.v4-case-summary__meta strong { display: block; }
.v4-case-summary__meta span { margin-bottom: 6px; color: #8a8f96; font-size: 10px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; }
.v4-case-summary__meta strong { color: #202329; font-size: 14px; line-height: 1.45; }
.v4-case-section { display: grid; grid-template-columns: 72px minmax(0,1fr); gap: 30px; margin: 58px 0; padding-top: 55px; border-top: 1px solid var(--v4-border); }
.v4-case-section > span { display: flex; width: 56px; height: 56px; align-items: center; justify-content: center; color: #fff; background: var(--v4-red); border-radius: 50%; font-size: 13px; font-weight: 900; }
.v4-case-section h2 { margin: 0 0 19px; color: #15171b; font-size: 34px; line-height: 1.2; text-transform: none; }
.v4-case-gallery { margin-top: 75px; padding-top: 68px; border-top: 1px solid var(--v4-border); }
.v4-prenext { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; margin-top: 75px; padding-top: 45px; border-top: 1px solid var(--v4-border); }
.v4-prenext__item { min-height: 112px; padding: 22px 24px; color: #202329; background: #f5f6f8; border: 1px solid var(--v4-border); border-radius: 6px; text-decoration: none; }
.v4-prenext__item--next { text-align: right; }
.v4-prenext__item span,
.v4-prenext__item strong { display: block; }
.v4-prenext__item span { margin-bottom: 8px; color: var(--v4-red); font-size: 10px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; }
.v4-prenext__item strong { font-size: 14px; line-height: 1.5; }
.v4-prenext__item.is-disabled { opacity: .55; }

/* Unified CTA */
.v4-cta { overflow: hidden; color: #fff; background: radial-gradient(circle at 80% 30%, rgba(255,255,255,.14), transparent 28%), linear-gradient(100deg,#be000f,#e60012 55%,#a9000d); }
.v4-cta__inner { display: flex; min-height: 225px; align-items: center; justify-content: space-between; gap: 46px; }
.v4-cta span { color: rgba(255,255,255,.74); font-size: 11px; font-weight: 800; letter-spacing: 1.6px; }
.v4-cta h2 { margin: 10px 0 8px; color: #fff; font-size: clamp(32px,4vw,50px); line-height: 1.12; text-transform: none; }
.v4-cta p { margin: 0; color: rgba(255,255,255,.72); font-size: 15px; }
.v4-cta a { display: inline-flex; min-height: 54px; padding: 0 25px; align-items: center; justify-content: center; flex: 0 0 auto; color: #131519; background: #fff; border-radius: 4px; font-size: 14px; font-weight: 800; text-decoration: none; }
.v4-cta a b { margin-left: 17px; color: var(--v4-red); font-size: 20px; }

/* Homepage four navigation cards: shared V4 visual system */
.home-quick-links { padding: 70px 0 !important; background: #fff !important; }
.quick-links-grid { display: grid !important; grid-template-columns: repeat(4,minmax(0,1fr)) !important; gap: 20px !important; }
.quick-link-card { position: relative !important; display: flex !important; min-height: 230px !important; padding: 30px 27px !important; align-items: flex-start !important; color: #1b1e23 !important; background: #fff !important; border: 1px solid var(--v4-border) !important; border-radius: 7px !important; box-shadow: 0 12px 34px rgba(12,16,24,.05) !important; text-decoration: none !important; transition: transform .28s ease,box-shadow .28s ease,border-color .28s ease !important; }
.quick-link-card:hover { border-color: rgba(230,0,18,.28) !important; box-shadow: 0 24px 52px rgba(12,16,24,.12) !important; transform: translateY(-7px) !important; }
.quick-link-card::after { position: absolute; right: 0; bottom: 0; left: 0; height: 4px; content: ""; background: var(--v4-red); transform: scaleX(0); transform-origin: left; transition: transform .28s ease; }
.quick-link-card:hover::after { transform: scaleX(1); }
.quick-link-icon { display: flex !important; width: 48px !important; height: 48px !important; margin-right: 18px !important; align-items: center !important; justify-content: center !important; flex: 0 0 auto !important; color: #fff !important; background: var(--v4-red) !important; border-radius: 50% !important; }
.quick-link-icon em { color: #fff !important; font-size: 22px !important; }
.quick-link-content h2 { margin: 2px 0 11px !important; color: #14161a !important; font-size: 23px !important; line-height: 1.25 !important; text-transform: none !important; }
.quick-link-content p { margin: 0 !important; color: var(--v4-muted) !important; font-size: 13px !important; line-height: 1.65 !important; }
.quick-link-arrow { display: block !important; margin-top: 18px !important; color: var(--v4-red) !important; font-size: 22px !important; }

/* Remove remaining purple legacy color from shared widgets */
.ey_message .message-header,
.ey_message .message-header:hover,
.ey_message .ey_input-submit,
.ch_form .submit_btn,
.gotop,
.bottom-btn .inquiry,
.bottom-btn .inquiry a {
  color: #fff !important;
  background: var(--v4-red) !important;
  background-image: none !important;
  border-color: var(--v4-red) !important;
}
.ey_message .ey_input-submit:hover,
.ch_form .submit_btn:hover { background: var(--v4-red-dark) !important; border-color: var(--v4-red-dark) !important; }
.ey_message .message-header b,
.ey_message .message-header i,
.ey_message .message-header span { color: #fff !important; }

/* Footer refinements */
.v4-footer { margin: 0; }
.v4-footer .mp-footer__main { padding-top: 76px; }

/* Responsive */
@media screen and (max-width: 1120px) {
  .v4-facts__grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .v4-facts__grid > div:nth-child(3)::after { display: none; }
  .v4-navigation-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .v4-article-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .quick-links-grid { grid-template-columns: repeat(2,minmax(0,1fr)) !important; }
}

@media screen and (max-width: 900px) {
  .v4-page-hero__inner,
  .v4-cta__inner { display: block; }
  .v4-breadcrumb { margin-top: 28px; }
  .v4-about-intro__grid,
  .v4-capability,
  .v4-solution-overview__grid { grid-template-columns: 1fr; gap: 45px; }
  .v4-capability--reverse .v4-capability__media,
  .v4-capability--reverse .v4-capability__content { order: initial; }
  .v4-benefit-content > ul,
  .v4-scenario-content > ul { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .v4-gallery-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .v4-cta__inner { padding-top: 58px; padding-bottom: 58px; }
  .v4-cta a { margin-top: 28px; }
}

@media screen and (max-width: 680px) {
  .v4-page-hero__inner { min-height: 310px; padding-top: 58px; padding-bottom: 55px; }
  .v4-page-hero h1 { font-size: 44px; letter-spacing: -1px; }
  .v4-section { padding: 72px 0; }
  .v4-about-intro__media,
  .v4-about-intro__media > img { min-height: 360px; }
  .v4-about-intro__badge { min-width: 190px; padding: 19px 21px; }
  .v4-facts { padding-bottom: 72px; }
  .v4-facts__grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .v4-facts__grid > div:nth-child(2n)::after { display: none; }
  .v4-navigation-grid,
  .v4-solution-card-grid,
  .v4-article-grid,
  .v4-gallery-grid,
  .v4-benefit-content > ul,
  .v4-scenario-content > ul,
  .v4-case-summary__meta,
  .v4-prenext { grid-template-columns: 1fr; }
  .v4-capability__media,
  .v4-capability__media img { min-height: 310px; }
  .v4-solution-overview__media { min-height: 360px; padding: 22px; }
  .v4-article-card__body { min-height: auto; }
  .v4-case-section { grid-template-columns: 1fr; gap: 18px; }
  .v4-prenext__item--next { text-align: left; }
  .quick-links-grid { grid-template-columns: 1fr !important; }
  .quick-link-card { min-height: 200px !important; }
}

/* Contact */
.v4-contact-grid { display: grid; grid-template-columns: minmax(0,.85fr) minmax(0,1.15fr); gap: 72px; align-items: start; }
.v4-contact-info h2,
.v4-contact-form h2 { margin: 15px 0 16px; color: #15171b; font-size: clamp(34px,3vw,48px); line-height: 1.15; text-transform: none; }
.v4-contact-info > p,
.v4-contact-form > p { margin: 0; color: var(--v4-muted); font-size: 15px; line-height: 1.75; }
.v4-contact-items { display: grid; gap: 14px; margin-top: 35px; }
.v4-contact-items > div { padding: 20px 22px; background: #f5f6f8; border: 1px solid var(--v4-border); border-radius: 5px; }
.v4-contact-items span,
.v4-contact-items strong,
.v4-contact-items a { display: block; }
.v4-contact-items span { margin-bottom: 7px; color: #8b9097; font-size: 10px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; }
.v4-contact-items strong,
.v4-contact-items a { color: #25282d; font-size: 14px; line-height: 1.55; text-decoration: none; }
.v4-contact-form { padding: 38px; background: #fff; border: 1px solid var(--v4-border); border-radius: 8px; box-shadow: 0 20px 55px rgba(12,16,24,.09); }
.v4-form-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 17px; margin: 30px 0 22px; }
.v4-form-grid label { display: block; }
.v4-form-grid label > span { display: block; margin-bottom: 7px; color: #3b3f45; font-size: 12px; font-weight: 750; }
.v4-form-grid input,
.v4-form-grid textarea { width: 100%; padding: 13px 14px; box-sizing: border-box; color: #22252a; background: #f7f8f9; border: 1px solid #dfe2e6; border-radius: 4px; outline: none; font: inherit; }
.v4-form-grid input { min-height: 48px; }
.v4-form-grid textarea { resize: vertical; }
.v4-form-grid input:focus,
.v4-form-grid textarea:focus { background: #fff; border-color: var(--v4-red); box-shadow: 0 0 0 3px rgba(230,0,18,.08); }
.v4-form-full { grid-column: 1 / -1; }

@media screen and (max-width: 900px) {
  .v4-contact-grid { grid-template-columns: 1fr; gap: 45px; }
}
@media screen and (max-width: 680px) {
  .v4-contact-form { padding: 26px 22px; }
  .v4-form-grid { grid-template-columns: 1fr; }
  .v4-form-full { grid-column: auto; }
}


/* =====================================================
   MOLITER V4.1 — LOCKED GLOBAL SYSTEM
   Dark header, red logo, large hero, no purple, no Skype
===================================================== */
:root {
  --v4-red: #e60012;
  --v4-red-dark: #bd0010;
  --v4-black: #08090b;
  --v4-dark: #111318;
  --v4-light: #f5f6f8;
  --v4-border: #e4e7eb;
  --v4-muted: #68707a;
}

/* Remove legacy purple treatment wherever old templates still render. */
body [style*="#9f27c6"], body [style*="#9F27C6"] { color: inherit !important; }
.sidebar-title::after, .ey-template-title h5, .category .active > a,
.contact-right-btn, .home-more, .inquiry-form .send-btn, .mypages .active,
.gotop, .ey_message .message-header, .ey_message .ey_input-submit {
  background-color: var(--v4-red) !important;
  border-color: var(--v4-red) !important;
  background-image: none !important;
}
.sidebar-title, .sidebar-cate a:hover, .pro-info .btn, .news-item-read,
.banner-breadcrumbs a:hover, .detail-page a:hover { color: var(--v4-red) !important; }

/* Header remains dark and the existing red logo is preserved. */
.moliter-v4-header { background: #08090b !important; border-bottom: 1px solid rgba(255,255,255,.08); }
.moliter-v4-header .head-logo img { object-fit: contain; }
.moliter-v4-header .moliter-products-mega__group p { margin: 12px 0 18px; color: #737982; font-size: 13px; line-height: 1.6; }

/* Homepage */
.v4-home-page { background: #fff; }
.v4-home-page .v2-hero-product { background: url('../images/hero-ifp.webp') center/contain no-repeat; }
.v4-home-page .v2-hero-product > img { position: relative; z-index: 2; }
.v4-home-paths { position: relative; z-index: 4; margin-top: -1px; background: #0d0f12; border-top: 1px solid rgba(255,255,255,.08); }
.v4-home-paths__grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); }
.v4-home-paths__grid > a { display: grid; min-height: 155px; grid-template-columns: auto minmax(0,1fr) auto; gap: 19px; padding: 31px 25px; align-items: center; color: #fff; border-right: 1px solid rgba(255,255,255,.09); text-decoration: none; transition: background .25s ease; }
.v4-home-paths__grid > a:first-child { border-left: 1px solid rgba(255,255,255,.09); }
.v4-home-paths__grid > a:hover { background: #171a1f; }
.v4-home-paths__grid > a > span { color: var(--v4-red); font-size: 12px; font-weight: 850; letter-spacing: 1px; }
.v4-home-paths h2 { margin: 0 0 7px; color: #fff; font-size: 21px; text-transform: none; }
.v4-home-paths p { margin: 0; color: rgba(255,255,255,.55); font-size: 13px; line-height: 1.55; }
.v4-home-paths b { color: var(--v4-red); font-size: 22px; }
.v4-section-heading--split { display: flex; max-width: none; align-items: flex-end; justify-content: space-between; gap: 40px; }
.v4-text-link { display: inline-flex; padding-bottom: 6px; flex: 0 0 auto; color: #15171b; border-bottom: 2px solid var(--v4-red); font-size: 14px; font-weight: 800; text-decoration: none; }
.v4-text-link b { margin-left: 13px; color: var(--v4-red); }
.v4-home-product-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 25px; }
.v4-home-product-card { overflow: hidden; background: #fff; border: 1px solid var(--v4-border); border-radius: 7px; transition: transform .25s ease, box-shadow .25s ease; }
.v4-home-product-card:hover { transform: translateY(-6px); box-shadow: 0 22px 50px rgba(11,14,20,.11); }
.v4-home-product-card__media { display: flex; min-height: 300px; padding: 26px; align-items: center; justify-content: center; background: radial-gradient(circle,#fff 0,#eff1f4 82%); border-bottom: 1px solid var(--v4-border); }
.v4-home-product-card__media img { display: block; max-width: 100%; max-height: 260px; width: auto; height: auto; object-fit: contain; }
.v4-home-product-card > div { padding: 25px 26px 28px; }
.v4-home-product-card > div > span, .v4-home-article-card > div > span { color: var(--v4-red); font-size: 10px; font-weight: 850; letter-spacing: 1.4px; }
.v4-home-product-card h3 { margin: 10px 0 18px; font-size: 21px; line-height: 1.35; text-transform: none; }
.v4-home-product-card h3 a { color: #15171b; text-decoration: none; }
.v4-home-product-card > div > a { color: var(--v4-red); font-size: 13px; font-weight: 800; text-decoration: none; }
.v4-home-solution-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 22px; }
.v4-home-solution-card { display: flex; min-height: 260px; padding: 34px; flex-direction: column; justify-content: flex-end; color: #fff; background: radial-gradient(circle at 90% 15%,rgba(230,0,18,.24),transparent 37%),linear-gradient(145deg,#171a1f,#0a0b0e); border: 1px solid rgba(255,255,255,.10); border-radius: 7px; text-decoration: none; transition: transform .25s ease,border-color .25s ease; }
.v4-home-solution-card:hover { transform: translateY(-6px); border-color: rgba(230,0,18,.65); }
.v4-home-solution-card > span { color: var(--v4-red); font-size: 10px; font-weight: 850; letter-spacing: 1.5px; }
.v4-home-solution-card h3 { margin: 13px 0 11px; color: #fff; font-size: 25px; text-transform: none; }
.v4-home-solution-card p { margin: 0 0 25px; color: rgba(255,255,255,.58); font-size: 14px; line-height: 1.65; }
.v4-home-solution-card b { color: #fff; font-size: 13px; }
.v4-home-solution-grid--light .v4-home-solution-card { color: #15171b; background: radial-gradient(circle at 90% 15%,rgba(230,0,18,.13),transparent 37%),linear-gradient(145deg,#fff,#f1f3f5); border-color: var(--v4-border); }
.v4-home-solution-grid--light .v4-home-solution-card h3, .v4-home-solution-grid--light .v4-home-solution-card b { color: #15171b; }
.v4-home-solution-grid--light .v4-home-solution-card p { color: var(--v4-muted); }
.v4-home-facts { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 18px; }
.v4-home-facts article { padding: 34px 28px; background: #fff; border: 1px solid var(--v4-border); border-radius: 6px; }
.v4-home-facts strong { display: block; color: var(--v4-red); font-size: clamp(28px,3vw,42px); line-height: 1.05; }
.v4-home-facts h3 { margin: 15px 0 8px; color: #16181c; font-size: 19px; text-transform: none; }
.v4-home-facts p { margin: 0; color: var(--v4-muted); font-size: 13px; line-height: 1.65; }
.v4-home-service-strip { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.v4-home-service-strip span { padding: 12px 17px; color: #2d3137; background: #f3f4f6; border: 1px solid var(--v4-border); border-radius: 3px; font-size: 12px; font-weight: 750; }
.v4-home-about__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 68px; align-items: center; }
.v4-home-about__media { overflow: hidden; border-radius: 7px; box-shadow: 0 24px 60px rgba(9,12,18,.13); }
.v4-home-about__media img { display: block; width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.v4-home-about h2 { margin: 15px 0 20px; color: #111318; font-size: clamp(36px,4vw,56px); line-height: 1.1; letter-spacing: -1.4px; text-transform: none; }
.v4-home-about p { color: var(--v4-muted); font-size: 16px; line-height: 1.75; }
.v4-home-about ul { margin: 24px 0 30px; padding: 0; }
.v4-home-about li { position: relative; margin: 10px 0; padding-left: 22px; color: #343941; list-style: none; }
.v4-home-about li::before { position: absolute; left: 0; color: var(--v4-red); content: '✓'; font-weight: 900; }
.v4-home-article-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 25px; }
.v4-home-article-card { overflow: hidden; background: #fff; border: 1px solid var(--v4-border); border-radius: 6px; }
.v4-home-article-card__media { display: block; background: #eef0f2; }
.v4-home-article-card__media img { display: block; width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.v4-home-article-card > div { padding: 25px 26px 28px; }
.v4-home-article-card h3 { margin: 11px 0 11px; font-size: 20px; line-height: 1.4; text-transform: none; }
.v4-home-article-card h3 a { color: #16181c; text-decoration: none; }
.v4-home-article-card p { min-height: 64px; margin: 0 0 17px; color: var(--v4-muted); font-size: 13px; line-height: 1.65; }
.v4-home-article-card > div > a { color: var(--v4-red); font-size: 13px; font-weight: 800; text-decoration: none; }
.v4-home-news-list { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 16px 36px; }
.v4-home-news-list article { padding: 25px 0; border-top: 1px solid var(--v4-border); }
.v4-home-news-list time { color: var(--v4-red); font-size: 11px; font-weight: 850; letter-spacing: .8px; text-transform: uppercase; }
.v4-home-news-list h3 { margin: 10px 0 9px; font-size: 20px; line-height: 1.4; text-transform: none; }
.v4-home-news-list h3 a { color: #16181c; text-decoration: none; }
.v4-home-news-list p { margin: 0 0 13px; color: var(--v4-muted); font-size: 13px; line-height: 1.65; }
.v4-home-news-list article > a { color: var(--v4-red); font-size: 13px; font-weight: 800; text-decoration: none; }

/* Adaptive product media: IFPD, portrait digital signage and compact accessories. */
.mp-gallery__main { aspect-ratio: auto !important; min-height: 520px; padding: 34px !important; }
.mp-gallery__main img { width: auto !important; height: auto !important; max-width: 94%; max-height: 520px; }
.mp-gallery__main.is-portrait img { max-width: 62%; max-height: 560px; }
.mp-gallery__main.is-square img { max-width: 78%; max-height: 500px; }
.mp-gallery__main.is-compact img { max-width: 72%; max-height: 430px; }
.mp-product-card__image { aspect-ratio: auto !important; min-height: 300px; }
.mp-product-card__image img { width: auto !important; height: auto !important; max-width: 94%; max-height: 245px; }
.mp-product-card__image.is-portrait img { max-width: 54%; max-height: 270px; }
.mp-product-card__image.is-square img, .mp-product-card__image.is-compact img { max-width: 72%; max-height: 230px; }
.v4-home-product-card__media.is-portrait img { max-width: 48%; max-height: 275px; }
.v4-home-product-card__media.is-square img, .v4-home-product-card__media.is-compact img { max-width: 70%; max-height: 245px; }

/* New red/black social icons — no purple inheritance. */
.mp-footer__social a { width: 39px; height: 39px; padding: 10px; color: #fff !important; background: #171a1f !important; border: 1px solid rgba(255,255,255,.13) !important; border-radius: 50% !important; }
.mp-footer__social a:hover { background: var(--v4-red) !important; border-color: var(--v4-red) !important; transform: translateY(-2px); }
.mp-footer__social svg { display: block; width: 100%; height: 100%; fill: currentColor; }

/* Desktop contact rail and mobile bottom bar. */
.v4-contact-rail { position: fixed; top: 50%; right: 18px; z-index: 980; display: flex; flex-direction: column; gap: 8px; transform: translateY(-50%); }
.v4-contact-rail__item { display: flex; width: 50px; min-height: 50px; padding: 0; align-items: center; justify-content: center; color: #20242a; background: #fff; border: 1px solid #e1e4e8; border-radius: 7px; box-shadow: 0 10px 28px rgba(9,12,18,.12); cursor: pointer; text-decoration: none; transition: width .22s ease,color .22s ease,background .22s ease,border-color .22s ease; }
.v4-contact-rail__item svg { width: 22px; height: 22px; flex: 0 0 auto; fill: currentColor; }
.v4-contact-rail__item span { width: 0; margin-left: 0; overflow: hidden; opacity: 0; color: inherit; font-size: 12px; font-weight: 800; white-space: nowrap; transition: width .22s ease,margin .22s ease,opacity .22s ease; }
.v4-contact-rail__item:hover { width: 128px; color: #fff; background: var(--v4-red); border-color: var(--v4-red); }
.v4-contact-rail__item:hover span { width: 68px; margin-left: 10px; opacity: 1; }
.v4-contact-rail__wechat { position: relative; }
.v4-contact-rail__wechat > button { font: inherit; }
.v4-contact-rail__qr { position: absolute; top: 50%; right: 62px; display: none; width: 190px; padding: 17px; color: #20242a; background: #fff; border: 1px solid #e1e4e8; border-radius: 8px; box-shadow: 0 18px 42px rgba(9,12,18,.18); text-align: center; transform: translateY(-50%); }
.v4-contact-rail__wechat:hover .v4-contact-rail__qr, .v4-contact-rail__wechat.is-open .v4-contact-rail__qr { display: block; }
.v4-contact-rail__qr img { display: block; width: 150px; height: 150px; margin: 0 auto 10px; object-fit: contain; }
.v4-contact-rail__qr strong, .v4-contact-rail__qr small { display: block; }
.v4-contact-rail__qr small { margin-top: 4px; color: #777d85; }
.v4-mobile-contact { display: none; }

/* The legacy plugin and old floating rails stay hidden even if cached HTML remains. */
#ey_kefu, .ey_message, .ey-chat, .ey-weapp, .leave-message, [class*='skype'] { display: none !important; }

@media (max-width: 1100px) {
  .v4-home-paths__grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .v4-home-product-grid, .v4-home-solution-grid, .v4-home-article-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .v4-home-facts { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .v4-home-about__grid { gap: 40px; }
  .v4-contact-rail { right: 8px; }
}
@media (max-width: 850px) {
  .v4-section-heading--split { display: block; }
  .v4-section-heading--split .v4-text-link { margin-top: 22px; }
  .v4-home-about__grid { grid-template-columns: 1fr; }
  .v4-contact-rail { display: none; }
  .v4-mobile-contact { position: fixed; right: 0; bottom: 0; left: 0; z-index: 990; display: grid; grid-template-columns: repeat(3,1fr); background: #0b0d10; box-shadow: 0 -8px 25px rgba(0,0,0,.16); }
  .v4-mobile-contact a { display: flex; min-height: 55px; align-items: center; justify-content: center; color: #fff; border-right: 1px solid rgba(255,255,255,.12); font-size: 12px; font-weight: 800; text-decoration: none; }
  .v4-mobile-contact a.is-primary { background: var(--v4-red); }
  body { padding-bottom: 55px; }
  .mp-gallery__main { min-height: 420px; }
  .mp-gallery__main img { max-height: 400px; }
}
@media (max-width: 650px) {
  .v4-home-paths__grid, .v4-home-product-grid, .v4-home-solution-grid, .v4-home-facts, .v4-home-article-grid, .v4-home-news-list { grid-template-columns: 1fr; }
  .v4-home-paths__grid > a { min-height: 125px; border-left: 1px solid rgba(255,255,255,.09); border-bottom: 1px solid rgba(255,255,255,.09); }
  .v4-home-product-card__media { min-height: 250px; }
  .v4-home-about__grid { gap: 30px; }
  .mp-gallery__main { min-height: 330px; padding: 20px !important; }
  .mp-gallery__main img { max-height: 310px; }
  .mp-gallery__main.is-portrait img { max-width: 58%; max-height: 320px; }
}

/* =====================================================
   MOLITER V4.1.1 — HEADER HOTFIX
   Compact product dropdown, continuous navigation and mobile menu
===================================================== */
.moliter-v4-header {
  position: relative;
  z-index: 1200;
  overflow: visible;
}

.moliter-v4-header .moliter-header-inner {
  position: relative;
}

.moliter-v4-header .nav-ul > li > a {
  white-space: nowrap !important;
}

.moliter-v4-header .moliter-products-submenu {
  min-width: 270px !important;
}

.moliter-v4-header .moliter-products-submenu > li > a {
  display: flex !important;
  min-height: 45px;
  align-items: center;
  white-space: nowrap;
}

@media screen and (min-width: 992px) and (max-width: 1320px) {
  .moliter-v4-header .nav-ul > li > a {
    padding-right: 10px !important;
    padding-left: 10px !important;
    font-size: 13px !important;
  }

  .moliter-v4-header .head-logo img {
    max-width: 170px;
  }

  .moliter-v4-header .moliter-header-quote {
    min-width: 116px;
    margin-left: 8px;
    padding-right: 13px;
    padding-left: 13px;
  }
}

@media screen and (max-width: 991px) {
  .moliter-v4-header .head-nav.is-open {
    position: absolute;
    top: 68px;
    right: 0;
    left: 0;
    z-index: 1300;
    display: block !important;
    margin: 0;
    background: #08090b;
    border-top: 1px solid rgba(255,255,255,.10);
    box-shadow: 0 22px 40px rgba(0,0,0,.28);
  }

  .moliter-v4-header .head-nav.is-open .nav-ul {
    display: flex !important;
    height: auto !important;
    padding: 8px 0 14px;
    align-items: stretch !important;
    flex-direction: column;
  }

  .moliter-v4-header .head-nav.is-open .nav-ul > li {
    display: block !important;
    width: 100%;
    height: auto !important;
  }

  .moliter-v4-header .head-nav.is-open .nav-ul > li > a {
    height: auto !important;
    min-height: 52px !important;
    padding: 0 24px !important;
    justify-content: flex-start !important;
    border-bottom: 1px solid rgba(255,255,255,.07);
  }

  .moliter-v4-header .head-nav.is-open .nav-ul > li > a::after {
    right: auto !important;
    bottom: 0 !important;
    left: 24px !important;
    width: 34px !important;
    transform: scaleX(0) !important;
    transform-origin: left !important;
  }

  .moliter-v4-header .head-nav.is-open .nav-ul > li > a:hover::after,
  .moliter-v4-header .head-nav.is-open .nav-ul > li > a.inmenu_1::after {
    transform: scaleX(1) !important;
  }

  .moliter-v4-header .head-nav.is-open .submenu {
    position: static !important;
    display: block !important;
    min-width: 0 !important;
    max-height: none !important;
    margin: 0 !important;
    padding: 4px 0 8px !important;
    overflow: visible !important;
    background: #111318 !important;
    border-top: 0 !important;
    box-shadow: none !important;
    transform: none !important;
  }

  .moliter-v4-header .head-nav.is-open .submenu > li > a {
    min-height: 42px;
    padding: 10px 34px !important;
    color: rgba(255,255,255,.72) !important;
    background: transparent !important;
    border-bottom: 1px solid rgba(255,255,255,.05);
  }

  .moliter-v4-header .head-nav.is-open .submenu > li > a:hover {
    color: #fff !important;
    background: rgba(230,0,18,.12) !important;
  }
}

/* =====================================================
   MOLITER V4.1.2 — CONTACT PAGE ISOLATION
   Ensures the contact page never inherits the legacy purple layout.
===================================================== */
body.v4-contact-page {
  margin: 0;
  color: #22252a;
  background: #fff;
}
body.v4-contact-page > .top,
body.v4-contact-page > .head,
body.v4-contact-page .bottom-btn,
body.v4-contact-page .contact-right-btn,
body.v4-contact-page #ey_kefu,
body.v4-contact-page .ey_message,
body.v4-contact-page .gotop {
  display: none !important;
}
body.v4-contact-page .v4-page-hero--contact {
  background:
    radial-gradient(circle at 82% 20%, rgba(230,0,18,.36), transparent 30%),
    linear-gradient(120deg, #07080a 0%, #111318 62%, #380009 100%);
}
body.v4-contact-page .v4-contact-form .v4-btn--red {
  min-width: 170px;
  min-height: 50px;
}
body.v4-contact-page .v4-footer,
body.v4-contact-page .v4-contact-rail,
body.v4-contact-page .v4-mobile-contact {
  visibility: visible !important;
}
