@font-face {
  font-family: "Segoe UI";
  src: local("Segoe UI"), local("Segoe UI Regular"),
       url("/Content/bramblesv2/fonts/SegoeUI.woff2") format("woff2"),
       url("/Content/bramblesv2/fonts/SegoeUI.woff") format("woff");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Segoe UI";
  src: local("Segoe UI Bold"), local("Segoe UI Semibold"),
       url("/Content/bramblesv2/fonts/SegoeUI-Bold.woff2") format("woff2"),
       url("/Content/bramblesv2/fonts/SegoeUI-Bold.woff") format("woff");
  font-weight: 700; font-style: normal; font-display: swap;
}

:root {
  --app-font: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, Helvetica, Arial, sans-serif;
  --bs-body-font-family: var(--app-font);
  --bs-font-sans-serif: var(--app-font);
  --brambles-blue: #001C66;
  --dark-blue: #0A142D;
  --chep-blue: #0079FF;
  --stroke: #C7CFDC;
  --bg-grey: #F2F2F2;
  --dark-grey: #848484;
  --accent-blue: #D7DDE8;
  --primary-grey: #AAB0B9;
  --white: #FFFFFF;
}

body {
  font-family: var(--app-font);
  color: var(--brambles-blue);
}

.container {
  max-width: 1170px;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 768px)  { .container { max-width: 750px; } }
@media (min-width: 992px)  { .container { max-width: 970px; } }
@media (min-width: 1200px) { .container { max-width: 1170px; } }

.h-display { font-size: 48px; line-height: 1.05; letter-spacing: -0.02em; font-weight: 400; margin-bottom: 0; }
.h-1       { font-size: 38px; line-height: 1.10; letter-spacing: -0.01em; font-weight: 400; }
.h-2       { font-size: 38px; line-height: 1.10; letter-spacing: -0.01em; font-weight: 400; }
.h-3       { font-size: 30px; line-height: 1.30; letter-spacing: -0.01em; font-weight: 400; }
.h-4       { font-size: 24px; line-height: 1.30; letter-spacing: -0.02em; font-weight: 400; }

.p-large  { font-size: 20px; line-height: 1.4; letter-spacing: -0.01em; color: var(--dark-blue); margin-bottom: 12px; }
.p-medium { font-size: 16px; line-height: 1.4; letter-spacing: -0.01em; color: var(--dark-blue); margin-bottom: 12px; }

/* Tránh widow/orphan TOÀN microsite (khách: không để 1 từ đứng riêng dòng cuối).
   text-wrap KẾ THỪA → đặt ở gốc là mọi text con tự nhận. Progressive enhancement:
   browser cũ bỏ qua, không lỗi. Element nowrap (nav/nút) không bị ảnh hưởng. */
body, .bd-site { text-wrap: pretty; }

.text-balance-pretty { text-wrap: pretty; }

.bd-site .h-display, .bd-site .h-1, .bd-site .h-2, .bd-site .h-3, .bd-site .h-4,
.bd-site h1, .bd-site h2, .bd-site h3, .bd-site h4, .bd-site h5, .bd-site h6,
.bd-site p, .bd-site .p-large, .bd-site .p-medium, .bd-site .p-small,
.bd-site a, .bd-site label, .bd-site li, .bd-site button,
.bd-site input, .bd-site textarea, .bd-site select { font-family: var(--app-font) !important; }
.p-small  { font-size: 14px; line-height: 1.4; letter-spacing: -0.14px; color: var(--dark-blue); }
.label-xs { font-size: 12px; line-height: 16px; letter-spacing: 0; }

.text-brambles { color: var(--brambles-blue) !important; }
.text-chep     { color: var(--chep-blue) !important; }
.text-grey     { color: var(--dark-grey) !important; }
.bg-brambles   { background-color: var(--brambles-blue) !important; }
.bg-darkblue   { background-color: var(--dark-blue) !important; }
.bg-grey       { background-color: var(--bg-grey) !important; }

.btn-brambles {
  background-color: var(--brambles-blue);
  color: #fff;
  border-radius: 100px;
  padding: 8px 24px;
  border: 1px solid var(--brambles-blue);
  font: 400 16px/1.5 var(--app-font);
  letter-spacing: -0.16px;
  transition: all 0.3s;
}

