.mcg-preserve-breaks {
  white-space: pre-line;
}

/* ============ HERO ============ */
.hero {
  background: var(--bg-soft);
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.hero-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 440px;
  position: relative;
  max-width: none !important;
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  box-sizing: border-box !important;
}

.hero-left {
  padding: 50px 40px 30px 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.hero-inner::after {
  content: "";
  position: absolute;
  left: 96px;
  bottom: -10px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 14px solid var(--bg-soft);
  pointer-events: none;
}

.hero-title {
  font-size: 40px;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -.02em;
  margin-bottom: 22px;
}

.hero-title-break {
  display: block;
}

.hero-title .accent {
  color: var(--purple);
  display: block
}

.hero-desc {
  font-size: 14px;
  color: #3A3A3E;
  line-height: 1.65;
  /* F-4a: widen so the sub-heading flows naturally and does not break awkwardly. */
  max-width: 360px;
  margin-bottom: 26px;
}

.hero-cta {
  background: var(--purple);
  color: #fff;
  padding: 6px 24px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  align-self: flex-start;
  transition: background .2s, transform .15s;
}

.hero-cta:hover,
.hero-cta:focus-visible {
  /* G-1: unified button hover = black background, white text. */
  background: #000;
  color: #fff !important;
  transform: translateY(-1px)
}

.hero-trust {
  margin-top: auto;
  padding-top: 20px;
  font-size: 10px;
  color: #9A9AA0;
  letter-spacing: .04em;
}

.hero-right {
  position: relative;
  overflow: hidden;
  border-radius: 0;
}

.hero-right video {
  display: block;
  width: 100% !important;
  height: 100%;
  object-fit: cover;
}

.hero-image {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2A3B4A 0%, #1A2530 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 440px;
}

/* simulated printing press scene */
.press-scene {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(255, 200, 100, .08) 0%, transparent 50%),
    linear-gradient(180deg, #2A3B4A 0%, #1A2530 60%, #0F1A24 100%);
  position: relative;
  overflow: hidden;
}

.press-scene::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 38%;
  background: linear-gradient(180deg, transparent 0%, #F5B800 30%, #F5B800 100%);
}

.press-scene::after {
  content: '';
  position: absolute;
  top: 8%;
  left: 8%;
  font-family: var(--font-mono);
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: .05em;
}

.press-label {
  position: absolute;
  top: 24px;
  left: 30px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .04em;
  z-index: 3;
}

.press-display {
  position: absolute;
  top: 18px;
  right: 24px;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  background: rgba(0, 0, 0, .35);
  padding: 6px 12px;
  border-radius: 4px;
  z-index: 3;
}

.worker {
  position: absolute;
  bottom: 0;
  width: 38%;
  height: 78%;
  z-index: 2;
}

.worker-1 {
  left: 30%;
  background:
    radial-gradient(ellipse at 50% 18%, #E8B89A 0%, #E8B89A 5%, transparent 6%),
    linear-gradient(180deg, #2A2A2E 0%, #2A2A2E 25%, #FFE600 26%, #FFE600 75%, #2A2A2E 76%);
  clip-path: polygon(20% 15%, 80% 15%, 90% 35%, 100% 100%, 0% 100%, 10% 35%);
}

.worker-2 {
  left: 48%;
  background:
    radial-gradient(ellipse at 50% 15%, #C99272 0%, #C99272 5%, transparent 6%),
    linear-gradient(180deg, #2A2A2E 0%, #2A2A2E 20%, #FF7A1A 21%, #FF7A1A 80%, #2A2A2E 81%);
  clip-path: polygon(20% 12%, 80% 12%, 95% 40%, 100% 100%, 0% 100%, 5% 40%);
}

.press-paper {
  position: absolute;
  bottom: 8%;
  left: 18%;
  right: 18%;
  height: 14%;
  background: #fff;
  border-radius: 2px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .4);
  z-index: 1;
}

.press-controls {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 32%;
  background:
    repeating-linear-gradient(90deg, #1A2530 0px, #1A2530 60px, #2A3B4A 60px, #2A3B4A 65px),
    linear-gradient(180deg, #0F1A24 0%, #1A2530 100%);
  z-index: 0;
}

/* ============ BRAND STRIP ============ */
.brands {
  background: #fff;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

/* F-4b: small "notch" tab bridging the hero band and the logo bar.
   A rounded lavender tab with a downward navy triangle centred on top.
   NOTE (待设计确认 A-13): tab size/colour/triangle are estimated from the comp. */
.brands::before {
  content: '';
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  width: 132px;
  height: 26px;
  background: var(--bg-soft);
  border-radius: 0 0 16px 16px;
  z-index: 2;
}

.brands::after {
  content: '';
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 8px solid #14233F;
  z-index: 3;
}

.brands-track {
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand-logo {
  min-height: 74px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
}

.brand-logo img {
  width: 100%;
  height: 46px;
  object-fit: contain;
  /* C-2: client logos are greyscale by default and turn full-colour on hover. */
  filter: grayscale(1);
  opacity: .75;
  transition: filter .3s ease, opacity .3s ease;
}

.brand-logo:hover img {
  filter: grayscale(0);
  opacity: 1;
}

.carousel.carousel-brands {
  --carousel-gap: 14px;
}

/* ============ SECTION COMMON ============ */
.section {
  padding: 80px 0;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.eyebrow {
  font-size: 16px;
  color: #7A7A82;
  letter-spacing: .06em;
  text-align: center;
  margin-bottom: 10px;
}

.section-title {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -.02em;
  text-align: center;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 18px;
  color: #6B6B72;
  text-align: center;
  margin-bottom: 50px;
}

.mcg-services-intro .section-subtitle {
  margin-bottom: 0;
}

.service-grid--vc {
  align-items: stretch;
}

.service-grid--vc>.wpb_column,
.service-grid--vc>.vc_column_container {
  display: flex;
  float: none;
}

.service-grid--vc>.wpb_column>.vc_column-inner,
.service-grid--vc>.vc_column_container>.vc_column-inner {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.service-grid--vc .wpb_wrapper,
.service-grid--vc .wpb_content_element {
  height: 100%;
  margin-bottom: 0;
}

/* ============ SERVICE CARDS ============ */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* The live page content uses plain Salient VC rows (wpb_row inner_row) WITHOUT
   the --vc helper classes, so the columns fall back to stacked. Force the 3
   columns inside the Find-Your-Service (.section) and Smart-Thinking
   (.smart-section) rows to sit side-by-side as 3 equal columns per the design. */
.section .wpb_row.inner_row > .row_col_wrap_12_inner,
.smart-section .wpb_row.inner_row > .row_col_wrap_12_inner {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: stretch !important;
  gap: 18px !important;
  width: 100% !important;
}

.section .wpb_row.inner_row > .row_col_wrap_12_inner > .vc_col-sm-4,
.smart-section .wpb_row.inner_row > .row_col_wrap_12_inner > .vc_col-sm-4 {
  flex: 1 1 0 !important;
  width: auto !important;
  max-width: none !important;
  min-width: 0 !important;
  float: none !important;
  margin: 0 !important;
  display: flex !important;
}

/* Make the cards inside each column stretch to equal height. */
.section .wpb_row.inner_row > .row_col_wrap_12_inner > .vc_col-sm-4 > .vc_column-inner,
.smart-section .wpb_row.inner_row > .row_col_wrap_12_inner > .vc_col-sm-4 > .vc_column-inner {
  width: 100% !important;
  display: flex !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.section .wpb_row.inner_row > .row_col_wrap_12_inner > .vc_col-sm-4 .wpb_wrapper,
.smart-section .wpb_row.inner_row > .row_col_wrap_12_inner > .vc_col-sm-4 .wpb_wrapper {
  width: 100% !important;
}

.service-card {
  background: #F3F3F5;
  border-radius: 14px;
  padding: 36px 28px 30px;
  text-align: center;
  transition: transform .2s, box-shadow .2s;
}

.service-card:hover {
  background: white;
  /* F-5: design uses a light border on the white hover state. */
  border: #e2e2e6 1px solid;
  box-shadow: 0 10px 30px rgba(20, 16, 30, .07);
}

.service-icon {
  width: 96px;
  height: 96px;
  font-size: 48px;
  margin-bottom: 14px;
  line-height: 1;
  display: inline-block;
}

.service-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 13px;
  color: #5A5A60;
  line-height: 1.55;
  margin-bottom: 14px;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
}

.service-link {
  font-size: 13px;
  font-weight: 600;
  /* F-5: muted by default; each card reveals its accent colour on hover. */
  color: #8A8A90;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color .2s, gap .2s;
}

.service-card:hover .service-link {
  gap: 10px;
}

.service-card.print:hover .service-link {
  color: #1D9BB0
}

.service-card.packaging:hover .service-link {
  color: #E07A28
}

.service-card.campaign:hover .service-link {
  color: #D44A55
}

/* ============ SMART THINKING (light blue bg) ============ */
.smart-section {
  background: #E8EEF1;
  padding: 80px 0;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.smart-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 50px;
  align-items: start;
}

.smart-title {
  font-size: 52px;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.05;
}

.smart-right {
  width: 70%;
}

.smart-right p {
  padding: 10px 20px 0;
  font-size: 13px;
  color: #3A3A3E;
  font-weight: 600;
  line-height: 1.65;
  margin-bottom: 12px;
}

.btn-discuss {
  background: var(--purple);
  color: #fff;
  padding: 6px 22px;
  border-radius: 999px;
  font-size: 13px;
  width: 100%;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  min-width: 260px;
  justify-content: space-between;
  transition: background .2s, transform .15s;
}

.btn-discuss:hover {
  transform: translateY(-1px)
}

/* .arrow-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
} */

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* WPBakery vc_row_inner variant — mirrors the service-grid--vc pattern */
.product-grid--vc {
  align-items: stretch;
}

.product-grid--vc > .wpb_column,
.product-grid--vc > .vc_column_container {
  display: flex;
  float: none;
}

.product-grid--vc > .wpb_column > .vc_column-inner,
.product-grid--vc > .vc_column_container > .vc_column-inner {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.product-grid--vc .wpb_wrapper,
.product-grid--vc .wpb_content_element {
  height: 100%;
  margin-bottom: 0;
}

.product-card {
  background: #fff;
  border-radius: 12px;
  padding: 26px 24px 22px;
  position: relative;
  min-height: 350px;
  display: flex;
  flex-direction: column;
}

.product-card.print {
  background: var(--print-grad)
}
.product-card.print:hover{
  border: #98DCD3 1px solid;
}

.product-card.pack {
  background: var(--pack-grad)
}

.product-card.pack:hover{
  border: #F6CAB4 1px solid;
}

.product-card.camp {
  background: var(--camp-grad)
}

.product-card.camp:hover{
  border: #E9B2B7 1px solid;
}
.product-dot {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
}

.product-card.print .product-dot {
  background: var(--teal)
}

.product-card.pack .product-dot {
  background: var(--orange)
}

.product-card.camp .product-dot {
  background: var(--red)
}

.product-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.2;
  padding-right: 30px;
}

.product-card p {
  font-size: 13px;
  color: #4A4A50;
  line-height: 1.55;
  margin-bottom: 16px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}

.chip {
  background: rgba(255, 255, 255, .7);
  border: 1px solid rgba(0, 0, 0, .06);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  color: #3A3A3E;
  font-weight: 500;
}

.product-link {
  margin-top: auto;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color:#1A1A22;
}


/* ============ ONE GROUP ============ */
.one-group {
  padding: 80px 0;
  background: #fff;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.one-group .container{
  padding: 0;
}

.one-group-inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  align-items: start;
}

.one-group-inner > div {
  min-width: 0;
}

.one-group h2 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.1;
  margin-bottom: 18px;
}

.one-group p {
  font-size: 14px;
  color: #5A5A60;
  line-height: 1.6;
}

.group-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.group-card {
  background: #fff;
  border: 1px solid #EAEBED;
  border-radius: 14px;
  padding: 30px 22px 22px;
  text-align: center;
  transition: transform .2s, box-shadow .2s;
}

/* F-6: keep the card white on hover with a lift + emphasised border,
   consistent with the service cards (F-5). */
.group-card:hover {
  box-shadow: 0 10px 30px rgba(20, 16, 30, .08);
  background: #fff;
  border-color: #d7d8dc;
  transform: translateY(-2px);
}

.group-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .2s;
}

.group-card:hover .group-link {
  gap: 10px;
}

.group-icon {
  font-size: 46px;
  line-height: 1;
  display: inline-block;
  width: 96px;
  height: 84px
}

.group-card h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px
}

.group-card .sub {
  font-size: 13px;
  color: #6B6B72;
  margin-bottom: 18px
}

.group-link {
  font-size: 12px;
  font-weight: 600;
  color: var(--teal)
}

.group-card:nth-child(2) .group-link {
  color: #D4A22B
}

.group-card:nth-child(3) .group-link {
  color: #5085D6
}

.dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #D5D6D9;
}

.dot.active {
  background: #1A1A22;
  width: 8px;
  height: 8px
}

/* ============ EMBELLISH + TESTIMONIAL ============ */
.embellish-wrap {
  background: #fff;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

/* Unified wrapper controls the 20px white gutter for both classic and VC structures. */
.embellish-split {
  display: grid;
  grid-template-columns: 1fr 380px;
  column-gap: 0;
  row-gap: 0;
  background: white;
}

.embellish-wrap .row-bg-wrap {
  display: none !important;
}

.embellish-wrap--vc .embellish-split {
  display: block;
}

/* VC: center the split row on the 1240px content grid (matches design figure:
   embellish/testimonial sit centered with side gutters, not edge-to-edge). */
.embellish-wrap--vc .embellish-split > .vc_row,
.embellish-wrap--vc .embellish-split > .vc_row_inner {
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: 1240px !important;
  width: 100% !important;
  box-sizing: border-box !important;
  padding-left: 32px !important;
  padding-right: 32px !important;
}

/* VC: lay the two columns (embellish left, testimonial right) side-by-side.
   The inner full-width column wrapper becomes a flex row; the two .vc_col-sm-6
   columns take ~63% / ~37% per the design. */
.embellish-wrap--vc .embellish-split > .vc_row > .row_col_wrap_12_inner,
.embellish-wrap--vc .embellish-split > .vc_row_inner > .row_col_wrap_12_inner {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: stretch !important;
  width: 100% !important;
}

.embellish-wrap--vc .embellish-split .embellish {
  flex: 0 0 63% !important;
  max-width: 63% !important;
  width: 63% !important;
}

.embellish-wrap--vc .embellish-split .testimonial {
  flex: 0 0 37% !important;
  max-width: 37% !important;
  width: 37% !important;
}

.embellish-wrap--vc .embellish-split > .vc_row > .wpb_column:first-child > .vc_column-inner,
.embellish-wrap--vc .embellish-split > .vc_row > .vc_column_container:first-child > .vc_column-inner,
.embellish-wrap--vc .embellish-split > .vc_row_inner > .wpb_column:first-child > .vc_column-inner,
.embellish-wrap--vc .embellish-split > .vc_row_inner > .vc_column_container:first-child > .vc_column-inner {
  padding-right: 20px;
}

/* Within the embellish (left) column: 2-col card grid without nested vc_row_inner.
   Intro (.embellish-head) spans full width; two .em-card elements go side-by-side. */
.embellish-wrap--vc .embellish > .vc_column-inner > .wpb_wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.embellish-wrap--vc .embellish > .vc_column-inner > .wpb_wrapper > .embellish-head {
  grid-column: 1 / -1;
}

/* Editor: WPBakery wraps each element; first wrapper (intro) spans full width */
.embellish-wrap--vc .embellish > .vc_column-inner > .wpb_wrapper > .vc_element:first-child {
  grid-column: 1 / -1;
}

.embellish-wrap--vc .embellish .em-card {
  height: 100%;
}

.embellish {
  padding-right: 5px !important;
}

.testimonial {
  padding-left: 5px !important;
}

.embellish-inner,
.embellish-wrap--vc .embellish > .vc_column-inner > .wpb_wrapper {
  background: #EFF2F4;
  padding: 60px 40px 60px 32px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}

.embellish-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 30px;
  gap: 20px;
  padding:0 30px;
}

.embellish-head h2 {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.15;
}

.embellish-quote {
  background: var(--purple);
  color: #fff;
  padding: 9px 20px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  flex-shrink: 0;
  align-self: center;
}
.embellish-quote:hover{
    background: var(--purple-dark);
    transform: translateY(-1px);
    color:white;
}
.embellish-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.em-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}

.em-img {
  width: 96%;
  margin: 2%;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  aspect-ratio: 2/1;
}

.em-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.em-img img:hover {
  scale: 105%;
}

.em-card.pack-card .em-img {
  background: linear-gradient(135deg, #F5C4C0 0%, #EFAFB2 100%);
}

.em-card.floor-card .em-img {
  background: linear-gradient(135deg, #B9E0CB 0%, #A5D3B9 100%);
}

.cereal-box {
  width: 90px;
  height: 130px;
  background: linear-gradient(180deg, #fff 0%, #F4F0E8 100%);
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
  padding: 10px 8px;
  text-align: center;
  color: #D44A2A;
  font-weight: 800;
  font-size: 11px;
  line-height: 1.1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cereal-box .top {
  font-size: 9px;
  letter-spacing: .05em;
  color: #888
}

.cereal-box .big {
  font-size: 16px;
  letter-spacing: .04em;
  color: #D44A2A
}

.cereal-box .bot {
  height: 36px;
  background: #E8C9A5;
  border-radius: 2px;
}

.bottle-display {
  width: 80px;
  height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.bottle {
  width: 22px;
  height: 60px;
  background: linear-gradient(180deg, #fff 0%, #E8E8E8 100%);
  border-radius: 4px 4px 2px 2px;
  margin: 0 2px;
}

.bottle-shelf {
  width: 100%;
  height: 6px;
  background: #7A8A82;
  border-radius: 2px;
  margin-top: 8px;
}

.bottle-row {
  display: flex;
  gap: 0
}

.em-content {
  padding: 18px 18px 20px
}

.em-content h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.em-card.pack-card h4 {
  color: #D44A55
}

.em-card.floor-card h4 {
  color: #3FB39A
}

.em-content .sub {
  font-size: 12px;
  color: #6B6B72;
  margin-bottom: 12px;
}

.em-content .chip-row {
  margin-bottom: 0
}

.em-content .chip {
  background: #F3F3F5;
  border: 1px solid #EAEBED;
  color: #3A3A3E;
  font-size: 10px;
  padding: 3px 9px;
}

/* TESTIMONIAL DARK */
.embellish-wrap--vc .testimonial > .vc_column-inner.vc_column-inner {
  height: 100%;
}
.testimonial-inner,
.embellish-wrap--vc .testimonial > .vc_column-inner > .wpb_wrapper {
  background: #0E0E10;
  color: #fff;
  padding: 60px !important;
  display: flex;
  flex-direction: column;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  height: 100%;
}

.testimonial-inner h2,
.embellish-wrap--vc .testimonial > .vc_column-inner > .wpb_wrapper h2 {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.15;
  margin-bottom: 18px;
  color: white;
}

.testimonial-inner > p,
.embellish-wrap--vc .testimonial > .vc_column-inner > .wpb_wrapper > p {
  font-size: 13px;
  color: #B5B5BD;
  line-height: 1.6;
  margin-bottom: 24px;
}

.review-card {
  background: #fff;
  color: #1A1A22;
  border-radius: 12px;
  padding: 18px 18px 20px;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #E5E7EA;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7A7A82;
  font-size: 14px;
  font-weight: 600;
}

.reviewer-info {
  flex: 1
}

.reviewer-info .name {
  font-size: 13px;
  font-weight: 700
}

.reviewer-info .when {
  font-size: 11px;
  color: #7A7A82
}

.google-icon {
  width: 24px;
  height: 24px;
  background: conic-gradient(from 0deg, #4285F4 0% 25%, #34A853 25% 50%, #FBBC05 50% 75%, #EA4335 75% 100%);
  border-radius: 50%;
  position: relative;
}

.google-icon::after {
  content: 'G';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
}

.stars {
  color: #F4B400;
  font-size: 14px;
  margin-bottom: 8px;
  letter-spacing: 1px
}

.review-card p {
  font-size: 12px;
  line-height: 1.55;
  color: #3A3A3E;
  margin-bottom: 8px;
}

.read-more {
  font-size: 11px;
  color: #7A7A82;
  font-weight: 600
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 18px;
}

.testimonial-dots .dot {
  background: #3A3A3E
}

.testimonial-dots .dot.active {
  background: #fff
}

/* ============ REUSABLE CAROUSEL ============ */
.carousel {
  --carousel-gap: 14px;
  --carousel-slides-per-view: 1;
  position: relative;
}

.carousel.carousel-testimonial {
  --carousel-gap: 18px;
}

.carousel-viewport {
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  gap: var(--carousel-gap);
  transition: transform .45s ease;
  will-change: transform;
}

.carousel-slide {
  flex: 0 0 calc((100% - (var(--carousel-gap) * (var(--carousel-slides-per-view) - 1))) / var(--carousel-slides-per-view));
  min-width: 0;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
}

.carousel-nav {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, .08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1A1A22;
  transition: transform .15s, background .2s, border-color .2s;
}

.carousel-nav:hover {
  background: rgba(0, 0, 0, .04);
  transform: translateY(-1px);
}

.carousel-nav:disabled {
  opacity: .45;
  cursor: default;
  transform: none;
}

.carousel-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #D5D6D9;
  transition: transform .2s, background .2s;
}

.carousel-dot.is-active {
  width: 10px;
  height: 10px;
  background: #1A1A22;
}

.carousel-testimonial .carousel-nav {
  color: #fff;
  border-color: rgba(255, 255, 255, .16);
}

.carousel-testimonial .carousel-nav:hover {
  background: rgba(255, 255, 255, .08);
}

.carousel-testimonial .carousel-dot {
  background: #3A3A3E;
}

.carousel-testimonial .carousel-dot.is-active {
  background: #fff;
}


/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .smart-top {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .one-group-inner {
    grid-template-columns: 1fr
  }

  .embellish-split,
  .embellish-wrap--vc .embellish-split > .vc_row,
  .embellish-wrap--vc .embellish-split > .vc_row_inner {
    grid-template-columns: 1fr;
    column-gap: 0;
  }

  /* Stack the two columns vertically on tablet/mobile. */
  .embellish-wrap--vc .embellish-split > .vc_row > .row_col_wrap_12_inner,
  .embellish-wrap--vc .embellish-split > .vc_row_inner > .row_col_wrap_12_inner {
    flex-wrap: wrap !important;
  }

  .embellish-wrap--vc .embellish-split .embellish,
  .embellish-wrap--vc .embellish-split .testimonial {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    width: 100% !important;
  }

  .embellish,
  .testimonial {
    padding-left: 0;
    padding-right: 0;
  }

  /* Stack the 3 service / smart cards vertically on tablet/mobile. */
  .section .wpb_row.inner_row > .row_col_wrap_12_inner,
  .smart-section .wpb_row.inner_row > .row_col_wrap_12_inner {
    flex-wrap: wrap !important;
  }

  .section .wpb_row.inner_row > .row_col_wrap_12_inner > .vc_col-sm-4,
  .smart-section .wpb_row.inner_row > .row_col_wrap_12_inner > .vc_col-sm-4 {
    flex: 0 0 100% !important;
    width: 100% !important;
  }

  .embellish-wrap--vc .embellish-split > .vc_row > .wpb_column:first-child > .vc_column-inner,
  .embellish-wrap--vc .embellish-split > .vc_row > .vc_column_container:first-child > .vc_column-inner,
  .embellish-wrap--vc .embellish-split > .vc_row_inner > .wpb_column:first-child > .vc_column-inner,
  .embellish-wrap--vc .embellish-split > .vc_row_inner > .vc_column_container:first-child > .vc_column-inner {
    padding-right: 0;
  }

  .workshop-inner {
    grid-template-columns: 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media (max-width:768px) {
  .nav {
    display: none
  }

  .search-panel,
  .mega-panel {
    display: none;
  }

  .hero-title,
  .smart-title {
    font-size: 38px
  }

  .section-title {
    font-size: 28px
  }

  .workshop h2 {
    font-size: 36px
  }

  .mcg-services-section > .wpb_content_element:first-child,
  .mcg-services-section > .wpb_wrapper > .wpb_content_element:first-child {
    grid-column: auto;
  }

  .service-grid,
  .product-grid,
  .group-cards,
  .embellish-cards {
    grid-template-columns: 1fr
  }

  .footer-grid,
  .contact-grid {
    grid-template-columns: 1fr
  }

  .embellish,
  .testimonial {
    padding-left: 24px;
    padding-right: 24px;
  }

  .carousel-controls {
    margin-top: 18px;
  }
}