:root {
  --sv-blue: #0e286c;
  --sv-green: #32642d;
  --sv-navy: #0d152a;
  --sv-slate: #2f3e49;
  --sv-gray: #444651;
  --sv-silver: #c5c6d2;
  --sv-bg: #f5f7fb;
  --sv-white: #ffffff;
  --sv-radius: 12px;
  --sv-radius-pill: 999px;
  --sv-shadow: 0 8px 24px rgba(14, 40, 108, 0.08);
  --sv-font: "Be Vietnam Pro", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sv-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--sv-gray);
  background: var(--sv-white);
}

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

a {
  color: var(--sv-blue);
  text-decoration: none;
}
a:hover {
  color: var(--sv-green);
}

h1,
h2,
h3,
.h1,
.h2,
.h3 {
  font-family: var(--sv-font);
  font-weight: 600;
  letter-spacing: 0;
  color: var(--sv-blue);
}
.h1,
h1 {
  font-size: 56px;
  line-height: 1.15;
}
.h2,
h2 {
  font-size: 40px;
  line-height: 1.2;
}
.h3,
h3 {
  font-size: 24px;
  line-height: 33.6px;
}
.b0 {
  font-size: 18px;
}
.b1,
p {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}
.b2 {
  font-size: 14px;
}
.caption {
  font-size: 12px;
}

@media (max-width: 991.98px) {
  .h1,
  h1 {
    font-size: 32px;
  }
  .h2,
  h2 {
    font-size: 26px;
  }
  h1,
  h2,
  .h1,
  .h2 {
    text-wrap: balance;
  }
}
@media (max-width: 575.98px) {
  .h1,
  h1 {
    font-size: 26px;
  }
  .h2,
  h2 {
    font-size: 22px;
  }
  .h3,
  h3 {
    font-size: 24px;
    line-height: 33.6px;
  }
  .sv-container {
    width: calc(100% - 24px);
  }
}

.sv-container {
  width: min(1140px, calc(100% - 32px));
  margin-inline: auto;
}

/* Buttons */
.sv-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--sv-radius-pill);
  font-size: 14px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: 0.2s ease;
  cursor: pointer;
  line-height: 1.2;
}
.sv-btn--primary {
  background: var(--sv-blue);
  color: #fff;
}
.sv-btn--primary:hover {
  background: #16368a;
  color: #fff;
}
.sv-btn--outline {
  background: #fff;
  border-color: var(--sv-silver);
  color: var(--sv-blue);
}
.sv-btn--outline:hover {
  border-color: var(--sv-blue);
  color: var(--sv-blue);
}
.sv-btn--ghost {
  background: transparent;
  color: var(--sv-green);
  padding-inline: 0;
}
.sv-btn--light {
  background: #fff;
  color: var(--sv-blue);
}
.sv-btn--light:hover {
  background: #eef2ff;
  color: var(--sv-blue);
}

/* Header */
.sv-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(197, 198, 210, 0.45);
}
.sv-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 96px;
  gap: 24px;
}
.sv-nav-wrap {
  flex: 1;
  display: flex;
  justify-content: center;
}
.sv-logo,
.custom-logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.sv-logo img,
.custom-logo-link img,
.custom-logo {
  height: 80px;
  width: auto;
  max-width: 320px;
  object-fit: contain;
}
.sv-logo--footer {
  display: inline-flex;
  margin-bottom: 20px;
}
.sv-logo--footer img {
  height: auto;
  width: 280px;
  max-width: 100%;
  max-height: none;
}
.sv-nav {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.sv-nav > li {
  margin: 0;
}
.sv-nav a {
  color: var(--sv-slate);
  font-size: 14px;
  font-weight: 400;
  white-space: nowrap;
}
.sv-nav .current-menu-item > a,
.sv-nav a:hover {
  color: var(--sv-blue);
  font-weight: 600;
}
.sv-nav .current-menu-item > a,
.sv-nav .current-menu-ancestor > a {
  box-shadow: inset 0 -2px 0 var(--sv-green);
  padding-bottom: 2px;
}
.sv-nav > .menu-item-has-children {
  position: relative;
}
.sv-nav > .menu-item-has-children > a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.sv-nav > .menu-item-has-children > a .bi {
  font-size: 10px;
  line-height: 1;
}
.sv-nav > .menu-item-has-children::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 14px;
}
.sv-nav .sub-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 280px;
  margin: 0;
  padding: 14px 20px;
  list-style: none;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(13, 21, 42, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 40;
}
.sv-nav > .menu-item-has-children:hover > .sub-menu,
.sv-nav > .menu-item-has-children:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.sv-nav .sub-menu a {
  display: block;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 400;
  color: var(--sv-navy);
  white-space: normal;
  box-shadow: none;
}
.sv-nav .sub-menu .current-menu-item > a {
  font-weight: 700;
  color: var(--sv-navy);
  box-shadow: inset 0 -2px 0 var(--sv-navy);
  padding-bottom: 4px;
}
.sv-header__cta {
  flex-shrink: 0;
}
.sv-burger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 0;
  background: transparent;
  width: 42px;
  height: 42px;
  padding: 0;
  flex-shrink: 0;
}
.sv-burger span {
  display: block;
  height: 2px;
  width: 22px;
  background: var(--sv-blue);
  margin: 0;
}

@media (max-width: 991.98px) {
  .sv-header__inner {
    min-height: 64px;
    gap: 8px;
  }
  .sv-logo img,
  .custom-logo-link img,
  .custom-logo {
    height: 40px;
    max-width: 140px;
  }
  .sv-header__cta {
    display: inline-flex;
    margin-left: auto;
    padding: 8px 12px;
    font-size: 13px;
    white-space: nowrap;
  }
  .sv-burger {
    display: flex;
  }
  .sv-nav-wrap {
    position: absolute;
    left: 0;
    right: 0;
    top: 64px;
    background: #fff;
    border-bottom: 1px solid var(--sv-silver);
    display: none;
    padding: 12px 16px 20px;
    z-index: 20;
  }
  .sv-nav-wrap.is-open {
    display: block;
  }
  .sv-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .sv-nav > .menu-item-has-children::after {
    display: none;
  }
  .sv-nav .sub-menu {
    position: static;
    transform: none;
    min-width: 0;
    width: 100%;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
    border-radius: 0;
    padding: 8px 0 0 12px;
    background: transparent;
  }
  .sv-nav .sub-menu a {
    padding: 8px 0;
    font-size: 13px;
  }
}

/* Sections */
.sv-section {
  padding: 72px 0;
}
.sv-section--muted {
  background: var(--sv-bg);
}
.sv-section--navy {
  background: var(--sv-blue);
  color: #fff;
}
.sv-section--navy h2,
.sv-section--navy .h2,
.sv-section--navy h3 {
  color: #fff;
}
.sv-kicker,
p.sv-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 30px 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sv-green);
  line-height: 1.4;
}
.sv-kicker--center {
  justify-content: center;
}
.sv-kicker__dash {
  display: block;
  width: 2.75em;
  height: 2px;
  background: currentColor;
  flex-shrink: 0;
}
.sv-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sv-green);
  font-weight: 600;
  margin-bottom: 10px;
}
.sv-eyebrow::before {
  content: "";
  width: 2.75em;
  height: 2px;
  background: currentColor;
  flex-shrink: 0;
}
.sv-eyebrow--center {
  justify-content: center;
}
.sv-eyebrow--light {
  color: rgba(255, 255, 255, 0.75);
}
.sv-eyebrow--light::before {
  background: currentColor;
}
.sv-section__head {
  margin-bottom: 36px;
}
.sv-section__head--row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  flex-wrap: wrap;
}

/* Cards */
.sv-card {
  background: #fff;
  border: 1px solid rgba(197, 198, 210, 0.7);
  border-radius: var(--sv-radius);
  overflow: hidden;
  height: 100%;
  transition:
    box-shadow 0.2s ease,
    transform 0.2s ease;
}
.sv-card:hover {
  box-shadow: var(--sv-shadow);
  transform: translateY(-2px);
}
.sv-card__body {
  padding: 18px 18px 20px;
}
.sv-card__media {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #dfe5f2;
}
.sv-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sv-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: var(--sv-radius-pill);
  background: #e8f5e9;
  color: var(--sv-green);
  font-size: 12px;
  font-weight: 600;
  margin-right: 6px;
  margin-bottom: 8px;
}
.sv-tag--gray {
  background: #eef0f5;
  color: var(--sv-slate);
}
.sv-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 14px;
  color: var(--sv-blue);
}

/* Hero home */
.sv-hero {
  padding: 56px 0 28px;
  background: #fff;
}
.sv-hero__media {
  border-radius: 50%;
  overflow: hidden;
  aspect-ratio: 1;
  max-width: 480px;
  margin-inline: auto;
  border: 10px solid #e8eef8;
  box-shadow: var(--sv-shadow);
}
.sv-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sv-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  background: #fff;
  border: 1px solid rgba(197, 198, 210, 0.6);
  border-radius: var(--sv-radius);
  padding: 18px;
  margin-top: 28px;
  box-shadow: var(--sv-shadow);
}
.sv-stats__item {
  text-align: center;
  padding: 8px;
}
.sv-stats__value {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: var(--sv-blue);
}
.sv-stats__label {
  font-size: 13px;
  color: var(--sv-slate);
}
@media (max-width: 767.98px) {
  .sv-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Service icon cards */
.sv-icon-card {
  padding: 24px;
  border: 1px solid rgba(197, 198, 210, 0.7);
  border-radius: var(--sv-radius);
  background: #fff;
  height: 100%;
}
.sv-icon-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #eaf2ea;
  color: var(--sv-green);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  font-size: 22px;
}
.sv-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.sv-icon-svg {
  width: 1em;
  height: 1em;
  display: block;
  object-fit: contain;
}
.sv-icon .bi,
.sv-home-stats__icon .bi,
.sv-service-card__icon .bi,
.sv-product-card__icon .bi,
.sv-home-why__item-icon .bi,
.sv-home-ops__icon .bi,
.sv-home-hero__card-icon .bi,
.sv-home-about__badge-icon .bi,
.sv-about-field__icon .bi,
.sv-about-commit__icon .bi,
.sv-icon-card__icon .bi {
  font-size: 1em;
  line-height: 1;
  display: block;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Process */
.sv-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
.sv-process__step {
  text-align: center;
}
.sv-process__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--sv-silver);
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  font-weight: 700;
  color: var(--sv-blue);
  background: #fff;
}
@media (max-width: 991.98px) {
  .sv-process {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575.98px) {
  .sv-process {
    grid-template-columns: 1fr;
  }
}

/* Why / split */
.sv-split-media {
  border-radius: var(--sv-radius);
  overflow: hidden;
  position: relative;
}
.sv-split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
}
.sv-split-media__box {
  position: absolute;
  left: 16px;
  bottom: 16px;
  right: 16px;
  background: rgba(14, 40, 108, 0.92);
  color: #fff;
  padding: 16px 18px;
  border-radius: 10px;
}

/* Check list */
.sv-checks {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}
.sv-checks li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
}
.sv-checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--sv-green);
  font-weight: 700;
}

/* Quote */
.sv-quote {
  background: #eaf1fb;
  border-radius: var(--sv-radius);
  padding: 20px 24px;
  color: var(--sv-blue);
  font-weight: 600;
  margin-top: 20px;
}

/* Timeline dark */
.sv-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  border-left: 2px solid rgba(255, 255, 255, 0.35);
}
.sv-timeline li {
  padding: 0 0 28px 22px;
  position: relative;
}
.sv-timeline li::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  left: -7px;
  top: 6px;
}
.sv-timeline__year {
  font-size: 13px;
  opacity: 0.8;
  margin-bottom: 4px;
}