.btn-brambles:hover { background-color: var(--chep-blue); border-color: var(--chep-blue); color: #fff; }

.btn-outline-brambles {
  display: inline-flex;
  align-items: center;
  height: 48px;
  padding: 0 24px;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.01em;
  background-color: transparent;
  color: var(--chep-blue);
  border: 1px solid var(--chep-blue);
  border-radius: 100px;
  transition: all 0.3s;
}

.btn-outline-brambles:hover { background-color: var(--brambles-blue); border-color: var(--brambles-blue); color: #fff; }

.btn-outline-light-pill {
  display: inline-flex;
  align-items: center;
  padding: 11px 24px;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.01em;
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 28px;
  transition: all 0.3s;
}

.btn-outline-light-pill:hover { background-color: var(--brambles-blue); border-color: var(--brambles-blue); color: #fff; }

.brambles-logo {
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -1px;
  color: var(--brambles-blue);
  text-decoration: none;
}

.site-navbar {
  min-height: 64px;
  --bs-navbar-padding-y: 0;
  box-shadow: inset 0 -1px 0 var(--bg-grey);
}

.site-navbar .navbar-brand object {
  display: inline-block;
  width: 120px;
  height: 40px;
  pointer-events: none;
}

@media (min-width: 992px) {
  .nav-brambles-digital .nav-link { white-space: nowrap; }
  .nav-brambles-digital > .nav-item > .nav-link {
    justify-content: center;
    text-align: center;
    min-width: 7rem;
  }
  .nav-brambles-digital > .nav-item.dropdown > .nav-link { min-width: 9.5rem; }
  .site-navbar .lang-pill { white-space: nowrap; justify-content: space-between; width: 9rem; padding: 6px 8px; }
  .site-navbar .btn-brambles { white-space: nowrap; text-align: center; min-width: 8.5rem; }
}

.menu-toggler {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: none;
  color: var(--brambles-blue);
}
.menu-toggler:focus { box-shadow: none; }
.menu-toggler .menu-text {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.menu-toggler .navbar-toggler-icon {
  width: 24px; height: 24px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23001C66' stroke-width='2.2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h22M4 15h22M4 22h22'/%3e%3c/svg%3e");
}

.nav-brambles-digital {
  --bs-navbar-nav-link-padding-x: 24px;
  --bs-nav-link-padding-y: 22px;
}
.nav-brambles-digital .nav-link {
  color: var(--brambles-blue);
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0;
}
.lang-pill {
  border: 1px solid var(--stroke);
  border-radius: 1000px;
  padding: 6px;
  padding-right: 8px;
  gap: 6px;
  font-size: 14px;
  color: var(--brambles-blue);
  text-decoration: none;
  cursor: pointer;
}
.lang-pill:hover, .lang-pill:focus { color: var(--brambles-blue); }
.lang-flag {
  width: 24px; height: 24px; border-radius: 50%;
  border: 1px solid #fff;
  box-sizing: border-box;
  display: inline-flex; align-items: center; justify-content: center;
  overflow: hidden; line-height: 1;
}

.lang-flag svg,
.lang-flag img { width: 100%; height: 100%; display: block; }

.site-navbar .dropdown-toggle::after { display: none; }
.dropdown-caret { width: 20px; height: 20px; vertical-align: middle; transition: transform .2s ease; }

@media (min-width: 992px) {
  .nav-brambles-digital .nav-link { display: inline-flex; align-items: center; }
  .site-navbar .nav-item.dropdown:not(.lang-nav-item):hover > .dropdown-menu { display: block; }
  .site-navbar .nav-item.dropdown > .dropdown-menu {
    position: absolute;
    top: 100%;
    margin-top: 0;
    transform-origin: top center;
  }
  .site-navbar .nav-item.dropdown > .dropdown-menu:not(.dropdown-menu-end) { left: 0; right: auto; }
  .site-navbar .nav-item.dropdown > .dropdown-menu.dropdown-menu-end       { right: 0; left: auto; }
  .site-navbar .nav-item.lang-nav-item.dropdown > .dropdown-menu           { left: 0; right: auto; }
  .site-navbar .nav-item.dropdown:not(.lang-nav-item):hover .dropdown-caret { transform: rotate(180deg); }
  .site-navbar .nav-item.lang-nav-item.dropdown.show .dropdown-caret { transform: rotate(180deg); }
  .lang-nav-item { align-self: stretch; display: flex; align-items: center; }
}

.site-navbar .dropdown-menu {
  background-color: var(--bg-grey);
  border: none;
  border-radius: 0 0 12px 12px;
  padding: 12px;
  min-width: 180px;
  font-size: 16px;
  box-shadow: 0 8px 18px rgba(10, 20, 45, .06);
}
.site-navbar .dropdown-item {
  border-radius: 8px;
  padding: 12px;
  color: var(--brambles-blue);
}

.site-navbar .dropdown-item:hover,
.site-navbar .dropdown-item:focus,
.site-navbar .dropdown-item.active,
.site-navbar .dropdown-item:active {
  background-color: #fff;
  color: var(--brambles-blue);
}

.nav-brambles-digital > .nav-item > .nav-link:hover,
.nav-brambles-digital > .nav-item.dropdown:not(.lang-nav-item):hover > .nav-link {
  background-color: var(--bg-grey);
}

.site-navbar { --bs-navbar-active-color: var(--brambles-blue); }

.site-navbar .navbar-nav .nav-link.show {
  color: #0A142D;
}

.site-navbar .lang-option .lang-flag { width: 20px; height: 20px; }
.site-navbar .lang-option .lang-check { color: var(--chep-blue); opacity: 0; }
.site-navbar .lang-option.active .lang-check { opacity: 1; }

@media (min-width: 992px) {
  .site-navbar .nav-item.dropdown:not(.lang-nav-item):hover > .dropdown-menu {
    animation: ddIn .26s cubic-bezier(.22, .61, .36, 1);
  }
}
@keyframes ddIn {
  from { opacity: 0; transform: translateY(-10px) scaleY(0.94); }
  to   { opacity: 1; transform: translateY(0) scaleY(1); }
}

.site-navbar .dropdown-menu.solutions-menu { min-width: 230px; }

.solutions-menu .dropdown-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.solutions-menu .dropdown-item::before {
  content: "";
  flex: 0 0 auto;
  width: 16px; height: 16px;
  background: url(/Content/brambles-digital/assets/images/chevron-right.svg?v=0.1) center / 16px no-repeat;
  transition: transform .15s ease;
}
.solutions-menu .dropdown-item:hover::before { transform: translateX(2px); }

.hero {
  position: relative;
  min-height: 620px;
  padding-top: 64px;
  padding-bottom: 64px;
  color: #fff;
  background: #0A142D;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: none;
  pointer-events: none;
}

.hero-poster { position: absolute; inset: 0; z-index: 0; opacity: 1; pointer-events: none;
  transition: opacity .6s ease; animation: heroPosterAuto .6s ease 3.5s forwards; }
.hero-poster, .hero-poster img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero.is-loaded .hero-poster { opacity: 0; animation: none; }
@keyframes heroPosterAuto { to { opacity: 0; } }

.hero .p-large { color: #fff; }

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
  max-width: 493px;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero .breadcrumb-mini,
.sol-hero .breadcrumb-mini {
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 0;
}
.hero .breadcrumb-mini a,
.sol-hero .breadcrumb-mini a { color: #fff; text-decoration: none; }
.hero .breadcrumb-mini a:hover,
.sol-hero .breadcrumb-mini a:hover { text-decoration: underline; }
.breadcrumb-chevron { width: 16px; height: 16px; vertical-align: middle; margin: 0 4px; }

.features-grid { padding-top: 64px; padding-bottom: 64px; }

.features-layout { display: flex; flex-direction: column; gap: 48px; }
@media (min-width: 992px) {
  .features-layout { flex-direction: row; align-items: flex-start; gap: 128px; }
  .features-layout > :first-child { flex: 0 0 360px; }
  .features-layout > :last-child  { flex: 1 1 auto; min-width: 0; }
  .why-text { position: sticky; top: 88px; }
}

.side-text {
  display: flex;
  flex-direction: column;
  gap: 26px;
  max-width: 360px;
}

.h-48 { font-size: 48px; line-height: 1.05; letter-spacing: -0.02em; font-weight: 400; }
@media (max-width: 767px) { .h-48 { font-size: 38px; } }

.features-cards .row { --bs-gutter-x: 30px; --bs-gutter-y: 30px; }

.feature-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--white);
  border: none;
  border-radius: 12px;
  padding: 24px;
  min-height: 209px;
  height: 100%;
}
.feature-card .feature-icon { color: var(--chep-blue); font-size: 28px; }
.feature-card h3 { color: var(--brambles-blue); }

.video-section { padding-top: 64px; padding-bottom: 64px; }
.video-placeholder {
  position: relative;
  background: var(--dark-blue);
  border-radius: 12px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}

.video-placeholder .video-media,
.video-placeholder iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.video-play {
  position: relative;
  z-index: 1;
  border: none;
  background: transparent;
  padding: 0;
  line-height: 0;
  cursor: pointer;
}
.video-play img { display: block; width: 96px; height: 96px; }

.video-placeholder.is-playing .video-play { display: none; }

.why-section { padding-top: 64px; padding-bottom: 64px; }
.num-item { border-bottom: 1px solid var(--stroke); padding: 28px 0; }
.num-item .row { --bs-gutter-x: 40px; }
.num-index {
  font-size: 92px; line-height: 1.05; letter-spacing: -0.04em;
  color: var(--chep-blue); font-weight: 400;
}

.solutions-section { padding-top: 64px; padding-bottom: 64px; }
.solutions-section .h-1 { margin-bottom: 50px; }
.solution-card {
  border-top: 4px solid var(--card-accent, var(--chep-blue));
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.solution-card .learn-more { margin-top: auto; }

.solution-card .learn-more::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.solution-card .solution-img {
  width: 100%; aspect-ratio: 456 / 280; object-fit: cover; border-radius: 12px;
  margin-bottom: 20px;
}

.solution-card h3 {
  color: var(--brambles-blue);
  font-size: 30px;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.solution-card p { margin-bottom: 13px; }
.learn-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--card-accent, var(--chep-blue));
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.01em;
}
.learn-more:hover { text-decoration: none; }

.lm-icon {
  width: 24px; height: 24px;
  flex: 0 0 auto;
  background-color: currentColor;
  -webkit-mask: url(/Content/brambles-digital/assets/images/chevron-right.svg?v=0.1) no-repeat center / contain;
  mask: url(/Content/brambles-digital/assets/images/chevron-right.svg?v=0.1) no-repeat center / contain;
  transition: transform .2s ease;
}
.learn-more:hover .lm-icon { animation: lmNudge .8s ease-in-out infinite; }
@keyframes lmNudge {
  0%, 100% { transform: translateX(0); }
  50%      { transform: translateX(5px); }
}

.solutions-section { position: relative; }
.solutions-viewport { overflow: hidden; }
.solutions-track {
  display: flex;
  gap: 24px;
  user-select: none;
  will-change: transform;
}
.solution-card img { pointer-events: none; }

.solutions-track .solution-card { flex: 0 0 100%; }
@media (min-width: 576px) { .solutions-track .solution-card { flex: 0 0 calc(50% - 12px); } }
@media (min-width: 992px) { .solutions-track .solution-card { flex: 0 0 456px; } }

@media (min-width: 992px) {
  .solutions-jack { padding-top: 0; padding-bottom: 0; }
  .solutions-jack .solutions-sticky {
    position: sticky; top: 0;
    height: 100vh;
    display: flex; flex-direction: column; justify-content: center;
  }
}

.solutions-static .solutions-viewport { overflow: visible; }
.solutions-static .solutions-track {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.solutions-static .carousel-controls { display: none; }

.carousel-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--stroke);
  display: inline-block; cursor: pointer; transition: width .25s ease, background .25s ease;
}
.carousel-dot.active { width: 24px; border-radius: 4px; background: var(--brambles-blue); }

.carousel-controls { margin-top: 60px; display: flex; align-items: center; gap: 16px; }
.carousel-controls #solutionsDots { order: -1; margin-right: auto; }
.carousel-btn {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--brambles-blue); color: #fff;
  display: flex; align-items: center; justify-content: center; border: none;
  cursor: pointer;
}
.carousel-btn { transition: background-color .2s ease; }
.carousel-btn:hover { background: var(--chep-blue); }
.carousel-btn:disabled { opacity: .35; cursor: default; }
.carousel-btn:disabled:hover { background: var(--brambles-blue); }

.contact-section { padding-top: 64px; padding-bottom: 64px; scroll-margin-top: 90px; }

.contact-section h2 { font-size: 38px; line-height: 1.1; }
.contact-form label { color: var(--brambles-blue); font-size: 12px; margin-bottom: 12px; }
.contact-form .form-control,
.contact-form .form-select {
  border: 1px solid var(--stroke);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 16px;
  line-height: 24px;
  color: var(--brambles-blue);
}
.contact-form .form-control::placeholder { color: var(--dark-grey); }

.contact-form .form-select:has(option:disabled:checked) { color: var(--dark-grey); }
.contact-form .form-select option { color: var(--brambles-blue); }

.contact-form .is-invalid-bd { border-color: #c0392b !important; }
.contact-form .bd-field-error { color: #c0392b; font-size: 12px; margin-top: 6px; }

.contact-form .btn-brambles {
  display: inline-flex;
  align-items: center;
  height: 48px;
  padding: 0 24px;
  border-radius: 100px;
}
.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--chep-blue);
  box-shadow: 0 0 0 .15rem rgba(0,121,255,.15);
}

.footer-top, .footer-bottom { font-family: "Segoe UI", Roboto, Arial, sans-serif; }
.footer-top { background: var(--dark-blue); color: #fff; }
.footer-top h5 { font-size: 14px; font-weight: 600; margin-bottom: 20px; color: #fff; }
.footer-top a { color: rgba(255,255,255,.85); text-decoration: none; font-size: 14px; }
.footer-top a:hover { color: #fff; }
.footer-bottom { background: #fff; }
.footer-bottom .footer-link { color: #005596; text-decoration: none; font-size: 14px; }
.footer-bottom .footer-link:hover { text-decoration: underline; }
.footer-bottom .social-icon { color: #005596; font-size: 18px; }

.footer-bottom .bd-foot-logo,
.footer-bottom .bd-foot-logo object,
.footer-bottom .bd-foot-logo img { display: inline-block; width: 120px; height: 64px; }
.footer-bottom .bd-foot-logo object { pointer-events: none; }

.footer-top { padding: 64px 0; }
.bd-foot-cols { display: flex; flex-wrap: wrap; gap: 30px; }
.bd-foot-col { flex: 1 1 0; min-width: 150px; }
.bd-foot-head { margin: 0; }
.bd-foot-toggle {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  width: 100%; padding: 0; border: 0; background: none; color: #fff;
  font-size: 18px; font-weight: 300; letter-spacing: -1px; text-transform: capitalize;
  text-align: left; line-height: 1.3;
}
.bd-foot-links ul { margin: 16px 0 0; padding: 0; list-style: none; display: grid; gap: 6px; }
.bd-foot-links a { font-weight: 400; font-size: 14px; line-height: 1.4; letter-spacing: -0.14px; text-transform: capitalize; }
.bd-foot-plus { display: none; }

@media (min-width: 768px) {
  .bd-foot-links { display: block !important; height: auto !important; }
  .bd-foot-toggle { pointer-events: none; cursor: default; }
}

@media (max-width: 767.98px) {
  .bd-foot-cols { display: block; }
  .bd-foot-col { border-bottom: 1px solid rgba(255,255,255,.18); padding: 14px 0; }
  .bd-foot-col:first-child { border-top: 1px solid rgba(255,255,255,.18); }
  .bd-foot-plus { display: inline-block; position: relative; width: 16px; height: 16px; flex: 0 0 16px; }
  .bd-foot-plus::before, .bd-foot-plus::after { content: ""; position: absolute; background: #fff; transition: opacity .2s ease; }
  .bd-foot-plus::before { top: 7px; left: 0; width: 16px; height: 2px; }
  .bd-foot-plus::after  { top: 0; left: 7px; width: 2px; height: 16px; }
  .bd-foot-toggle[aria-expanded="true"] .bd-foot-plus::after { opacity: 0; }
}

.footer-bottom .bd-foot-copyright { border-top: 1px solid #d6d6d6; padding: 20px 0; }

.footer-bottom .bd-foot-copy { display: flex; flex-wrap: wrap; align-items: center; color: #005596; }
.footer-bottom .bd-foot-copy .footer-link { font-size: 12px; padding: 0 16px; line-height: 1.6; }
.footer-bottom .bd-foot-copy > :first-child { padding-left: 0; }
.footer-bottom .bd-foot-copy a.footer-link { border-left: 1px solid #d6d6d6; }

.bd-site { --page-accent-tint: color-mix(in srgb, var(--page-accent, #677447) 60%, #fff); }

.sol-hero {
  background: var(--page-accent, #677447);
  color: #fff;
  min-height: 620px;
  padding-top: 64px;
  padding-bottom: 64px;
  display: flex;
  align-items: center;
}
.sol-hero > .container { width: 100%; }
.sol-hero .h-display,
.sol-hero .p-large { color: #fff; }

.sol-hero-copy { display: flex; flex-direction: column; gap: 48px; max-width: 552px; }

.sol-hero-text { display: flex; flex-direction: column; gap: 24px; padding-right: 24px; }
.sol-hero-img {
  width: 100%; height: auto; display: block;
  border-radius: 12px; object-fit: cover;
}
@media (min-width: 992px) {
  .sol-hero-inner { display: flex; align-items: center; gap: 75px; }
  .sol-hero-copy { flex: 0 0 493px; }
  .sol-hero-media { flex: 1 1 auto; min-width: 0; }
  .sol-hero-media .sol-hero-img { height: 514px; }
}

.sol-video .sol-video-overlay {
  position: absolute; inset: 0; z-index: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 24px; padding: 0 40px; text-align: center;
  pointer-events: none;
}
.sol-video-title {
  color: #fff; margin: 0; max-width: 700px;
  font-size: 38px; line-height: 1.1; letter-spacing: -0.02em; font-weight: 400;
  text-shadow: 0 2px 16px rgba(0, 0, 0, .4);
}
.sol-video .video-play { pointer-events: auto; }
.sol-video .video-placeholder.is-playing .sol-video-overlay { display: none; }

.cs-section { background: #D7DDE8; padding-top: 64px; padding-bottom: 64px; }
.cs-heading { margin-bottom: 50px; }
.cs-label { font-size: 16px; line-height: 1.4; letter-spacing: -0.01em; color: var(--page-accent); font-weight: 400; }

.cs-viewport { overflow: hidden; }
.cs-track { display: flex; }
.cs-track > .cs-slide { flex: 0 0 100%; }

.cs-slide {
  background: #fff; border-radius: 12px; padding: 40px;
  display: flex; flex-direction: column; gap: 44px;
}

.cs-card { display: flex; gap: 32px; align-items: stretch; }

.cs-card-media { flex: 0 0 416px; position: relative; align-self: stretch; }
.cs-card-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: 12px; display: block; }
.cs-card-body { display: flex; flex-direction: column; gap: 16px; }
.cs-card-title {
  font-size: 30px; line-height: 1.3; letter-spacing: -0.02em;
  color: var(--brambles-blue); font-weight: 400; margin: 0;
}
.cs-card-text { margin: 0; max-width: 497px; }
.cs-card-body .btn-brambles {
  align-self: flex-start; margin-top: 20px;
  height: 48px; display: inline-flex; align-items: center;
  padding: 0 24px; border-radius: 100px;
  font-size: 18px; line-height: 24px; letter-spacing: -0.01em;
}

.cs-divider { border: 0; border-top: 1px solid var(--stroke); margin: 0; }

.cs-results { display: flex; gap: 48px; align-items: flex-start; }
.cs-stats { flex: 1 1 auto; min-width: 0; }
.cs-stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; margin-top: 24px; }
.cs-stat-num { display: block; font-size: 38px; line-height: 1.1; letter-spacing: -0.02em; color: var(--page-accent); font-weight: 400; }
.cs-stat-text { margin: 12px 0 0; font-size: 16px; line-height: 1.4; letter-spacing: -0.01em; color: var(--dark-blue); }

.cs-quote {
  flex: 0 0 417px; margin: 0;
  background: var(--bg-grey); border-radius: 12px; padding: 32px;
  display: flex; flex-direction: column; gap: 20px;
}

.cs-quote-content { display: flex; flex-direction: column; gap: 20px; }

.cs-quote-mark {
  width: 30px; height: 24px; display: block;
  background-color: var(--page-accent);
  -webkit-mask: url(/Content/brambles-digital/assets/images/quote.svg?v=0.1) no-repeat center / contain;
  mask: url(/Content/brambles-digital/assets/images/quote.svg?v=0.1) no-repeat center / contain;
  transform: rotate(180deg);   /* SVG là dấu ĐÓNG (") → xoay 180° thành dấu MỞ (") ở đầu quote */
}
.cs-quote-text { margin: 0; font-size: 24px; line-height: 1.3; letter-spacing: -0.02em; color: var(--dark-blue); }
.cs-quote-author { display: flex; align-items: center; gap: 16px; }
.cs-quote-avatar { display: none; width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.cs-quote-person { display: flex; flex-direction: column; gap: 8px; }
.cs-quote-name { font-size: 18px; line-height: 1.3; letter-spacing: -0.02em; color: var(--brambles-blue); }
.cs-quote-role { font-size: 16px; line-height: 1.4; letter-spacing: -0.01em; color: var(--dark-blue); }

.cs-controls { display: flex; align-items: center; justify-content: space-between; margin-top: 32px; }
.cs-dots { display: flex; align-items: center; gap: 8px; }

.cs-section:has(.cs-track > .cs-slide:only-child) .cs-controls { display: none; }

.cmp-section { background: var(--dark-blue); color: #fff; padding-top: 64px; padding-bottom: 64px; }
.cmp-heading { color: #fff; text-align: left; max-width: 1040px; margin: 0 0 50px; }
.cmp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.cmp-cell { padding: 18px 20px; display: flex; align-items: center; }

.cmp-features-head { grid-row: span 2; align-items: flex-end; font-size: 24px; line-height: 1.3; letter-spacing: -0.02em; color: var(--cmp-features-color, var(--page-accent)); }

.cmp-pkg-name { justify-content: center;text-align: center; padding: 20px 24px; font-size: 24px; line-height: 1.3; letter-spacing: -0.02em; font-weight: 400; color: #0A142D; border-radius: 16px 16px 0 0; }
.cmp-pkg-name.cmp-plus { color: #fff; }
.cmp-essential { background: var(--page-accent-tint); }
.cmp-plus { background: var(--cmp-accent, var(--page-accent)); }

.cmp-essential, .cmp-plus, .cmp-col { border-left: 2px solid var(--page-accent-tint); border-right: 2px solid var(--page-accent-tint); }
.cmp-plus, .cmp-col-p { border-left-color: var(--cmp-accent, var(--page-accent)); border-right-color: var(--cmp-accent, var(--page-accent)); }

.cmp-pkg-desc { flex-direction: column; justify-content: center; text-align: center; padding: 12px 24px; font-size: 14px; line-height: 1.4; letter-spacing: -0.01em; color: #fff; }
.cmp-feature { font-size: 18px; line-height: 24px; color: #fff; padding: 14px 24px; min-height: 76px; }
.cmp-tick { justify-content: center; }
.cmp-tick .bi { font-size: 22px; color: #fff; }

.cmp-future { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.cmp-future .cmp-future-icon { width: 25px; height: 25px; background-color: var(--dark-grey);
  -webkit-mask: url(/Content/brambles-digital/assets/images/Subtract.svg?v=0.1) no-repeat center / contain;
  mask: url(/Content/brambles-digital/assets/images/Subtract.svg?v=0.1) no-repeat center / contain; }
.cmp-future-text { font-size: 12px; line-height: 1.3; letter-spacing: 0; color: #fff; text-align: center; }
.cmp-check { width: 28px; height: 28px; background-color: #fff;
  -webkit-mask: url(/Content/brambles-digital/assets/images/Check-icon.svg?v=0.1) no-repeat center / contain;
  mask: url(/Content/brambles-digital/assets/images/Check-icon.svg?v=0.1) no-repeat center / contain; }
.cmp-x { width: 25px; height: 25px; background-color: var(--dark-grey);
  -webkit-mask: url(/Content/brambles-digital/assets/images/remove.svg?v=0.1) no-repeat center / contain;
  mask: url(/Content/brambles-digital/assets/images/remove.svg?v=0.1) no-repeat center / contain; }

.cmp-val { justify-content: center; text-align: center; padding: 14px 24px; font-size: 14px; line-height: 1.4; letter-spacing: -0.01em; color: #fff; }

.cmp-feature:has(.cmp-beta) { display: block; }
.cmp-beta { float: right; margin-left: 10px; padding: 3px 8px; border-radius: 4px; background: var(--chep-blue); color: #fff; font-size: 10px; line-height: 1; letter-spacing: 0; white-space: nowrap; }
.cmp-col-last { border-bottom: 2px solid var(--page-accent-tint); }
.cmp-col-p.cmp-col-last { border-bottom-color: var(--cmp-accent, var(--page-accent)); }
.cmp-tick .cmp-x { color: var(--dark-grey); }

.cmp-row-alt { background: rgba(255, 255, 255, .05); }
.cmp-footnote { margin: 60px 0 0; text-align: left; font-size: 16px; line-height: 1.4; letter-spacing: -0.01em; color: #fff; }

.sol-related .h-1 { margin-bottom: 50px; }
.sol-related-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }

.sol-related .solution-img { aspect-ratio: auto; height: 280px; }

@media (max-width: 767px) {
  .h-1, .h-2 { font-size: 28px; }
  .h-3 { font-size: 24px; }
  .contact-section h2 { font-size: 28px; }
}

@media (max-width: 991.98px) {
  .h-display { font-size: 42px; }
  .hero .p-large, .sol-hero .p-large, .about-hero .p-large { font-size: 18px; }
  .sol-hero { padding-top: 64px; padding-bottom: 44px; }
  .sol-hero-media { margin-top: 20px; }
  .sol-hero-media .sol-hero-img { height: 305px; }
  .cs-section { padding-top: 64px; padding-bottom: 64px; }
  .cmp-section { padding-top: 64px; padding-bottom: 64px; }
  .cs-slide { padding: 24px; gap: 44px; }
  .cs-card { flex-direction: column; gap: 32px; }
  .cs-card-media { flex-basis: auto; position: static; }
  .cs-card-media img { position: static; height: 240px; }
  .cs-results { flex-direction: column; gap: 48px; }
  .cs-quote { flex-basis: auto; padding: 24px; gap: 32px; }
  .cs-controls .carousel-btn { width: 56px; height: 56px; }
  .cs-stats-grid { grid-template-columns: 1fr; gap: 20px; }
  .cmp-grid { grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) minmax(0, 1fr); }
  .cmp-cell { padding: 10px 8px; }
  .cmp-features-head { grid-row: auto; font-size: 16px; }
  .cmp-pkg-name { font-size: 16px; padding: 14px 4px; }
  .cmp-pkg-desc { display: none; }
  .cmp-feature { font-size: 11px; line-height: 14px; letter-spacing: 0; padding: 16px; min-height: 74px; }
  .cmp-val { font-size: 11px; line-height: 14px; letter-spacing: 0; padding: 16px 12px; }
  .cmp-tick .bi { font-size: 20px; }
  .cmp-future .cmp-future-icon { width: 17px; height: 17px; }
  .cmp-check { width: 20px; height: 20px; }
  .cmp-x { width: 17px; height: 17px; }
  .cmp-future-text { display: none; }
  .sol-related-grid { grid-template-columns: 1fr; gap: 60px; }
  .container { padding-left: 15px; padding-right: 15px; }
  .features-grid { padding-top: 64px; padding-bottom: 64px; }
  .features-layout { gap: 50px; }
  .side-text { max-width: none; }
  .video-section { padding-top: 64px; padding-bottom: 64px; }
  .video-placeholder { aspect-ratio: 16 / 9; height: auto; }
  .sol-video { padding-top: 64px; padding-bottom: 64px; }
  .sol-video .video-placeholder { aspect-ratio: 16 / 9; height: auto; }
  .sol-video .sol-video-title { font-size: 24px; }
  .sol-video .video-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); margin: 0; }
  .solutions-section { padding-top: 64px; padding-bottom: 64px; }
  .sol-related { padding-top: 64px; padding-bottom: 64px; }
  .why-section { padding-top: 64px; padding-bottom: 0; }
  .contact-section { padding-top: 64px; padding-bottom: 64px; }
  .solution-card .solution-img { aspect-ratio: auto; height: 280px; }
  .carousel-controls { justify-content: space-between; }
  .carousel-controls #solutionsDots { order: 0; margin-right: 0; }
  .site-navbar { position: sticky; top: 0; z-index: 1041; }
  .site-navbar .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    z-index: 1040;
    background: #fff;
    box-shadow: 0 16px 28px rgba(10, 20, 45, .12);
    border-top: 1px solid var(--bg-grey);
    padding: 8px 20px 24px;
  }
  .site-navbar .navbar-collapse.collapsing {
    transition: height 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: height;
    overflow: hidden;
  }
  .site-navbar .navbar-nav { transition: opacity 0.3s ease; }
  .site-navbar .navbar-collapse:not(.show):not(.collapsing) .navbar-nav { opacity: 0; }
  .site-navbar .navbar-collapse.show .navbar-nav,
  .site-navbar .navbar-collapse.collapsing .navbar-nav { opacity: 1; }
  .nav-brambles-digital {
    --bs-nav-link-padding-y: 14px;
    --bs-navbar-nav-link-padding-x: 0;
  }
  .nav-brambles-digital .lang-nav-item { margin-top: 16px; }
  .nav-brambles-digital .lang-nav-item + .nav-item { margin-top: 4px; }
  .site-navbar .nav-item.dropdown > .dropdown-menu {
    transform-origin: top;
    margin-top: 10px;
    padding: 8px;
  }
  .site-navbar .dropdown-menu.show {
    animation: ddIn .28s cubic-bezier(.22, .61, .36, 1);
  }
  .site-navbar .solutions-menu .dropdown-item { padding: 14px 12px; }
  .hero { padding: 64px 15px; }
  .hero > .container { max-width: none; padding-left: 0; padding-right: 0; }
  .hero-content { max-width: none; align-items: stretch; padding-right: 24px; }
  .num-item .row,
  .features-cards .row { --bs-gutter-x: 24px; }
  .num-item .row { flex-direction: column; gap: 40px; }
  .num-item .row > .col-auto,
  .num-item .row > .col { flex: 0 0 auto; width: 100%; max-width: 100%; }
  .num-item { padding-top: 48px; padding-bottom: 48px; }
  .num-item:first-child { padding-top: 0; }
}

.about-hero { background: var(--dark-blue); }
.about-hero .h-display, .about-hero .p-large { color: #fff; }

.pillars-section { padding: 64px 0; background: var(--bg-grey); }
.pillars-heading { margin-bottom: 15px; }
.pillars-intro { max-width: 751px; margin-bottom: 50px; color: var(--dark-blue); }
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }

.pillar { display: flex; flex-direction: column; gap: 16px; background: #fff;
  border-radius: 16px; padding: 24px; }
.pillar-icon { width: 40px; height: 40px; display: flex; align-items: center; }
.pillar-body { display: flex; flex-direction: column; gap: 8px; }
.pillar h3 { color: var(--brambles-blue); margin: 0; }
.pillar p { margin: 0; color: var(--dark-blue); }

.sw-section { padding: 64px 0; }
.sw-heading { margin-bottom: 15px; }
.sw-intro { max-width: 760px; margin-bottom: 50px; color: var(--dark-blue); }
.sw-layout { display: grid; grid-template-columns: 360px 1fr; gap: 30px; align-items: start; }
.sw-nav { display: flex; flex-direction: column; position: sticky; top: 88px; }

.sw-nav-item { display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: none; border: 0; border-top: 1px solid var(--stroke); text-decoration: none;
  min-height: 79px; padding: 0 24px; font-size: 24px; line-height: 1.3; letter-spacing: -0.02em;
  color: var(--brambles-blue); text-align: left; cursor: pointer; transition: background .2s ease, color .2s ease; }

.sw-nav-item.active { background: var(--bg-grey); color: var(--chep-blue); }

.sw-nav-item.active + .sw-nav-item { border-top-color: transparent; }

.sw-panels { border-top: 1px solid var(--stroke); }

.sw-panel { padding-top: 60px; scroll-margin-top: 96px; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

section[id], [id^="brambles-digital-"] { scroll-margin-top: 96px; }
.sw-panel h3 { margin-bottom: 15px; }
.sw-panel:has(.sw-features) h3 { margin-bottom: 30px; }
.sw-panel > .p-large { color: var(--dark-blue); margin-bottom: 40px; }
.sw-shot { width: 100%; height: auto; border-radius: 12px; display: block; background: #fff; }

.sw-features { display: grid; grid-template-columns: 1fr 1fr; grid-auto-flow: column; grid-template-rows: repeat(3, auto); gap: 20px 30px; }
.sw-features:not(:has(.sw-feature:nth-child(5))) { grid-template-rows: repeat(2, auto); }
.sw-feature { display: flex; gap: 12px; align-items: flex-start; }

.sw-feature .bi { color: var(--chep-blue); font-size: 20px; line-height: 1; flex: 0 0 auto; width: 20px; height: 20px; display: flex; align-items: center; justify-content: center; }
.sw-feature-title { font-size: 18px; line-height: 1.3; letter-spacing: -0.02em; color: var(--brambles-blue); margin: 0 0 12px; }
.sw-feature p { margin: 0; color: var(--dark-blue); }

.sw-end-divider { grid-column: 2; border-top: 1px solid var(--stroke); margin-top: 30px; }

.gen4-section { padding: 64px 0; background: var(--bg-grey); }

.gen4-grid { display: grid; grid-template-columns: 360px 1fr; gap: 30px; align-items: start; }
.gen4-intro h2 { color: var(--brambles-blue); margin-bottom: 24px; }
.gen4-intro p { color: var(--dark-blue); margin-bottom: 28px; }

.gen4-right { display: flex; flex-direction: column; gap: 40px; }

.gen4-media img { width: 100%; height: 440px; object-fit: cover; border-radius: 12px; display: block; }

.gen4-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: start; }
.gen4-spec-col { display: flex; flex-direction: column; gap: 47px; }

.gen4-spec-title { font-size: 24px; line-height: 1.3; letter-spacing: -0.02em; color: var(--brambles-blue); margin-bottom: 15px; }

.gen4-spec-list { list-style: disc; padding: 0 0 0 20px; margin: 0; }
.gen4-spec-list li { font-size: 16px; line-height: 1.4; letter-spacing: -0.01em; color: var(--dark-blue); }
.gen4-spec-list li + li { margin-top: 8px; }

.smart-section { padding: 64px 0; }
.smart-grid { display: grid; grid-template-columns: 456px 1fr; gap: 130px; align-items: start; }

.smart-media { position: sticky; top: 120px; align-self: start; }

.smart-wheel { position: relative; width: 456px; max-width: 100%; aspect-ratio: 1 / 1; margin-left: auto; overflow: hidden; }
.smart-wheel-img { position: absolute; inset: 0; width: 100%; height: 100%; display: block; opacity: 0; transition: opacity .55s ease; }
.smart-wheel-img.is-active { opacity: 1; }

.smart-wheel-img[data-step="2"], .smart-wheel-img[data-step="3"] {
  inset: auto; width: 140.52%; height: auto; left: -20.25%; top: -17.10%;
}
@media (prefers-reduced-motion: reduce) { .smart-wheel-img { transition: none; } }

.smart-copy h2 { margin-bottom: 15px; }
.smart-intro { color: var(--dark-blue); margin-bottom: 0; }

.smart-steps { margin-top: 56px; padding-bottom: 55vh; }

.smart-step { scroll-margin-top: 120px; opacity: 0.4; transition: opacity .4s ease; }
.smart-step.is-active { opacity: 1; }

.smart-step + .smart-step { margin-top: 48px; padding-top: 48px; border-top: 1px solid var(--stroke); }

.smart-step-num { color: var(--chep-blue); font-size: 18px; line-height: 1.3; letter-spacing: -0.02em; margin: 0 0 16px; }
.smart-step-title { font-size: 24px; line-height: 1.3; letter-spacing: -0.02em; color: var(--brambles-blue); margin: 0 0 15px; }

.smart-step p:not(.smart-step-num) { font-size: 20px; line-height: 1.4; letter-spacing: -0.01em; color: var(--dark-blue); margin: 0 0 16px; }
.smart-step p:last-child { margin-bottom: 0; }

@media (max-width: 991.98px) {
  .about-hero .sol-hero-media { margin-top: 40px; }
  .smart-section { padding: 64px 0; }
  .gen4-section { padding: 64px 0 40px; }
  .sw-section { padding: 64px 0 0; }
  .pillars-section { padding: 64px 0; }
  .sw-end-divider { grid-column: 1; margin-top: 0; }
  .pillars-grid { grid-template-columns: 1fr; gap: 30px; }
  .sw-layout { grid-template-columns: 1fr; gap: 0; }
  .sw-nav { display: none; }
  .sw-intro { margin-bottom: 50px; }
  .sw-panel { padding: 60px 0; }
  .sw-panel + .sw-panel { border-top: 1px solid var(--stroke); }
  .sw-features { grid-template-columns: 1fr; grid-auto-flow: row; grid-template-rows: auto; gap: 24px; }
  .gen4-grid { grid-template-columns: 1fr; gap: 32px; }
  .gen4-media img { object-position: right bottom; }
  .gen4-right { gap: 32px; }
  .gen4-specs { grid-template-columns: 1fr; gap: 32px; }
  .gen4-spec-col { gap: 32px; }
  .smart-grid { display: block; }
  .smart-media { position: sticky; top: 60px; z-index: 2; background: #fff; padding: 12px 0; min-width: 0; }
  .smart-wheel { width: 100%; max-width: 320px; margin: 0 auto; }
  .smart-steps { margin-top: 24px; padding-bottom: 0; }
  .smart-step { opacity: 1; }
}

@media (max-width: 767px) {
  .features-grid,
  .video-section,
  .solutions-section,
  .contact-section,
  .cs-section,
  .cmp-section,
  .sol-related,
  .pillars-section,
  .smart-section { padding-top: 50px; padding-bottom: 50px; }
  .why-section,
  .sw-section { padding-top: 50px; padding-bottom: 0; }
  .gen4-section { padding-top: 50px; padding-bottom: 40px; }
  .hero { min-height: 84vh; padding-top: 16vh; }
}

.menu-nav-hover-left-styles-footer-v3 {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    transition: right 0.4s ease;
}

.menu-nav-hover-left-styles-footer-v3.hiddena-v3 {
    right: -100px;
}

.side-pill-v3 {
    background: white;
    border-radius: 16px 0 0 16px;
    box-shadow: -2px 0 10px rgba(0,0,0,0.15);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.side-pill-v3:hover {
    box-shadow: -4px 0 15px rgba(0,0,0,0.25);
}

.side-pill__head-v3 {
    padding: 16px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #e0e0e0;
}

.side-pill__label-wrapper-v3 {
    padding: 20px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.side-pill__label-v3 {
    font-family: var(--app-font);
    font-weight: 700;
    font-size: 14px;
    line-height: 140%;
    letter-spacing: -1%;
    color: #001C66;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.nav-for-docs-v3 {
    position: fixed;
    right: -450px;
    top: 50%;
    transform: translateY(-50%);
    max-width:310px;
    width:100%;
    background: white;
    border-radius: 16px 0 0 16px;
    box-shadow: -4px 0 20px rgba(0,0,0,0.2);
    z-index: 99;
    transition: right 0.4s ease;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.nav-for-docs-v3.visiblea-v3 {
    right: 0;
}

.ping-her-v3 {
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ping-her-v3:hover {
    background: #f0f0f0;
}

.close-wrapper-v3 {
    padding: 15px 20px;
    border-bottom: 1px solid #F2F2F2;
    display: flex;
    justify-content: flex-start;
    background: white;
}

.menu-bottom-section-v3 {
    display: flex;
    flex: 1;
    overflow: hidden;
}

.menu-h-le-v3 {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.menu-content-wrapper-v3 {
    flex: 1;
    padding: 16px 0px;
    overflow-y: auto;
}

.menu-h-le-v3 h3 {
    font-size: 20px;
    color: #0079FF;
    margin-bottom: 0;
    padding: 30px 15px;
    writing-mode: vertical-lr;
    letter-spacing: 3px;
    font-weight: 700;
    background: #f8f9fa;
    width: 60px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 2px solid #e0e0e0;
    height: 100%;
}

.nav-for-docs__list-v3 {
    list-style: none;
    padding: 0px;
    margin-top:0px;
}

.nav-item-v3 {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    transition: all 0.3s ease;
    padding-left:12px;
}

.nav-item-v3:hover {
    padding-left: 5px;
}

.dot-v3 {
    width: 6px;
    height: 6px;
    background: #C7CFDC;
    border-radius: 50%;
    margin-right: 12px;
    margin-top: 8px;
    flex-shrink: 0;
}

.nav-item-v3 a {
    color: #001C66;
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: var(--app-font);
    font-weight: 400;
    font-size: 13px;
    line-height: 140%;
    letter-spacing: -1%;
}
.nav-item-v3:hover {
    background: #e5f2ff;
    border-radius: 100px;
    padding-top: 4px;
    padding-bottom: 5px;
    color: #0A142D;
    padding-left: 12px;
}
.nav-item-v3:hover .dot-v3 {
    background: #0079FF;
}
.nav-item-v3.active {
    background: #e5f2ff;
    border-radius: 100px;
    padding-top: 4px;
    padding-bottom: 5px;
    color: #0A142D;
    padding-left: 12px;
}
    .nav-item-v3.active .dot-v3 {
        background: #0079FF;
    }
    .nav-item-v3 a:hover {
        color: #0A142D;
    }

.overlay-v3 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 98;
}

.overlay-v3.active-v3 {
    opacity: 1;
    visibility: visible;
}

.nav-for-docs-v3::-webkit-scrollbar {
    width: 6px;
}

.nav-for-docs-v3::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.nav-for-docs-v3::-webkit-scrollbar-thumb {
    background: #0079FF;
    border-radius: 3px;
}

    .nav-for-docs-v3::-webkit-scrollbar-thumb:hover {
        background: #0056b3;
    }
.titl-menu-v3 {
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    width: 60px;
}
h3.titl-menu-v3-h3 {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    color: #001C66;
    font-weight: 700;
    margin: 0;
    padding: 30px 0;
    font-family: var(--app-font);
    font-weight: 700;
    font-size: 14px;
    line-height: 140%;
    letter-spacing: -1%;
}