/* Company table */
.sv-info-table {
  background: #fff;
  border: 1px solid rgba(197, 198, 210, 0.7);
  border-radius: var(--sv-radius);
  overflow: hidden;
}
.sv-info-table__row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid #eef0f5;
}
.sv-info-table__row:last-child {
  border-bottom: 0;
}
.sv-info-table__label {
  color: var(--sv-slate);
  font-weight: 600;
  font-size: 14px;
}
@media (max-width: 575.98px) {
  .sv-info-table__row {
    grid-template-columns: 1fr;
  }
}

/* News listing — design/Tin tức.jpg */
.sv-news-hero {
  padding: 8px 0 56px;
  background: #fff;
}
.sv-news-hero .sv-kicker {
  margin: 30px 0 12px;
  color: var(--sv-green);
}
.sv-news-hero h1 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--sv-blue);
  margin: 0 0 16px;
  max-width: 14em;
}
.sv-news-hero__lead {
  font-size: 16px;
  line-height: 26px;
  color: var(--sv-gray);
  max-width: 36em;
  margin: 0;
}
.sv-news-hero__banner {
  overflow: hidden;
  border-radius: 20px;
  line-height: 0;
  background: #dfe5f2;
  aspect-ratio: 4 / 3;
}
.sv-news-hero__banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}

.sv-news-list {
  padding: 48px 0 88px;
  background: var(--sv-bg);
}

.sv-news-featured {
  margin: 0 0 24px;
}
.sv-news-featured .row {
  margin-top: 24px;
}
.sv-news-featured .sv-card {
  height: 100%;
  background: #fff;
  border: 1px solid var(--sv-silver);
  border-radius: 16px;
  box-shadow: none;
  overflow: hidden;
}
.sv-news-featured .sv-card:hover {
  transform: none;
  box-shadow: var(--sv-shadow);
}
.sv-news-featured .sv-card__media {
  aspect-ratio: 16 / 10;
}
.sv-news-featured .sv-card__body {
  padding: 18px 20px 22px;
}
.sv-news-featured .sv-card__body .sv-tag {
  align-self: flex-start;
  width: auto;
  margin: 0 0 10px;
}
.sv-news-featured .sv-card .h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
  margin: 0 0 8px;
}
.sv-news-featured .sv-card .h3 a {
  color: var(--sv-blue);
}
.sv-news-featured .sv-card .b2 {
  font-size: 14px;
  line-height: 1.55;
  color: var(--sv-gray);
  margin: 0 0 12px;
}

.sv-news-feature {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 20px 28px;
  align-items: center;
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--sv-silver);
  padding: 16px;
}
.sv-news-feature__media {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  min-height: 0;
  border-radius: 16px;
  background: #dfe5f2;
}
.sv-news-feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}
.sv-news-feature__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 12px 20px 12px 4px;
}
.sv-news-feature__body .sv-tag {
  align-self: flex-start;
  width: auto;
  margin: 0 0 12px;
}
.sv-news-feature__title {
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 12px;
}
.sv-news-feature__title a {
  color: var(--sv-blue);
}
.sv-news-feature__body p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--sv-gray);
  margin: 0 0 18px;
}
@media (max-width: 767.98px) {
  .sv-news-feature {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 12px;
  }
  .sv-news-feature__media {
    aspect-ratio: 16 / 10;
  }
  .sv-news-feature__body {
    padding: 4px 8px 12px;
  }
}

/* Lưới 2 cột dưới — design: không khung trắng, ảnh bo 4 góc */
.sv-news-list #sv-news-latest-grid > [class*="col-"] > .sv-card,
.sv-news-list > .sv-container > .row > [class*="col-"] > .sv-card {
  height: 100%;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  padding: 0;
}
.sv-news-list #sv-news-latest-grid > [class*="col-"] > .sv-card:hover,
.sv-news-list > .sv-container > .row > [class*="col-"] > .sv-card:hover {
  transform: none;
  box-shadow: none;
}
.sv-news-list #sv-news-latest-grid .sv-card__media,
.sv-news-list > .sv-container > .row .sv-card__media {
  aspect-ratio: 16 / 10;
  border-radius: 20px;
  overflow: hidden;
  margin: 0 0 16px;
}
.sv-news-list #sv-news-latest-grid .sv-card__media img,
.sv-news-list > .sv-container > .row .sv-card__media img {
  border-radius: 20px;
}
.sv-news-list #sv-news-latest-grid .sv-card__body,
.sv-news-list > .sv-container > .row .sv-card__body {
  padding: 0;
}
.sv-news-list #sv-news-latest-grid .sv-card .h3,
.sv-news-list > .sv-container > .row .sv-card .h3 {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 10px;
}
.sv-news-list #sv-news-latest-grid .sv-card .h3 a,
.sv-news-list > .sv-container > .row .sv-card .h3 a {
  color: var(--sv-blue);
}
.sv-news-list #sv-news-latest-grid .sv-card .b2,
.sv-news-list > .sv-container > .row .sv-card .b2 {
  font-size: 14px;
  line-height: 1.55;
  color: var(--sv-gray);
  margin: 0 0 14px;
}
.sv-news-list #sv-news-latest-grid .sv-card .sv-tag,
.sv-news-list > .sv-container > .row .sv-card .sv-tag {
  margin: 0 0 12px;
}
.sv-news-list #sv-news-latest-grid .sv-card .sv-link,
.sv-news-list > .sv-container > .row .sv-card .sv-link {
  color: var(--sv-green);
}
.sv-news-list #sv-news-latest-grid .sv-card .sv-link:hover,
.sv-news-list > .sv-container > .row .sv-card .sv-link:hover {
  color: var(--sv-blue);
}

.sv-news-related,
.sv-news-latest {
  padding: 0;
  background: transparent;
}
.sv-news-related .sv-section__head,
.sv-news-latest .sv-section__head {
  margin-bottom: 28px;
}
.sv-news-related .sv-section__head .sv-kicker,
.sv-news-latest .sv-section__head .sv-kicker {
  margin: 0 0 12px;
  color: var(--sv-green);
}
.sv-news-related .sv-section__head h2,
.sv-news-latest .sv-section__head h2 {
  margin: 0;
  color: var(--sv-blue);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 600;
  line-height: 1.25;
}
.sv-news-related .sv-card,
.sv-news-latest .sv-card {
  height: 100%;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  padding: 0;
}
.sv-news-related .sv-card:hover,
.sv-news-latest .sv-card:hover {
  transform: none;
  box-shadow: none;
}
.sv-news-related .sv-card__media,
.sv-news-latest .sv-card__media {
  aspect-ratio: 16 / 10;
  border-radius: 20px;
  overflow: hidden;
  margin: 0 0 16px;
}
.sv-news-related .sv-card__media img,
.sv-news-latest .sv-card__media img {
  border-radius: 20px;
}
.sv-news-related .sv-card__body,
.sv-news-latest .sv-card__body {
  padding: 0;
}
.sv-news-related .sv-card .h3,
.sv-news-latest .sv-card .h3 {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 10px;
}
.sv-news-related .sv-card .sv-link,
.sv-news-latest .sv-card .sv-link {
  color: var(--sv-green);
}
.sv-news-related .sv-card__body .sv-tag,
.sv-news-latest .sv-card__body .sv-tag {
  display: inline-flex;
  width: auto;
  margin: 0 0 10px;
}
.sv-news-related .sv-card .h3,
.sv-news-latest .sv-card .h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
  margin: 0 0 8px;
}
.sv-news-related .sv-card .h3 a,
.sv-news-latest .sv-card .h3 a {
  color: var(--sv-blue);
}
.sv-news-related .sv-card .b2,
.sv-news-latest .sv-card .b2 {
  font-size: 14px;
  line-height: 1.55;
  color: var(--sv-gray);
  margin: 0 0 14px;
}
.sv-news-latest__more {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.sv-news-latest__more .sv-btn {
  min-width: 220px;
  padding: 12px 28px;
  border-radius: 10px;
}
.sv-news-latest__more .sv-btn[hidden] {
  display: none;
}
.sv-news-scroll {
  height: 1px;
  margin-top: 24px;
}
.sv-news-scroll__status {
  text-align: center;
  margin: 20px 0 0;
  font-size: 14px;
  color: var(--sv-gray);
}
.sv-news-list .sv-tag {
  text-decoration: none;
}
.sv-news-list a.sv-tag:hover {
  color: var(--sv-green);
}

/* News single — design/Tin tức - Vòng tuần hoàn… */
.sv-post-crumb {
  padding-top: 24px;
}
.sv-post-hero {
  padding: 8px 0 40px;
  background: #fff;
}
.sv-post-hero .sv-kicker {
  margin: 8px 0 14px;
  color: var(--sv-green);
}
.sv-post-hero h1 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--sv-blue);
  margin: 0 0 16px;
  max-width: 18em;
}
.sv-post-hero__lead {
  font-size: 17px;
  line-height: 1.6;
  color: var(--sv-gray);
  max-width: 42em;
  margin: 0 0 12px;
}
.sv-post-hero__date {
  margin: 0 0 28px;
  font-size: 14px;
  line-height: 1.4;
  color: #8a8f9c;
}
.sv-post-hero__media {
  overflow: hidden;
  border-radius: 16px;
  line-height: 0;
  background: #dfe5f2;
  aspect-ratio: 21 / 9;
}
.sv-post-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sv-post-main {
  padding: 8px 0 24px;
  background: #fff;
}
.sv-post-layout {
  display: grid;
  grid-template-columns: minmax(200px, 260px) minmax(0, 1fr);
  gap: 40px 56px;
  align-items: start;
}
.sv-post-layout--solo {
  grid-template-columns: 1fr;
  max-width: 860px;
}

.sv-post-toc {
  position: sticky;
  top: 96px;
  padding-left: 14px;
  border-left: 2px solid #e4e7ef;
}
.sv-post-toc__title {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--sv-blue);
}
.sv-post-toc__nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sv-post-toc__nav li + li {
  margin-top: 14px;
}
.sv-post-toc__item--h1 a {
  font-weight: 600;
  color: var(--sv-blue);
}
.sv-post-toc__item--h3 a {
  padding-left: 12px;
  font-size: 13px;
}
.sv-post-toc__nav a {
  position: relative;
  display: block;
  padding-left: 0;
  font-size: 14px;
  line-height: 1.45;
  color: var(--sv-gray);
  transition: color 0.15s ease;
}
.sv-post-toc__nav a:hover,
.sv-post-toc__nav a.is-active {
  color: var(--sv-green);
  font-weight: 600;
}
.sv-post-toc__nav a.is-active::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--sv-green);
}
.sv-post-toc__item--h3 a.is-active::before {
  left: -16px;
}

.sv-post-content {
  font-size: 16px;
  line-height: 1.7;
  color: var(--sv-gray);
}
.sv-post-content > *:first-child {
  margin-top: 0;
}
.sv-post-content h2 {
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 600;
  line-height: 1.3;
  color: var(--sv-blue);
  margin: 40px 0 16px;
  scroll-margin-top: 104px;
}
.sv-post-content h1 {
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 600;
  line-height: 1.3;
  color: var(--sv-blue);
  margin: 40px 0 16px;
  scroll-margin-top: 104px;
}
.sv-post-content h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--sv-blue);
  margin: 28px 0 10px;
  scroll-margin-top: 104px;
}
.sv-post-content p {
  margin: 0 0 16px;
}
.sv-post-content ul,
.sv-post-content ol {
  margin: 0 0 18px;
  padding-left: 1.2em;
}
.sv-post-content a {
  color: var(--sv-blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.sv-post-content .sv-post-figure,
.sv-post-content figure,
.sv-post-content .wp-block-image {
  margin: 28px 0;
  padding: 20px;
  background: #eef2f8;
  border-radius: 16px;
  overflow: hidden;
}
.sv-post-content .sv-post-figure img,
.sv-post-content figure img,
.sv-post-content .wp-block-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  margin: 0 auto;
}
.sv-post-content .sv-post-figure--bare,
.sv-post-content .sv-post-figure--bare img {
  padding: 0;
  background: transparent;
  border-radius: 16px;
}

.sv-post-dl {
  display: grid;
  gap: 22px;
  margin: 8px 0 28px;
}
.sv-post-dl__row {
  display: grid;
  grid-template-columns: minmax(120px, 180px) minmax(0, 1fr);
  gap: 16px 28px;
  align-items: start;
}
.sv-post-dl__row strong {
  font-size: 16px;
  font-weight: 600;
  color: var(--sv-blue);
  line-height: 1.45;
}
.sv-post-dl__row p {
  margin: 0;
  color: var(--sv-gray);
}

.sv-post-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 20px 0 28px;
}
.sv-post-card {
  background: var(--sv-bg);
  border-radius: 14px;
  padding: 22px 20px;
}
.sv-post-card h3 {
  margin: 0 0 10px;
}
.sv-post-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}

/* Blockquote = detail cards; cols 1/3 · 1/2 · 1/1 */
.sv-post-content blockquote {
  margin: 0 0 16px;
  padding: 22px 20px;
  background: var(--sv-bg);
  border: 0;
  border-radius: 14px;
  quotes: none;
  color: var(--sv-gray);
}
.sv-post-content blockquote::before,
.sv-post-content blockquote::after {
  content: none;
}
.sv-post-content blockquote > *:first-child {
  margin-top: 0;
}
.sv-post-content blockquote > *:last-child {
  margin-bottom: 0;
}
.sv-post-content blockquote p {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--sv-gray);
}
.sv-post-content blockquote p:last-child {
  margin-bottom: 0;
}
.sv-post-content blockquote strong,
.sv-post-content blockquote b {
  display: block;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--sv-blue);
  margin: 0 0 8px;
}
.sv-post-content blockquote p strong:only-child,
.sv-post-content blockquote p b:only-child {
  margin-bottom: 0;
}

.sv-cols,
.sv-post-content .sv-cols-1-1,
.sv-post-content .sv-cols-1-2,
.sv-post-content .sv-cols-1-3 {
  display: grid;
  gap: 16px;
  margin: 20px 0 28px;
}
.sv-cols-1-1 {
  grid-template-columns: 1fr;
}
.sv-cols-1-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.sv-cols-1-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.sv-cols .sv-post-card,
.sv-cols blockquote,
.sv-cols-1-1 blockquote,
.sv-cols-1-2 blockquote,
.sv-cols-1-3 blockquote {
  margin-bottom: 0;
  height: 100%;
}

.sv-post-callout {
  margin: 16px 0 28px;
  padding: 18px 22px;
  background: var(--sv-bg);
  border-radius: 0 12px 12px 0;
  border-left: 4px solid var(--sv-blue);
}
.sv-post-callout p {
  margin: 0;
}

.sv-post-note {
  margin: 24px 0 8px;
  padding: 24px 28px;
  background: var(--sv-bg);
  border-radius: 14px;
}
.sv-post-note h3 {
  margin: 0 0 8px;
}
.sv-post-note p {
  margin: 0;
}

.sv-news-related--single {
  padding: 48px 0 88px;
  background: #fff;
}

@media (max-width: 991.98px) {
  .sv-post-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .sv-post-toc {
    position: static;
    padding: 0 0 4px 14px;
  }
  .sv-post-hero__media {
    aspect-ratio: 16 / 9;
  }
  .sv-post-cards {
    grid-template-columns: 1fr;
  }
  .sv-cols-1-2,
  .sv-cols-1-3 {
    grid-template-columns: 1fr;
  }
  .sv-post-dl__row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

/* Filter pills */
.sv-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.sv-filters a {
  padding: 8px 14px;
  border-radius: var(--sv-radius-pill);
  background: #eef0f5;
  color: var(--sv-slate);
  font-size: 13px;
  font-weight: 600;
}
.sv-filters a.is-active,
.sv-filters a:hover {
  background: var(--sv-green);
  color: #fff;
}

.sv-da-hero {
  padding: 8px 0 64px;
  background: #fff;
}
.sv-da-hero .sv-kicker {
  margin: 30px 0 12px;
  color: var(--sv-green);
}
.sv-da-hero h1 {
  font-family: var(--sv-font);
  font-size: clamp(32px, 4.2vw, 42px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -2px;
  color: var(--sv-blue);
  margin: 0 0 12px;
  max-width: 14em;
}
.sv-da-hero__capacity {
  font-size: 16px;
  line-height: 1.5;
  color: var(--sv-gray);
  margin: 0 0 20px;
}
.sv-da-hero__media {
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 16 / 16;
  max-height: 340px;
  width: 100%;
  background: #dfe5f2;
}
.sv-da-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sv-da-hero__facts {
  margin: 0 0 28px;
  padding: 20px 0 0;
  border-top: 1px solid #e6e8ee;
}
.sv-da-hero__fact {
  display: grid;
  grid-template-columns: minmax(120px, 150px) minmax(0, 1fr);
  gap: 8px 16px;
  align-items: baseline;
  margin: 0 0 14px;
}
.sv-da-hero__fact:last-child {
  margin-bottom: 0;
}
.sv-da-hero__fact dt {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
  color: var(--sv-navy);
}
.sv-da-hero__fact dd {
  margin: 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.45;
  color: var(--sv-gray);
}
.sv-da-hero__fact-client {
  font-weight: 700;
  color: var(--sv-blue);
}
@media (max-width: 575.98px) {
  .sv-da-hero__fact {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

.sv-da-gallery {
  padding: 72px 0 80px;
  background: #fff;
  border-top: 1px solid #e6e8ee;
}
.sv-da-gallery .sv-kicker {
  margin: 0 0 12px;
  color: var(--sv-green);
}
.sv-da-gallery h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  line-height: 1.25;
  color: var(--sv-blue);
  margin: 0 0 32px;
}
.sv-da-gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.sv-da-gallery__item {
  display: block;
  overflow: hidden;
  border-radius: 16px;
  background: #dfe5f2;
  aspect-ratio: 16 / 10;
}
.sv-da-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 767.98px) {
  .sv-da-gallery__grid {
    grid-template-columns: 1fr;
  }
}

.sv-da-related {
  padding: 72px 0 88px;
  background: #fff;
  border-top: 1px solid #e6e8ee;
}
.sv-da-related .sv-kicker {
  margin: 0 0 12px;
  color: var(--sv-green);
}
.sv-da-related h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  line-height: 1.25;
  color: var(--sv-blue);
  margin: 0 0 32px;
}

/* CTA */
.sv-cta {
  text-align: center;
  padding: 64px 0;
  background: var(--sv-blue);
  color: #fff;
}
.sv-cta h2 {
  color: #fff;
  margin-bottom: 12px;
}
.sv-cta p {
  opacity: 0.9;
  margin-bottom: 22px;
}
.sv-cta__phone {
  border-radius: var(--sv-radius-pill);
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 700;
}
.sv-cta__phone .bi {
  font-size: 15px;
}
.sv-cta--ops h2 {
  max-width: 14em;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.25;
}
.sv-cta--ops p {
  max-width: 36em;
  margin-left: auto;
  margin-right: auto;
  opacity: 1;
}
.sv-tb-hero {
  padding: 8px 0 24px;
}
.sv-tb-hero .sv-kicker {
  margin: 30px 0 12px;
  color: var(--sv-green);
}
.sv-tb-hero h1 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--sv-blue);
  margin: 0 0 16px;
}
.sv-tb-hero__lead {
  font-size: 16px;
  line-height: 26px;
  color: var(--sv-gray);
  max-width: 44em;
  margin: 0 0 32px;
}
.sv-tb-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  align-items: center;
  margin: 0;
}
.sv-tb-filters a {
  font-size: 16px;
  font-weight: 500;
  color: var(--sv-gray);
  padding: 4px 0;
  border-bottom: 2px solid transparent;
}
.sv-tb-filters a:hover,
.sv-tb-filters a.is-active {
  color: var(--sv-blue);
  font-weight: 600;
  border-bottom-color: var(--sv-blue);
}
.sv-tb-grid {
  padding: 16px 0 80px;
}
.sv-tb-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border: 1px solid var(--sv-silver);
  border-radius: 16px;
  overflow: hidden;
}
.sv-tb-card__media {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #dfe5f2;
}
.sv-tb-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.35s ease;
}
.sv-tb-card:hover .sv-tb-card__media img {
  transform: scale(1.04);
}
.sv-tb-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 16px 18px 18px;
}
.sv-tb-card__body .sv-tag {
  align-self: flex-start;
  width: auto;
  margin: 0 0 10px;
}
.sv-tb-card__title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
  margin: 0 0 8px;
}
.sv-tb-card__title a {
  color: var(--sv-blue);
}
.sv-tb-card__body p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--sv-gray);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.sv-tb-card__link {
  margin-top: auto;
  padding-top: 12px;
}
.sv-ops-bar {
  background: #e8f0fa;
  border-radius: var(--sv-radius);
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

/* Footer */
.sv-footer {
  background: var(--sv-navy);
  color: rgba(255, 255, 255, 0.78);
  padding-top: 64px;
}
.sv-footer a {
  color: rgba(255, 255, 255, 0.78);
}
.sv-footer a:hover {
  color: #fff;
}
.sv-footer__about {
  font-size: 14px;
  line-height: 1.7;
  margin: 0 0 20px;
  max-width: 380px;
}
.sv-footer__meta p {
  font-size: 14px;
  line-height: 1.7;
  margin: 0 0 6px;
}
.sv-footer__meta p:last-child {
  margin-bottom: 0;
}
.sv-footer__meta a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.sv-footer__meta a:hover {
  color: #fff;
}
.sv-footer h4 {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 8px 0 18px;
}
.sv-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sv-footer li {
  margin-bottom: 12px;
}
.sv-footer li a {
  font-size: 14px;
  font-weight: 400;
}
.sv-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 48px;
  padding: 18px 0 24px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.sv-tabbar {
  display: none;
}

/* Modal form */
.sv-modal .modal-content {
  border-radius: 16px;
  border: 0;
}
.sv-modal .form-control {
  border-radius: 10px;
  padding: 12px 14px;
}
.sv-modal .form-label {
  font-weight: 600;
  font-size: 14px;
  color: var(--sv-slate);
}
.sv-form-msg {
  display: none;
  margin-top: 12px;
  font-size: 14px;
}
.sv-form-msg.is-ok {
  color: var(--sv-green);
  display: block;
}
.sv-form-msg.is-err {
  color: #b32d2e;
  display: block;
}

/* Product detail */
.sv-breadcrumb {
  background: #f3f5f9;
  padding: 12px 0;
  font-size: 13px;
  color: var(--sv-slate);
}
.sv-breadcrumb a {
  color: var(--sv-slate);
}

/* Animations */
@keyframes sv-fade-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.sv-animate {
  animation: sv-fade-up 0.6s ease both;
}
.sv-animate-delay-1 {
  animation-delay: 0.1s;
}
.sv-animate-delay-2 {
  animation-delay: 0.2s;
}
@media (prefers-reduced-motion: reduce) {
  .sv-animate,
  .sv-reveal,
  .sv-home-hero__card {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

.sv-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--sv-d, 0ms);
}
.sv-reveal--left {
  transform: translateX(-36px);
}
.sv-reveal--right {
  transform: translateX(36px);
}
.sv-reveal.is-in {
  opacity: 1;
  transform: none;
}

@keyframes sv-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* ========== HOME PAGE ========== */
.sv-home-hero {
  padding: 48px 0 32px;
  background: #fff;
}
@media (max-width: 991.98px) {
  .sv-home-hero .row {
    display: flex;
    flex-direction: column;
  }
  .sv-home-hero__media-col {
    order: -1 !important;
  }
  .sv-home-hero__copy {
    order: 2 !important;
    text-align: center;
  }
  .sv-home-hero__copy .sv-kicker {
    display: none;
  }
  .sv-home-hero__title {
    text-align: center;
  }
  .sv-home-hero__lead {
    margin-left: auto;
    margin-right: auto;
  }
  .sv-home-hero__actions {
    justify-content: center;
  }
}
@media (min-width: 992px) {
  .sv-home-hero__copy {
    order: 1 !important;
  }
  .sv-home-hero__media-col {
    order: 2 !important;
  }
}
.sv-home-hero__title {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 700;
  line-height: 1.12;
  color: var(--sv-blue);
  margin: 0;
}
.sv-home-hero__lead {
  font-size: 18px;
  line-height: 1.65;
  color: var(--sv-gray);
  margin: 20px 0 0;
  max-width: 520px;
}
.sv-home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.sv-home-hero__visual {
  position: relative;
  max-width: 520px;
  margin-inline: auto;
}
.sv-home-hero__banner {
  width: 100%;
  height: auto;
  display: block;
}
.sv-home-hero__card {
  position: absolute;
  left: 8px;
  bottom: 18%;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 10px 28px rgba(14, 40, 108, 0.14);
  max-width: 230px;
  animation: sv-float 4.5s ease-in-out 0.8s infinite;
}
.sv-home-hero__card-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 10px;
  background: #eaf2ea;
  color: var(--sv-green);
  display: grid;
  place-items: center;
  font-size: 18px;
}
.sv-home-hero__card strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--sv-blue);
  line-height: 1.3;
}
.sv-home-hero__card > div span {
  display: block;
  font-size: 12px;
  color: var(--sv-gray);
  line-height: 1.35;
}

.sv-edge-lines {
  position: relative;
}
.sv-edge-lines::before,
.sv-edge-lines::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--sv-silver);
  pointer-events: none;
}
.sv-edge-lines::before {
  top: 0;
  box-shadow: 0 4px 10px rgba(14, 40, 108, 0.12);
}
.sv-edge-lines::after {
  bottom: 0;
  box-shadow: 0 -4px 10px rgba(14, 40, 108, 0.12);
}
.sv-edge-line-bottom {
  position: relative;
}
.sv-edge-line-bottom::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--sv-silver);
  box-shadow: 0 -4px 10px rgba(14, 40, 108, 0.12);
  pointer-events: none;
}
.sv-home-stats {
  padding: 36px 0;
  margin: 0 0 24px;
}
.sv-home-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.sv-home-stats__item {
  text-align: center;
  padding: 8px 12px;
}
.sv-home-stats__icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 10px;
  color: var(--sv-green);
  display: grid;
  place-items: center;
  font-size: 26px;
}
.sv-home-stats__icon .sv-icon-svg[src*="users.svg"] {
  width: 1.7em;
  height: 1em;
}
.sv-home-stats__title {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--sv-blue);
  margin-bottom: 4px;
}
.sv-home-stats__text {
  display: block;
  font-size: 13px;
  color: var(--sv-slate);
  line-height: 1.45;
}

.sv-home-about__row {
  align-items: flex-start;
}
.sv-home-about__media {
  position: relative;
  display: block;
  height: fit-content;
  line-height: 0;
  background: transparent;
  border-radius: 20px;
  box-shadow: 0 12px 32px rgba(14, 40, 108, 0.12);
}
.sv-home-about__media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  transform: translateZ(0);
}
.sv-home-about__copy {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0;
}
.sv-home-about__title {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 600;
  color: var(--sv-blue);
  margin: 0 0 16px;
  line-height: 1.25;
  max-width: 18ch;
}
.sv-home-about__text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--sv-gray);
  margin: 0;
}
.sv-checks--home {
  margin-top: 28px;
}
.sv-checks--home li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding-left: 0;
  margin-bottom: 14px;
  color: var(--sv-gray);
}
.sv-checks--home li::before {
  content: none;
}
.sv-checks__icon {
  color: var(--sv-green);
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 1px;
}
.sv-home-about__cta {
  align-self: flex-start;
  margin-top: 28px;
  border-radius: 12px;
  padding: 12px 20px;
}
.sv-link--arrow {
  font-weight: 600;
}

.sv-service-card {
  background: #fff;
  border: 1px solid rgba(197, 198, 210, 0.65);
  border-radius: var(--sv-radius);
  padding: 24px 22px 22px;
  height: 100%;
  box-shadow: 0 2px 12px rgba(14, 40, 108, 0.04);
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}
.sv-service-card:hover {
  box-shadow: var(--sv-shadow);
  transform: translateY(-2px);
}
.sv-service-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #eaf2ea;
  color: var(--sv-green);
  margin-bottom: 16px;
  display: grid;
  place-items: center;
  font-size: 22px;
}
.sv-service-card__title {
  font-size: 20px;
  font-weight: 600;
  color: var(--sv-blue);
  margin: 0 0 10px;
  line-height: 1.35;
}
.sv-service-card__text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--sv-gray);
  margin: 0 0 16px;
  min-height: 66px;
}
.sv-service-card__link {
  color: var(--sv-green);
}

.sv-home-industries .sv-section__head h2 {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 600;
  color: var(--sv-blue);
  margin: 0;
}
.sv-industry-card {
  background: #fff;
  border: 1px solid var(--sv-silver);
  border-radius: 14px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 8px 24px rgba(14, 40, 108, 0.06);
  transition: box-shadow 0.2s;
  cursor: default;
}
.sv-industry-card:hover {
  box-shadow: 0 12px 28px rgba(14, 40, 108, 0.1);
}
.sv-industry-card__link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}
.sv-industry-card__media {
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: #dfe5f2;
}
.sv-industry-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.sv-industry-card:hover .sv-industry-card__media img {
  transform: scale(1.04);
}
.sv-industry-card__body {
  padding: 18px 18px 22px;
}
.sv-industry-card__body h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--sv-blue);
  margin: 0 0 8px;
  line-height: 1.4;
  letter-spacing: 0;
}
.sv-industry-card__body p {
  font-size: 13px;
  color: var(--sv-gray);
  margin: 0;
  line-height: 1.55;
}

.sv-home-process {
  background: #fff;
  padding: 88px 0 96px;
}
.sv-home-process .sv-kicker__dash {
  background: currentColor;
}
.sv-home-process .sv-section__head {
  margin-bottom: 48px;
}
.sv-home-process .sv-section__head h2 {
  max-width: 14em;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.25;
  color: var(--sv-blue);
}
.sv-home-process__track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px 16px;
  position: relative;
}
.sv-home-process__track::before {
  content: "";
  position: absolute;
  top: 31px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: var(--sv-silver);
  z-index: 0;
}
.sv-home-process__step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.sv-home-process__num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid var(--sv-silver);
  background: #fff;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  font-size: 18px;
  font-weight: 700;
  color: var(--sv-blue);
  letter-spacing: 0.02em;
}
.sv-home-process__step h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--sv-blue);
  margin: 0 0 10px;
  line-height: 33.6px;
  letter-spacing: 0;
}
.sv-home-process__step p {
  font-size: 16px;
  font-weight: 400;
  color: var(--sv-gray);
  margin: 0 auto;
  line-height: 26px;
  max-width: 240px;
}
.sv-about-process {
  background: #fff;
  padding: 80px 0;
}
.sv-about-process .sv-section__head {
  margin-bottom: 48px;
}
.sv-about-process .sv-section__head h2 {
  font-weight: 700;
  color: var(--sv-blue);
}
.sv-about-process .sv-home-process__step p {
  color: var(--sv-slate);
}

.sv-tag--blue {
  background: #eaf1fb;
  color: var(--sv-blue);
  font-size: 11px;
  letter-spacing: 0.04em;
}
.sv-home-projects__all {
  border-radius: 12px;
  padding: 10px 18px;
  flex-shrink: 0;
}
.sv-home-projects .sv-section__head--row {
  align-items: center;
}
.sv-project-card {
  background: #fff;
  border: 1px solid var(--sv-silver);
  border-radius: 14px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 6px 20px rgba(14, 40, 108, 0.05);
}
.sv-project-card__media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #dfe5f2;
}
.sv-project-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.sv-project-card:hover .sv-project-card__media img {
  transform: scale(1.04);
}
.sv-project-card__body {
  padding: 16px 18px 20px;
}
.sv-project-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.sv-project-card__meta .sv-tag {
  margin: 0;
}
.sv-project-card__loc {
  font-size: 13px;
  font-weight: 500;
  color: var(--sv-gray);
}
.sv-project-card__title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px;
  line-height: 1.35;
}
.sv-project-card__title a {
  color: var(--sv-blue);
}
.sv-project-card__client {
  font-size: 13px;
  color: var(--sv-gray);
  margin: 0;
  line-height: 1.45;
}

.sv-home-products .sv-section__head h2 {
  max-width: 16em;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.25;
}
.sv-product-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--sv-silver);
  border-radius: 14px;
  padding: 22px 20px 20px;
  height: 100%;
  text-align: center;
  box-shadow: 0 6px 18px rgba(14, 40, 108, 0.04);
}
.sv-product-card__icon {
  width: 100%;
  aspect-ratio: 1;
  height: auto;
  margin: 0 0 20px;
  border-radius: 16px;
  border: 0;
  background: #eceef2;
  color: #5a6270;
  display: grid;
  place-items: center;
  font-size: 42px;
}
.sv-product-card__icon .sv-icon-svg {
  width: 42%;
  height: auto;
  max-width: 80px;
  display: block;
}
.sv-product-card__image {
  display: none;
}
.sv-product-card.has-icon .sv-product-card__image {
  display: none;
}
.sv-product-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--sv-blue);
  margin: 0 0 10px;
  line-height: 1.4;
  letter-spacing: 0;
}
.sv-product-card p {
  font-size: 14px;
  color: var(--sv-gray);
  margin: 0 0 16px;
  line-height: 1.55;
}
.sv-product-card__link {
  color: var(--sv-green);
  margin-top: auto;
  align-self: flex-start;
}

.sv-home-why__visual {
  position: relative;
  padding-bottom: 12px;
}
.sv-home-why__media {
  display: block;
  height: fit-content;
  line-height: 0;
  background: transparent;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--sv-shadow);
}
.sv-home-why__media img {
  width: 100%;
  height: auto;
  display: block;
}
.sv-home-why__overlay {
  position: absolute;
  right: -28px;
  bottom: 28px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  max-width: 260px;
  background: var(--sv-blue);
  color: #fff;
  padding: 16px 18px;
  border-radius: 12px;
  line-height: 1.35;
  box-shadow: 0 10px 24px rgba(14, 40, 108, 0.22);
}
.sv-home-why__overlay-icon {
  flex-shrink: 0;
  font-size: 28px;
  line-height: 1;
  color: #fff;
  display: grid;
  place-items: center;
}
.sv-home-why__overlay strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.sv-home-why__overlay p {
  margin: 0;
  font-size: 13px;
  font-weight: 400;
  opacity: 0.92;
  line-height: 1.4;
}
.sv-home-why__title {
  font-size: clamp(26px, 3vw, 40px);
  margin: 0 0 28px;
  color: var(--sv-blue);
}
.sv-home-why__item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}
.sv-home-why__item-icon {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #eef6ee;
  color: var(--sv-green);
  display: grid;
  place-items: center;
  font-size: 28px;
}
.sv-home-why__item h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--sv-blue);
  margin: 0 0 6px;
  line-height: 33.6px;
  letter-spacing: 0;
}
.sv-home-why__item p {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--sv-gray);
  margin: 0;
  line-height: 1.55;
}

.sv-home-ops {
  padding: 0 0 56px;
  background: #fff;
}
.sv-home-ops__inner {
  background: #e8f0fa;
  border-radius: var(--sv-radius);
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.sv-home-ops__content {
  display: flex;
  align-items: center;
  gap: 16px;
}
.sv-home-ops__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--sv-blue);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 22px;
  flex-shrink: 0;
}
.sv-home-ops__icon .sv-icon-svg,
.sv-home-ops__icon svg {
  width: 24px;
  height: 24px;
  display: block;
}
.sv-home-ops__content h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--sv-blue);
  margin: 0 0 4px;
}
.sv-home-ops__content p {
  font-size: 14px;
  color: var(--sv-gray);
  margin: 0;
}

@media (max-width: 991.98px) {
  body {
    padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px));
  }
  .sv-kicker {
    font-size: 11px;
    letter-spacing: 0.06em;
    gap: 8px;
  }
  .sv-kicker__dash {
    width: 1.6em;
  }
  .sv-home-hero {
    padding: 28px 0 20px;
  }
  .sv-home-hero__title {
    font-size: clamp(24px, 7vw, 36px);
    text-wrap: balance;
  }
  .sv-home-hero__lead {
    font-size: 15px;
    margin-top: 12px;
    max-width: none;
    text-wrap: pretty;
  }
  .sv-home-hero__actions {
    flex-direction: column;
    align-items: stretch;
    margin-top: 20px;
  }
  .sv-home-hero__actions .sv-btn {
    width: 100%;
    justify-content: center;
    white-space: nowrap;
  }
  .sv-section {
    padding: 48px 0;
  }
  .sv-home-process,
  .sv-about-process {
    padding: 32px 0 40px;
  }
  .sv-home-process .sv-section__head,
  .sv-about-process .sv-section__head {
    margin-bottom: 24px;
  }
  .sv-home-process .sv-kicker,
  .sv-about-process .sv-kicker {
    margin: 0 0 8px;
  }
  .sv-home-stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sv-home-process__track {
    grid-template-columns: repeat(2, 1fr);
  }
  .sv-home-process__track::before {
    display: none;
  }
  .sv-home-about__copy {
    height: auto;
    padding: 0;
  }
  .sv-home-about__title {
    max-width: none;
    text-wrap: balance;
  }
  .sv-home-why__overlay {
    right: 16px;
  }
  .sv-cta h2 {
    text-wrap: balance;
  }
  .sv-cta p {
    text-wrap: pretty;
  }
  .sv-logo--footer img {
    width: 220px;
  }
  .sv-tabbar {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1020;
    align-items: stretch;
    justify-content: space-around;
    gap: 0;
    background: #fff;
    border-top: 1px solid rgba(197, 198, 210, 0.55);
    padding: 6px 4px calc(6px + env(safe-area-inset-bottom, 0px));
    box-shadow: 0 -6px 20px rgba(14, 40, 108, 0.08);
  }
  .sv-tabbar__item {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 6px 2px;
    color: var(--sv-slate);
    font-size: 11px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    white-space: nowrap;
  }
  .sv-tabbar__item .bi {
    font-size: 20px;
    line-height: 1;
  }
  .sv-tabbar__item:hover,
  .sv-tabbar__item.is-active {
    color: var(--sv-blue);
  }
  .sv-footer__bottom {
    padding-bottom: 16px;
  }
}
@media (max-width: 575.98px) {
  .sv-home-stats__grid {
    grid-template-columns: 1fr 1fr;
  }
  .sv-home-process__track {
    grid-template-columns: 1fr;
  }
  .sv-home-process__track::before {
    display: none;
  }
  .sv-home-hero__card {
    max-width: 200px;
    padding: 10px 12px;
    bottom: 12%;
  }
}

/* ========== ABOUT PAGE ========== */
.sv-about-hero {
  padding: 48px 0 0;
  background: #fff;
}
.sv-about-hero__inner {
  text-align: center;
}
.sv-about-hero__content {
  max-width: 860px;
  margin: 0 auto 36px;
}
.sv-about-hero__content .sv-kicker {
  justify-content: center;
  color: var(--sv-green);
}
.sv-about-hero__content h1 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--sv-blue);
  margin: 12px 0 0;
  text-wrap: balance;
}
.sv-about-hero__content p:not(.sv-kicker) {
  font-size: 18px;
  line-height: 1.65;
  color: var(--sv-gray);
  margin: 20px auto 0;
  max-width: 640px;
  text-wrap: pretty;
}
.sv-about-hero__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.sv-about-hero__media {
  border-radius: 16px;
  box-shadow: var(--sv-shadow);
  max-width: 100%;
  line-height: 0;
}
.sv-about-hero__media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  transform: translateZ(0);
}

.sv-about-intro {
  background: #f4f8fb;
  padding: 64px 0;
}
.sv-about-intro__card {
  max-width: 860px;
  margin: 0 auto;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}
.sv-about-intro__card h2 {
  font-size: 40px;
  font-weight: 600;
  color: var(--sv-blue);
  margin: 0 0 20px;
  line-height: 1.2;
}
.sv-about-intro__text p {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--sv-gray);
  margin: 0 0 16px;
}
.sv-about-intro__text p:last-child {
  margin-bottom: 0;
}
.sv-about-quote {
  margin: 28px 0 0;
  padding: 12px 0 12px 16px;
  background: transparent;
  border: 0;
  border-left: 3px solid var(--sv-blue);
  border-radius: 0;
  font-size: 24px;
  font-weight: 700;
  font-style: italic;
  color: var(--sv-blue);
  line-height: 1.55;
}
.sv-about-quote::before {
  content: "“";
}
.sv-about-quote::after {
  content: "”";
}

.sv-about-fields {
  background: #fff;
}
.sv-about-fields .sv-section__head {
  margin-bottom: 40px;
}
.sv-about-fields .sv-section__head .sv-kicker {
  margin: 0 0 10px;
}
.sv-about-fields .sv-section__head h2 {
  margin: 0;
  font-weight: 600;
  color: var(--sv-blue);
}
.sv-about-field {
  background: #fff;
  border: 1px solid #e6e8ee;
  border-radius: 16px;
  padding: 32px 28px 28px;
  height: 100%;
  text-align: left;
  box-shadow: none;
}
.sv-about-field__icon {
  width: auto;
  height: auto;
  margin: 0 0 22px;
  color: var(--sv-green);
  display: flex;
  align-items: center;
  font-size: 32px;
  line-height: 1;
}
.sv-about-field__icon .sv-icon-svg {
  width: 32px;
  height: 32px;
  display: block;
  object-fit: contain;
}
.sv-about-field__icon .sv-icon-svg[src*="users.svg"] {
  width: 52px;
  height: 32px;
}
.sv-about-field h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--sv-blue);
  margin: 0 0 16px;
  line-height: 33.6px;
  letter-spacing: 0;
}
.sv-about-field ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sv-about-field li {
  padding: 0;
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 400;
  color: var(--sv-gray);
  line-height: 26px;
}
.sv-about-field li:last-child {
  margin-bottom: 0;
}
.sv-about-field li::before {
  display: none;
}

.sv-about-history {
  padding: 80px 0;
  background: var(--sv-navy);
  color: #fff;
}
.sv-about-history .sv-kicker {
  color: #fff;
}
.sv-about-history h2 {
  color: #fff;
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 700;
  line-height: 1.25;
  margin: 12px 0 0;
  max-width: 14em;
  text-wrap: balance;
}
.sv-about-timeline {
  list-style: none;
  margin: 0;
  padding: 0 0 0 8px;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}
.sv-about-timeline__item {
  position: relative;
  padding: 0 0 36px 32px;
}
.sv-about-timeline__item:last-child {
  padding-bottom: 0;
}
.sv-about-timeline__dot {
  position: absolute;
  left: -6px;
  top: 10px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.18);
}
.sv-about-timeline__item.is-current .sv-about-timeline__dot {
  background: var(--sv-green);
  box-shadow:
    0 0 0 6px rgba(50, 100, 45, 0.4),
    0 0 18px rgba(50, 100, 45, 0.65);
}
.sv-about-timeline__year {
  display: block;
  font-size: clamp(26px, 3vw, 32px);
  font-weight: 700;
  letter-spacing: 0;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 6px;
}
.sv-about-timeline__body strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.sv-about-timeline__body p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
}

.sv-about-info {
  background: #f5f7fb;
}
.sv-about-info__intro {
  padding: 28px 32px;
  border: 1.5px dashed #7a9ad4;
  border-radius: 4px;
  background: transparent;
}
.sv-about-info__intro .sv-kicker {
  margin: 0 0 14px;
}
.sv-about-info h2 {
  font-family: var(--sv-font);
  font-size: clamp(32px, 4.2vw, 42px);
  font-weight: 700;
  color: var(--sv-blue);
  line-height: 1.25;
  letter-spacing: -2px;
  margin: 0;
  max-width: 10em;
}
.sv-about-info__list {
  height: 100%;
  margin: 0;
  padding: 28px 32px;
  border: 1.5px dashed #7a9ad4;
  border-radius: 4px;
  background: #fff;
}
.sv-about-info__row {
  display: grid;
  grid-template-columns: minmax(140px, 200px) minmax(0, 1fr);
  gap: 12px 28px;
  align-items: baseline;
  margin: 0;
  padding: 16px 0;
  border-bottom: 1px solid #e2e6ef;
  font-size: 15px;
}
.sv-about-info__row:first-child {
  padding-top: 0;
}
.sv-about-info__row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.sv-about-info__label {
  margin: 0;
  color: var(--sv-blue);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.5;
}
.sv-about-info__value {
  margin: 0;
  color: var(--sv-blue);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.55;
}

.sv-about-commit {
  background: #fff;
}
.sv-about-commit .sv-section__head h2 {
  font-weight: 700;
  color: var(--sv-blue);
  max-width: 18em;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}
.sv-about-commit__lead {
  max-width: 640px;
  margin: 12px auto 36px;
  font-size: 16px;
  color: var(--sv-gray);
  line-height: 1.65;
  text-align: center;
}
.sv-about-commit__card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 32px 22px 28px;
  height: 100%;
  text-align: center;
  box-shadow: none;
}
.sv-about-commit__icon .sv-icon-svg {
  width: 36px;
  height: 36px;
  display: block;
  object-fit: contain;
}
.sv-about-commit__icon .sv-icon-svg[src*="handshake.svg"] {
  width: 40px;
  height: 40px;
}
.sv-about-commit__icon {
  width: auto;
  height: auto;
  margin: 0 auto 16px;
  background: transparent;
  color: var(--sv-green);
  display: grid;
  place-items: center;
  font-size: 36px;
  line-height: 1;
}
.sv-about-commit__card h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--sv-blue);
  margin: 0 0 10px;
  line-height: 33.6px;
  letter-spacing: 0;
  text-align: center;
}
.sv-about-commit__card p {
  font-size: 16px;
  font-weight: 400;
  color: var(--sv-gray);
  margin: 0;
  line-height: 26px;
}

@media (max-width: 767.98px) {
  .sv-about-hero {
    padding: 28px 0 0;
  }
  .sv-about-hero__content {
    margin-bottom: 24px;
  }
  .sv-about-hero__content h1 {
    font-size: clamp(24px, 7vw, 32px);
  }
  .sv-about-hero__content p:not(.sv-kicker) {
    font-size: 15px;
    margin-top: 12px;
    max-width: none;
  }
  .sv-about-hero__actions {
    flex-direction: column;
    align-items: stretch;
    margin-top: 20px;
  }
  .sv-about-hero__actions .sv-btn {
    width: 100%;
    justify-content: center;
    white-space: nowrap;
  }
  .sv-about-intro__card {
    padding: 0;
  }
  .sv-about-intro__card h2 br {
    display: none;
  }
  .sv-about-intro__card h2 {
    font-size: 26px;
  }
  .sv-about-intro__card h2,
  .sv-about-info h2,
  .sv-about-commit h2 {
    text-wrap: balance;
  }
  .sv-about-info h2 {
    max-width: none;
    letter-spacing: -1px;
  }
  .sv-about-info__intro,
  .sv-about-info__list {
    padding: 22px 20px;
  }
  .sv-about-info__row {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 14px 0;
  }
}

/* ========== DỊCH VỤ ARCHIVE (design/dich-vu/Dịch vụ.jpg) ========== */
.sv-dv-hero {
  padding: 80px 0 88px;
  background: #fff;
}
.sv-dv-hero h1 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--sv-blue);
  margin: 0 0 18px;
  max-width: 14ch;
}
.sv-dv-hero__lead {
  font-size: 16px;
  line-height: 26px;
  color: var(--sv-gray);
  margin: 0 0 32px;
  max-width: 36em;
}
.sv-dv-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.sv-dv-hero__visual {
  container-type: inline-size;
  position: relative;
  width: 100%;
  max-width: 621.4px;
  aspect-ratio: 621.4 / 512.3;
  margin-left: auto;
}
.sv-dv-hero__cluster {
  position: absolute;
  top: 0;
  left: 0;
  width: 621.4px;
  height: 512.3px;
  transform: scale(calc(100cqi / 621.4px));
  transform-origin: top left;
}
.sv-dv-hero__orb {
  position: absolute;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 18px 42px rgba(90, 72, 140, 0.18);
}
.sv-dv-hero__orb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sv-dv-hero__orb--lg {
  width: 492.94px;
  height: 492.94px;
  left: 128.46px;
  top: 0;
  border-radius: 600px;
  z-index: 1;
}
.sv-dv-hero__orb--md {
  width: 270px;
  height: 270px;
  left: 0;
  top: 81.8px;
  border: 6px solid #fff;
  border-radius: 400px;
  z-index: 2;
}
.sv-dv-hero__orb--sm {
  width: 200px;
  height: 200px;
  left: 401.83px;
  top: 312.3px;
  border: 6px solid #fff;
  border-radius: 100px;
  z-index: 2;
}
.sv-dv-hero__float {
  position: absolute;
  left: 39.93px;
  top: 302.7px;
  width: 279px;
  height: 82px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: #fff;
  border: 1px solid #e8eaed;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(14, 40, 108, 0.14);
  box-sizing: border-box;
  white-space: nowrap;
}
.sv-dv-hero__float-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--sv-green);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 20px;
}
.sv-dv-hero__float strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--sv-navy);
  line-height: 1.25;
}
.sv-dv-hero__float span:last-child {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: var(--sv-gray);
  line-height: 1.35;
  margin-top: 2px;
}

.sv-dv-cats {
  background: #f5f7fb;
}
.sv-dv-cats .sv-section__head h2 {
  color: var(--sv-blue);
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 12px;
}
.sv-dv-cats__lead {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--sv-gray);
  margin: 0 auto;
  max-width: 36em;
}
.sv-dv-cat {
  background: #fff;
  border: 1px solid #e6e8ee;
  border-radius: 16px;
  padding: 32px 28px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.sv-dv-cat__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: #e8f0fa;
  color: var(--sv-blue);
  display: grid;
  place-items: center;
  font-size: 24px;
  margin: 0 0 20px;
}
.sv-dv-cat h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--sv-blue);
  margin: 0 0 12px;
  line-height: 33.6px;
}
.sv-dv-cat p {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--sv-gray);
  margin: 0 0 20px;
  flex: 1;
}
.sv-dv-cat__links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.sv-dv-cat .sv-link {
  color: var(--sv-green);
  font-size: 16px;
  font-weight: 600;
}

.sv-dv-water {
  padding: 80px 0;
  background: var(--sv-navy);
  color: #fff;
}
.sv-dv-water .sv-kicker {
  color: var(--sv-green);
  justify-content: center;
}
.sv-dv-water .sv-section__head {
  margin-bottom: 40px;
  text-align: center;
}
.sv-dv-water .sv-section__head h2 {
  color: #fff;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 12px;
}
.sv-dv-water__lead {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 auto;
  max-width: 36em;
}
.sv-dv-water__card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 36px 28px 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.sv-dv-water__card h3 {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 24px;
  line-height: 1.35;
}
.sv-dv-water__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}
.sv-dv-water__tags span {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  font-size: 14px;
  color: #fff;
}
.sv-dv-water__link {
  margin-top: auto;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}

.sv-dv-waste {
  padding: 80px 0;
  background: #fff;
}
.sv-dv-waste__intro .sv-kicker {
  margin: 30px 0;
  color: var(--sv-green);
}
.sv-dv-waste__intro h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--sv-blue);
  margin: 0 0 16px;
}
.sv-dv-waste__intro p:not(.sv-kicker) {
  font-size: 16px;
  line-height: 26px;
  color: var(--sv-gray);
  margin: 0;
  max-width: 34em;
}
.sv-dv-waste__card {
  background: #fff;
  border: 1px solid #e6e8ee;
  border-radius: 16px;
  padding: 32px 28px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.sv-dv-waste__card h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 33.6px;
  color: var(--sv-blue);
  margin: 0 0 16px;
}
.sv-dv-waste__card .sv-checks {
  margin: 0 0 20px;
}
.sv-dv-waste__card .sv-link {
  color: var(--sv-green);
}

.sv-dv-monitor {
  border-top: 1px solid var(--sv-silver);
}
.sv-dv-monitor .sv-kicker__dash {
  background: currentColor;
}
.sv-dv-monitor .sv-section__head h2 {
  max-width: none;
  white-space: nowrap;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
}
.sv-dv-monitor .sv-section__head .sv-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--sv-green);
  font-size: 16px;
  font-weight: 600;
}
.sv-dv-monitor__track {
  grid-template-columns: repeat(5, 1fr);
}
.sv-dv-monitor__track::before {
  left: 10%;
  right: 10%;
}
.sv-dv-monitor__track .sv-home-process__step h3 {
  font-size: 16px;
  line-height: 1.4;
}
.sv-dv-monitor__track .sv-home-process__step p {
  font-size: 14px;
  line-height: 1.55;
  max-width: none;
}

.sv-dv-ops {
  background: #f5f7fb;
  padding: 80px 0;
}
.sv-dv-ops__copy .sv-kicker {
  margin: 30px 0;
  color: var(--sv-green);
}
.sv-dv-ops__copy h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--sv-blue);
  margin: 0 0 16px;
  max-width: 12em;
}
.sv-dv-ops__lead {
  font-size: 16px;
  line-height: 26px;
  color: var(--sv-gray);
  margin: 0 0 24px;
}
.sv-dv-ops__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sv-dv-ops__list li {
  font-size: 16px;
  line-height: 26px;
  color: var(--sv-navy);
  margin: 0 0 12px;
}
.sv-dv-ops__list li:last-child {
  margin-bottom: 0;
}
.sv-dv-ops__list strong {
  font-weight: 700;
  color: var(--sv-navy);
}
.sv-dv-ops__media {
  border-radius: 16px;
  overflow: hidden;
}
.sv-dv-ops__media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

@media (max-width: 991.98px) {
  .sv-dv-hero {
    padding: 40px 0 48px;
  }
  .sv-dv-hero h1 {
    max-width: none;
  }
  .sv-dv-cats .sv-section__head h2,
  .sv-dv-water .sv-section__head h2,
  .sv-dv-waste__intro h2,
  .sv-dv-monitor .sv-section__head h2,
  .sv-dv-ops__copy h2 {
    font-size: 28px;
    white-space: normal;
  }
  .sv-dv-waste__intro h2 br {
    display: none;
  }
  .sv-dv-cat h3 {
    font-size: 22px;
    line-height: 1.35;
  }
  .sv-dv-hero__visual {
    max-width: 480px;
    margin: 0 auto;
  }
  .sv-dv-monitor__track {
    grid-template-columns: 1fr;
  }
  .sv-dv-monitor__track::before {
    display: none;
  }
}
@media (max-width: 575.98px) {
  .sv-dv-hero__visual {
    max-width: 100%;
  }
  .sv-dv-hero__actions .sv-btn {
    width: 100%;
    justify-content: center;
  }
  .sv-dv-ops__media img {
    min-height: 220px;
  }
}

/* ========== DỊCH VỤ SINGLE ========== */
.sv-dv-crumb {
  background: transparent;
  padding: 20px 0 0;
  font-size: 14px;
  color: var(--sv-navy);
  font-weight: 600;
}
.sv-dv-crumb a {
  color: var(--sv-gray);
  font-weight: 500;
}
.sv-dv-crumb a:hover {
  color: var(--sv-green);
}
.sv-dv-page-hero {
  padding: 8px 0 72px;
}
.sv-dv-page-hero .sv-kicker {
  margin: 30px 0;
  color: var(--sv-green);
}
.sv-dv-page-hero--center {
  text-align: center;
}
.sv-dv-page-hero--center .sv-kicker {
  justify-content: center;
}
.sv-dv-page-hero h1 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--sv-blue);
  margin: 0 0 16px;
}
.sv-dv-page-hero__lead,
.sv-dv-page__lead {
  font-size: 16px;
  line-height: 26px;
  color: var(--sv-gray);
  margin: 0 auto 32px;
  max-width: 44em;
}
.sv-dv-page-hero--split .sv-dv-page-hero__lead {
  margin: 0 0 28px;
  max-width: 36em;
}
.sv-dv-page-hero--center .sv-dv-page-hero__lead {
  margin-left: auto;
  margin-right: auto;
  max-width: 40em;
}
.sv-dv-page-hero--center .sv-dv-checks-pills {
  margin-left: auto;
  margin-right: auto;
  max-width: 34em;
  text-align: left;
}
.sv-dv-page-hero--center .sv-btn {
  margin-top: 8px;
}
.sv-dv-page-hero--ops h1 {
  max-width: 11.5em;
  margin-left: auto;
  margin-right: auto;
}
.sv-dv-page-hero--ops .sv-dv-page-hero__lead {
  max-width: 42em;
}
.sv-dv-checks-pills--row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  grid-template-columns: none;
  max-width: none;
  gap: 10px 12px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 28px;
}
.sv-dv-checks-pills--row li {
  flex: 0 1 auto;
}
.sv-dv-type {
  text-align: left;
  background: #fff;
  border: 1px solid #e6e8ee;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.sv-dv-type img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 0;
  margin: 0;
}
.sv-dv-types--2 .sv-dv-type img {
  aspect-ratio: 5 / 2;
}
.sv-dv-type__body {
  padding: 20px 24px 24px;
}
.sv-dv-type h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--sv-blue);
  margin: 0 0 8px;
}
.sv-dv-type p {
  font-size: 16px;
  line-height: 26px;
  color: var(--sv-gray);
  margin: 0;
}
.sv-dv-feat {
  background: #fff;
  border: 1px solid #e6e8ee;
  border-radius: 16px;
  padding: 32px 28px 28px;
  height: 100%;
}
a.sv-dv-feat {
  display: block;
  color: inherit;
}
a.sv-dv-feat:hover {
  color: inherit;
}
a.sv-dv-feat:hover h3 {
  color: var(--sv-green);
}
.sv-dv-feat__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: #e8f0fa;
  color: var(--sv-blue);
  display: grid;
  place-items: center;
  font-size: 24px;
  margin: 0 0 16px;
}
.sv-dv-feat h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--sv-blue);
  margin: 0 0 10px;
}
.sv-dv-feat p {
  font-size: 16px;
  line-height: 26px;
  color: var(--sv-gray);
  margin: 0;
}
.sv-dv-feat .sv-checks {
  margin: 12px 0 0;
}
.sv-dv-feat__list {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #e6e8ee;
}
.sv-dv-feat__list li {
  padding-left: 18px;
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.45;
  color: var(--sv-gray);
}
.sv-dv-feat__list li:last-child {
  margin-bottom: 0;
}
.sv-dv-feat__list li::before {
  content: "›";
  color: var(--sv-blue);
  font-size: 18px;
  font-weight: 600;
  top: -2px;
  background: none;
  width: auto;
  height: auto;
  border-radius: 0;
  transform: none;
  display: block;
}
.sv-dv-feat--center {
  text-align: center;
  border: 0;
  box-shadow: var(--sv-shadow);
  padding: 36px 28px 32px;
}
.sv-dv-feat--center .sv-dv-feat__icon {
  margin-left: auto;
  margin-right: auto;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: #e8f0fa;
}
.sv-dv-split {
  padding: 80px 0;
}
.sv-dv-split--muted {
  background: #f5f7fb;
}
.sv-dv-split .sv-kicker {
  margin: 0 0 30px;
  color: var(--sv-green);
}
.sv-dv-split h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--sv-blue);
  margin: 0 0 16px;
}
.sv-dv-split__copy p:not(.sv-kicker) {
  font-size: 16px;
  line-height: 26px;
  color: var(--sv-gray);
  margin: 0 0 20px;
  max-width: 36em;
}
.sv-dv-split__media img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}
.sv-dv-split__media--3x2 {
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 3 / 2;
}
.sv-dv-split__media--3x2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  aspect-ratio: auto;
  border-radius: 0;
}
.sv-dv-split__media--hero-vs {
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 608 / 396;
  background: #e8eef8;
}
.sv-dv-split__media--hero-vs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  aspect-ratio: auto;
  border-radius: 0;
}

.sv-dv-apps .sv-section__head {
  margin-bottom: 28px;
}
.sv-dv-apps__lead {
  max-width: 46em;
  margin: 10px 0 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--sv-gray);
}
.sv-dv-app {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border: 1px solid #e6e8ee;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
a.sv-dv-app:hover {
  border-color: #cfd6e6;
  box-shadow: 0 10px 28px rgba(14, 40, 108, 0.08);
}
a.sv-dv-app:hover .sv-dv-app__more {
  color: var(--sv-green);
}
.sv-dv-app__media {
  overflow: hidden;
  background: #eef2f6;
}
.sv-dv-app__media img {
  width: 100%;
  height: auto;
  display: block;
}
.sv-dv-app__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 18px 20px 20px;
}
.sv-dv-app__tag {
  display: inline-flex;
  align-self: flex-start;
  margin: 0 0 10px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #eef2f0;
  color: var(--sv-green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.3;
  text-transform: none;
}
.sv-dv-app__body h3 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--sv-blue);
}
.sv-dv-app__body p {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--sv-gray);
  flex: 1;
}
.sv-dv-app__more {
  font-size: 15px;
  font-weight: 600;
  color: var(--sv-green);
  line-height: 1.4;
}
.sv-dv-split--process .sv-dv-split__media {
  overflow: hidden;
  border-radius: 20px;
  aspect-ratio: 6 / 5;
}
.sv-dv-split--process .sv-dv-split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  aspect-ratio: auto;
  border-radius: 0;
}
.sv-checks__icon--box {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e8f0fa;
  color: var(--sv-blue);
  display: grid;
  place-items: center;
  font-size: 16px;
  margin-top: 0;
}
.sv-dv-page-hero--split .sv-dv-media-float img {
  aspect-ratio: 16 / 10;
  border-radius: 24px;
}
.sv-dv-media-float {
  position: relative;
}
.sv-dv-media-float__card {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 280px;
  padding: 12px 16px 12px 12px;
  background: #eef0f4;
  color: var(--sv-gray);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(14, 40, 108, 0.1);
}
.sv-dv-media-float__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--sv-blue);
  display: grid;
  place-items: center;
  font-size: 20px;
}
.sv-dv-media-float__icon i {
  font-size: 20px;
  line-height: 1;
}
.sv-dv-media-float__card strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--sv-blue);
  line-height: 1.3;
  margin: 0 0 2px;
}
.sv-dv-media-float__card span:not(.sv-dv-media-float__icon) {
  display: block;
  font-size: 12px;
  line-height: 1.4;
  color: var(--sv-gray);
}
.sv-dv-split--system {
  background: #fff;
}
.sv-dv-split--system .sv-dv-split__media img {
  aspect-ratio: 6 / 5;
  border: 1px solid #d6e4f5;
  object-fit: cover;
}
.sv-dv-vlist {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
}
.sv-dv-vlist li {
  border-left: 3px solid var(--sv-blue);
  padding: 0 0 20px 16px;
  font-size: 16px;
  line-height: 26px;
  color: var(--sv-gray);
}
.sv-dv-split--system .sv-dv-vlist {
  border-left: 1px solid var(--sv-silver);
  padding-left: 20px;
}
.sv-dv-split--system .sv-dv-vlist li {
  border-left: none;
  padding: 0 0 18px;
}
.sv-dv-vlist li:last-child {
  padding-bottom: 0;
}
.sv-dv-vlist strong {
  color: var(--sv-blue);
  font-weight: 700;
}
.sv-dv-itemlist {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sv-dv-itemlist li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #fff;
  border-radius: 12px;
  padding: 16px 18px;
}
.sv-dv-itemlist__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #e8f0fa;
  color: var(--sv-blue);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 18px;
}
.sv-dv-itemlist strong {
  display: block;
  color: var(--sv-blue);
  font-weight: 700;
  margin-bottom: 2px;
}
.sv-dv-itemlist span {
  font-size: 14px;
  line-height: 1.5;
  color: var(--sv-gray);
}
.sv-dv-split--parts .sv-kicker {
  margin: 0 0 12px;
}
.sv-dv-itemlist--lines {
  gap: 0;
  margin-top: 8px;
}
.sv-dv-itemlist--lines li {
  background: transparent;
  border-radius: 0;
  padding: 18px 0;
  border-bottom: 1px solid #e6e8ee;
  gap: 16px;
}
.sv-dv-itemlist--lines li:first-child {
  padding-top: 12px;
}
.sv-dv-itemlist--lines li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.sv-dv-itemlist--lines .sv-dv-itemlist__icon {
  width: auto;
  height: auto;
  background: none;
  border-radius: 0;
  font-size: 22px;
  padding-top: 2px;
}
.sv-dv-itemlist--lines strong {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}
.sv-dv-itemlist--lines span {
  font-size: 16px;
  line-height: 26px;
}
.sv-dv-prep {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sv-dv-prep li {
  background: #f5f7fb;
  border-radius: 12px;
  padding: 16px 20px;
}
.sv-dv-prep strong {
  display: block;
  color: var(--sv-blue);
  font-weight: 700;
  margin-bottom: 4px;
}
.sv-dv-prep span {
  font-size: 14px;
  line-height: 1.5;
  color: var(--sv-gray);
}
.sv-dv-split--prep .sv-kicker {
  margin: 0 0 12px;
}
.sv-dv-split--prep .sv-dv-prep {
  margin-top: 20px;
  gap: 12px;
}
.sv-dv-split--prep .sv-dv-prep li {
  padding: 18px 20px;
}
.sv-dv-split--prep .sv-dv-prep strong {
  font-size: 16px;
  font-weight: 600;
}
.sv-dv-split--prep .sv-dv-prep span {
  font-size: 16px;
  line-height: 26px;
}
.sv-dv-split__media--portrait {
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 3 / 4;
}
.sv-dv-split__media--portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  aspect-ratio: auto;
  border-radius: 0;
}
.sv-dv-split__media--frame {
  border: 1px solid #dce6f2;
}
.sv-dv-checks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 32px;
  max-width: 720px;
  margin: 0 auto 32px;
  text-align: left;
}
.sv-dv-page-hero--split .sv-dv-checks-grid {
  margin-left: 0;
  margin-right: 0;
}
.sv-dv-checks-pills {
  gap: 10px 12px;
  max-width: 36em;
  margin-bottom: 28px;
}
.sv-dv-checks-pills li {
  margin: 0;
  padding: 10px 16px 10px 40px;
  background: #f0f2f5;
  border-radius: 999px;
  font-size: 14px;
  line-height: 1.4;
  color: var(--sv-gray);
}
.sv-dv-checks-pills li::before {
  display: grid;
  place-items: center;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--sv-green);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}
.sv-dv-checks-grid .sv-checks {
  margin: 0;
}
.sv-dv-checks-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 28px;
  margin: 0 0 32px;
}
.sv-dv-checks-row .sv-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  margin: 0;
}
.sv-dv-checks-row .sv-checks li {
  margin: 0;
}
.sv-dv-process {
  padding: 80px 0;
  background: #fff;
}
.sv-dv-process .sv-section__head {
  margin-bottom: 40px;
}
.sv-dv-process .sv-section__head h2 {
  max-width: none;
  font-size: 40px;
  font-weight: 600;
  margin: 0;
}
.sv-dv-process__track {
  grid-template-columns: repeat(var(--sv-steps, 4), 1fr);
}
.sv-dv-process__track::before {
  top: 32px;
}
.sv-dv-process .sv-home-process__num {
  color: var(--sv-slate);
  font-weight: 600;
  border-color: var(--sv-silver);
}
.sv-dv-process .sv-home-process__step h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 8px;
}
.sv-dv-process .sv-home-process__step p {
  font-size: 16px;
  line-height: 26px;
  color: var(--sv-gray);
  max-width: 16em;
}
.sv-dv-process--open .sv-home-process__num {
  width: auto;
  height: auto;
  min-width: 0;
  border: 0;
  border-radius: 0;
  background: #fff;
  padding: 0 10px;
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
  color: #9bb89a;
  margin: 0 auto 20px;
}
.sv-dv-process--open .sv-home-process__track::before,
.sv-dv-process--open .sv-dv-process__track::before {
  display: none;
}
.sv-dv-process--open .sv-home-process__step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 19px;
  left: calc(50% + 36px);
  width: calc(100% - 56px);
  height: 1px;
  background: #9bb89a;
  pointer-events: none;
}
.sv-dv-process--open .sv-home-process__step h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.35;
  margin: 0 0 12px;
  color: var(--sv-blue);
}
.sv-dv-process--open .sv-home-process__step p {
  font-size: 18px;
  line-height: 28px;
  max-width: 18em;
}
.sv-dv-process--outline .sv-kicker {
  margin: 0 0 12px;
}
.sv-dv-process--outline .sv-section__head {
  margin-bottom: 48px;
}
.sv-dv-process--outline .sv-section__head h2 {
  font-size: 40px;
  font-weight: 600;
  margin: 0;
}
.sv-dv-process--outline .sv-dv-process__track::before {
  top: 28px;
  left: 12.5%;
  right: 12.5%;
  background: var(--sv-silver);
}
.sv-dv-process--outline .sv-home-process__num {
  width: 56px;
  height: 56px;
  background: #fff;
  border: 1px solid var(--sv-silver);
  color: var(--sv-blue);
  font-weight: 600;
}
.sv-dv-process--outline .sv-home-process__step h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--sv-blue);
}
.sv-dv-process--outline .sv-home-process__step p {
  font-size: 16px;
  line-height: 26px;
  color: var(--sv-gray);
}
.sv-dv-process--navy .sv-kicker {
  margin: 0 0 12px;
}
.sv-dv-process--navy .sv-section__head {
  margin-bottom: 48px;
}
.sv-dv-process--navy .sv-section__head h2 {
  max-width: 14em;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.25;
}
.sv-dv-process--navy .sv-dv-process__track::before {
  top: 28px;
  left: 10%;
  right: 10%;
  background: var(--sv-silver);
}
.sv-dv-process--navy .sv-home-process__num {
  width: 56px;
  height: 56px;
  border: 0;
  background: var(--sv-blue);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.sv-dv-process--navy .sv-home-process__step h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--sv-blue);
  margin: 0 0 8px;
}
.sv-dv-process--navy .sv-home-process__step p {
  font-size: 16px;
  line-height: 26px;
  color: var(--sv-gray);
  max-width: 16em;
}
.sv-dv-photos__item {
  margin: 0;
}
.sv-dv-photos__media {
  overflow: hidden;
  border-radius: 14px;
  aspect-ratio: 8 / 5;
  background: #e8edf4;
}
.sv-dv-photos__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  aspect-ratio: auto;
  border-radius: 0;
}
.sv-dv-photos figcaption,
.sv-dv-photos h3 {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: var(--sv-blue);
  margin: 18px 0 0;
}
.sv-dv-banner {
  background: var(--sv-blue);
  border-radius: 16px;
  padding: 48px 32px;
  text-align: center;
  color: #fff;
}
.sv-dv-banner h2 {
  color: #fff;
  margin: 0 0 10px;
}
.sv-dv-banner p {
  color: #fff;
  margin: 0 0 24px;
}
.sv-dv-related {
  background: #f5f7fb;
}
.sv-dv-related--plain {
  background: #fff;
}
.sv-dv-related--plain .sv-section__head h2 {
  font-size: 40px;
  font-weight: 600;
  color: var(--sv-blue);
  margin: 0;
}
.sv-dv-related .sv-kicker,
.sv-dv-projects .sv-kicker,
.sv-dv-feats .sv-kicker {
  color: var(--sv-green);
  margin: 30px 0;
}
.sv-dv-projects__more {
  margin-top: 20px;
  border-radius: 8px;
  padding: 10px 20px;
}
.sv-dv-projects .sv-section__head--row {
  align-items: center;
  margin-bottom: 36px;
}
.sv-dv-projects .sv-section__head--row .sv-kicker {
  margin: 0 0 10px;
}
.sv-dv-projects .sv-section__head--row h2 {
  margin: 0;
}
.sv-dv-projects .sv-section__head--row .sv-dv-projects__more {
  margin-top: 0;
}
.sv-dv-process .sv-kicker {
  color: var(--sv-green);
  margin: 0 0 12px;
}
.sv-dv-projects--nlmt {
  background: #fff;
  padding: 80px 0;
}
.sv-dv-projects--nlmt .sv-section__head {
  margin-bottom: 40px;
}
.sv-dv-projects--nlmt .sv-kicker {
  margin: 0 0 12px;
}
.sv-dv-projects--nlmt .sv-section__head h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--sv-blue);
  margin: 0 0 12px;
}
.sv-dv-projects--nlmt .sv-dv-page__lead {
  margin: 0 auto;
  max-width: 36em;
}
.sv-dv-projects--nlmt .sv-project-card {
  border: 1px solid #e8ebf0;
  border-radius: 16px;
  box-shadow: none;
}
.sv-dv-projects--nlmt .sv-project-card__body {
  padding: 16px 18px 20px;
}
.sv-dv-projects--nlmt .sv-tag {
  margin: 0 0 10px;
}
.sv-dv-projects--nlmt .sv-project-card__title {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 8px;
}
.sv-dv-projects--nlmt .sv-project-card__client {
  font-size: 14px;
  line-height: 1.45;
  color: var(--sv-gray);
}
@media (max-width: 991.98px) {
  .sv-dv-projects--nlmt .sv-section__head h2 {
    font-size: 26px;
  }
}
.sv-dv-mains {
  padding: 80px 0;
}
.sv-dv-mains .sv-section__head {
  margin-bottom: 40px;
}
.sv-dv-mains .sv-kicker {
  margin: 0 0 12px;
}
.sv-dv-mains .sv-section__head h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--sv-blue);
  margin: 0 0 12px;
}
.sv-dv-mains .sv-dv-page__lead {
  margin: 0 auto;
  max-width: 40em;
}
.sv-dv-mains .sv-dv-feat {
  padding: 32px 28px;
  border: 1px solid #e8ebf0;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(14, 40, 108, 0.06);
}
.sv-dv-mains .sv-dv-feat__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  border-radius: 10px;
  background: #e8f0fa;
  font-size: 22px;
}
.sv-dv-mains .sv-dv-feat h3 {
  font-size: 20px;
  line-height: 1.35;
  margin: 0 0 8px;
}
.sv-dv-mains .sv-dv-feat p {
  font-size: 16px;
  line-height: 26px;
}
@media (max-width: 991.98px) {
  .sv-dv-mains .sv-section__head h2 {
    font-size: 26px;
  }
}

@media (max-width: 991.98px) {
  .sv-dv-page-hero h1,
  .sv-dv-split h2 {
    font-size: 28px;
  }
  .sv-dv-process {
    padding: 32px 0 40px;
  }
  .sv-dv-process .sv-section__head,
  .sv-dv-process--outline .sv-section__head,
  .sv-dv-process--navy .sv-section__head {
    margin-bottom: 24px;
  }
  .sv-dv-process .sv-kicker,
  .sv-dv-process--outline .sv-kicker,
  .sv-dv-process--navy .sv-kicker {
    margin: 0 0 8px;
  }
  .sv-dv-process .sv-section__head h2 {
    font-size: 26px;
  }
  .sv-dv-process__track {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .sv-dv-process__track::before {
    display: none;
  }
  .sv-dv-process .sv-home-process__num {
    width: 52px;
    height: 52px;
    margin-bottom: 12px;
  }
  .sv-dv-process--open .sv-home-process__num {
    width: auto;
    height: auto;
    font-size: 28px;
    margin-bottom: 12px;
  }
  .sv-dv-process--open .sv-home-process__step:not(:last-child)::after {
    display: none;
  }
  .sv-dv-monitor {
    padding: 32px 0 40px;
  }
  .sv-dv-monitor .sv-section__head {
    margin-bottom: 24px;
  }
  .sv-dv-monitor .sv-kicker {
    margin: 0 0 8px;
  }
  .sv-dv-checks-grid {
    grid-template-columns: 1fr;
  }
  .sv-dv-media-float__card {
    position: static;
    max-width: none;
    margin-top: 12px;
  }
}

/* —— Vi sinh: chi tiết giải pháp ứng dụng —— */
.sv-vs-gp__content {
  padding-top: 8px;
}
.sv-vs-body {
  max-width: 760px;
  margin: 0 auto;
}
.sv-vs-h2 {
  margin: 36px 0 16px;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--sv-blue);
}
.sv-vs-h3 {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--sv-blue);
}
.sv-vs-body > .sv-vs-h2:first-child {
  margin-top: 0;
}
.sv-vs-consult {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin: 0 0 28px;
}
.sv-vs-consult__block {
  margin: 0;
}
.sv-vs-consult__block .sv-vs-h3 {
  color: #1c2434;
  font-size: 17px;
  font-weight: 700;
}
.sv-vs-consult__block .sv-vs-checks {
  margin-bottom: 0;
}
.sv-vs-gp__cta {
  padding-top: 8px;
}
.sv-vs-lead,
.sv-vs-body > p {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--sv-gray);
}
.sv-vs-note {
  margin: 0 0 16px;
  padding: 14px 18px;
  border-left: 3px solid var(--sv-green);
  background: #f4f7f5;
  font-size: 15px;
  line-height: 1.65;
  font-style: italic;
  color: #3a4658;
}
.sv-vs-ol,
.sv-vs-ul {
  margin: 0 0 20px;
  padding-left: 1.25em;
  color: var(--sv-gray);
  font-size: 16px;
  line-height: 1.7;
}
.sv-vs-ol li,
.sv-vs-ul li {
  margin: 0 0 8px;
}
.sv-vs-checks {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}
.sv-vs-checks li {
  position: relative;
  margin: 0 0 10px;
  padding-left: 28px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--sv-gray);
}
.sv-vs-checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--sv-green);
  font-weight: 700;
}
.sv-vs-products {
  margin: 36px 0 28px;
}
.sv-vs-products .sv-vs-h2 {
  margin-top: 0;
}
.sv-vs-products__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sv-vs-product {
  display: flex;
  gap: 28px;
  align-items: stretch;
  padding: 28px 32px;
  border: 1px solid #e6e8ee;
  border-radius: 16px;
  background: #fff;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.sv-vs-product:hover {
  border-color: #cfd6e6;
  box-shadow: 0 10px 28px rgba(14, 40, 108, 0.08);
}
.sv-vs-product:hover .sv-vs-product__more {
  color: var(--sv-green);
}
.sv-vs-product__media {
  flex: 0 0 180px;
  width: 180px;
  border-radius: 12px;
  overflow: hidden;
  background: #eef2f6;
}
.sv-vs-product__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 4 / 3;
}
.sv-vs-product__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
  padding: 8px 4px 8px 0;
  justify-content: center;
}
.sv-vs-product__tag {
  display: inline-flex;
  align-self: flex-start;
  margin: 0 0 8px;
  padding: 3px 10px;
  border-radius: 999px;
  background: #eef2f0;
  color: var(--sv-green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.sv-vs-product__body h3 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--sv-blue);
}
.sv-vs-product__body p {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--sv-gray);
  flex: 1;
}
.sv-vs-product__more {
  font-size: 15px;
  font-weight: 600;
  color: var(--sv-green);
}
.sv-vs-gp__related {
  background: #f7f8fb;
}
@media (max-width: 575.98px) {
  .sv-vs-product {
    flex-direction: column;
    padding: 20px;
    gap: 16px;
  }
  .sv-vs-product__media {
    flex-basis: auto;
    width: 100%;
  }
  .sv-vs-h2 {
    font-size: 24px;
  }
}

/* —— Thiết bị: chi tiết Vi sinh môi trường —— */
.sv-tb-vs__hero {
  padding-top: 24px;
  padding-bottom: 16px;
}
.sv-tb-vs__media {
  border-radius: 16px;
  overflow: hidden;
  background: #f3f5f9;
  border: 1px solid #e6e8ee;
  box-shadow: 0 12px 32px rgba(14, 40, 108, 0.06);
}
.sv-tb-vs__media img {
  display: block;
  width: 100%;
  height: auto;
}
.sv-tb-vs__tag {
  display: inline-flex;
  margin: 0 0 12px;
  padding: 4px 12px;
  border: 1px solid rgba(47, 107, 79, 0.35);
  border-radius: 8px;
  background: #eef2f0;
  color: var(--sv-green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.sv-tb-vs__hero h1 {
  margin: 0 0 10px;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--sv-blue);
}
.sv-tb-vs__subtitle {
  margin: 0 0 14px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--sv-blue);
}
.sv-tb-vs__lead {
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--sv-gray);
}
.sv-tb-vs__checks {
  margin-bottom: 20px;
}
.sv-tb-vs__specs {
  margin: 0 0 24px;
  padding: 0;
}
.sv-tb-vs__spec {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 8px 16px;
  padding: 8px 0;
  border-bottom: 1px solid #eef0f5;
}
.sv-tb-vs__spec:last-child {
  border-bottom: 0;
}
.sv-tb-vs__specs dt {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #6b7285;
}
.sv-tb-vs__specs dd {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--sv-blue);
}
.sv-tb-vs__cta .bi {
  margin-right: 8px;
}
.sv-tb-vs__main {
  padding-top: 8px;
}
.sv-tb-vs__content .sv-tb-dose {
  margin: 8px 0 16px;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--sv-green);
}
.sv-tb-vs__content h2 {
  margin: 36px 0 14px;
  font-size: 26px;
  font-weight: 600;
  color: var(--sv-blue);
}
.sv-tb-vs__content h2:first-child {
  margin-top: 0;
}
.sv-tb-vs__content h3 {
  margin: 18px 0 10px;
  font-size: 18px;
  font-weight: 700;
  color: #1c2434;
}
.sv-tb-vs__related {
  background: #f7f8fb;
}
.sv-tb-vs__related .sv-tb-card__title {
  font-size: 18px;
}
.sv-tb-vs__related .sv-tb-card__body p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.sv-tb-vs__banner {
  padding-top: 8px;
}
@media (max-width: 991.98px) {
  .sv-tb-vs__spec {
    grid-template-columns: 1fr;
    gap: 2px;
  }
}
