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

:root {
  --richever-primary: #095d40;
  --richever-secondary: #288286;
  --richever-accent: #ddb564;
  --richever-bg: #f4f6fc;
  --richever-text: #095d40;
}

/* Ensure compare table header is always visible (desktop + mobile) */
.page-why .why-compare-board > .why-compare-header {
  display: grid !important;
  position: sticky;
  top: 0;
  z-index: 6;
  min-width: 560px;
  background: linear-gradient(95deg, #0c5d4c 0%, #0f7a63 52%, #17a082 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.page-why .why-compare-board > .why-compare-header span {
  font-size: 0.78rem;
  font-weight: 800;
}

@media (max-width: 767px) {
  .page-why .why-compare-board > .why-compare-header {
    min-width: 560px;
    display: grid !important;
  }
}

/* Session appear effect: fade only, no movement */
main > section {
  opacity: 1;
  transition: opacity 0.78s cubic-bezier(0.22, 1, 0.36, 1), filter 0.78s ease;
}

main > section.session-appear-pending {
  opacity: 0;
  filter: blur(1px);
}

main > section.session-appear-inview {
  opacity: 1;
  filter: none;
}

/* Session inner hover highlight effects */

.session-hover-item {
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background-color 0.28s ease, filter 0.28s ease;
}

.session-hover-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 26px rgba(9, 93, 64, 0.16);
  filter: saturate(1.05);
}

.session-hover-item:is(li):hover {
  background: rgba(15, 106, 86, 0.08);
  border-radius: 10px;
}

/* Why compare premium interaction, keep current layout */
.page-why .why-compare-row {
  position: relative;
  overflow: hidden;
  transition: background-color 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease;
}

.page-why .why-compare-row:before {
  content: '';
  position: absolute;
  left: -35%;
  top: 0;
  width: 32%;
  height: 100%;
  opacity: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0));
  transform: skewX(-18deg);
  transition: left 0.55s ease, opacity 0.3s ease;
  pointer-events: none;
}

.page-why .why-compare-row:hover:before {
  left: 108%;
  opacity: 0.95;
}

.page-why .why-compare-row:hover {
  background: linear-gradient(180deg, rgba(244, 252, 249, 0.96), rgba(236, 248, 244, 0.9));
  box-shadow: inset 0 0 0 1px rgba(15, 106, 86, 0.16);
}

.page-why .why-compare-row p {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.page-why .why-compare-row:hover p.is-self {
  border-color: rgba(191, 120, 99, 0.5);
  background: linear-gradient(145deg, #f8efec, #fcf6f3);
}

.page-why .why-compare-row:hover p.is-rich {
  transform: translateY(-2px);
  border-color: rgba(15, 106, 86, 0.62);
  box-shadow: 0 14px 28px rgba(12, 90, 72, 0.2);
  background: linear-gradient(145deg, rgba(225, 248, 239, 0.97), rgba(242, 254, 249, 0.96));
}

.page-why .why-compare-board.compare-fx-active .why-compare-row p.is-rich {
  animation: compareRichPulse 2.8s ease-in-out infinite;
}

.page-why .why-compare-board.compare-fx-active .why-compare-row:nth-child(2n) p.is-rich {
  animation-delay: 0.8s;
}

@keyframes compareRichPulse {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(15, 106, 86, 0);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(15, 106, 86, 0.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  main > section,
  main > section.session-appear-pending,
  main > section.session-appear-inview,
  .session-hover-item,
  .page-why .why-compare-row,
  .page-why .why-compare-row p {
    transition: none !important;
    animation: none !important;
  }

  main > section.session-appear-pending {
    opacity: 1 !important;
    filter: none !important;
  }
}

body {
  font-family: 'Source Sans 3', 'Segoe UI', Tahoma, sans-serif !important;
  background-color: var(--richever-bg);
  color: var(--richever-text);
  line-height: 1.7;
  font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6,
.menu-nav > li > a,
.top-label,
.hero-eyebrow,
.section-title p {
  font-family: 'Lexend', 'Segoe UI', Tahoma, sans-serif !important;
}

a {
  color: var(--richever-primary);
}

a:hover,
a:focus {
  color: var(--richever-secondary);
}

.header-wrap {
  align-items: center;
}

.logo img {
  display: block;
  width: auto;
  height: auto;
  max-height: 68px;
}

.logo-link {
  display: inline-flex !important;
  flex-direction: column !important;
  align-items: center;
  gap: 4px;
  text-decoration: none;
}

.logo-subtitle {
  display: block;
  color: #1f7764;
  font-family: 'Lexend', 'Segoe UI', Tahoma, sans-serif;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.2;
  margin-top: 3px;
  text-align: center;
  white-space: nowrap;
}

.top-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-bottom: 8px;
}

.header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.mobile-menu-toggle {
  display: none;
}

.mobile-menu-button {
  min-width: 44px;
  min-height: 44px;
  border: 1px solid rgba(9, 93, 64, 0.2);
  border-radius: 12px;
  background: linear-gradient(145deg, #ffffff, #f1f7f5);
  color: #0f6a56;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.mobile-menu-button:hover,
.mobile-menu-button:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(15, 106, 86, 0.35);
  box-shadow: 0 8px 18px rgba(9, 93, 64, 0.14);
  color: #0d5948;
  outline: none;
}

.mobile-menu-button .uk-icon {
  width: 22px;
  height: 22px;
}

.richever-mobile-offcanvas .uk-offcanvas-bar {
  width: min(84vw, 320px);
  background:
    linear-gradient(165deg, rgba(5, 46, 37, 0.98) 0%, rgba(4, 36, 29, 0.98) 100%),
    url('/assets/images/global/navigation/mobile-menu/bg-main.jpg') center/cover no-repeat;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  padding: 18px 16px 20px;
}

.richever-mobile-offcanvas .uk-offcanvas-close {
  top: 12px;
  right: 12px;
  color: #e6f2ee;
}

.richever-mobile-menu-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 2px 0 14px;
  padding-right: 32px;
}

.richever-mobile-menu-title img {
  display: block;
  width: 40px;
  height: auto;
  max-height: 52px;
  object-fit: contain;
}

.richever-mobile-menu-title strong {
  display: block;
  color: #ffffff;
  font-family: 'Lexend', 'Segoe UI', Tahoma, sans-serif;
  font-size: 0.92rem;
  line-height: 1.2;
}

.richever-mobile-menu-title small {
  display: block;
  color: #cce4dc;
  font-size: 0.73rem;
  line-height: 1.3;
}

.richever-mobile-offcanvas .uk-nav-default > li {
  margin: 0;
}

.richever-mobile-offcanvas .uk-nav-default > li + li {
  margin-top: 6px;
}

.richever-mobile-offcanvas .uk-nav-default > li > a {
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(0, 0, 0, 0.28);
  color: #fdfefe;
  font-family: 'Lexend', 'Segoe UI', Tahoma, sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.35;
  padding: 11px 12px;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.35);
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.richever-mobile-offcanvas .uk-nav-default > li.uk-active > a,
.richever-mobile-offcanvas .uk-nav-default > li > a:hover,
.richever-mobile-offcanvas .uk-nav-default > li > a:focus {
  background: rgba(221, 181, 100, 0.9);
  border-color: rgba(221, 181, 100, 0.45);
  color: #2f2100;
  text-shadow: none;
}

.richever-mobile-lang {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.richever-mobile-lang .lang-switcher {
  width: 100%;
  justify-content: space-between;
  gap: 4px;
  padding: 3px;
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.26);
  box-shadow: none;
}

.richever-mobile-lang .lang-btn {
  flex: 1 1 0;
  justify-content: center;
  min-height: 40px;
  font-size: 0.76rem;
  font-weight: 700;
  color: #f8fffc;
}

.richever-mobile-lang .lang-btn:hover,
.richever-mobile-lang .lang-btn:focus-visible {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
}

.top-label {
  color: var(--richever-primary);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.top-lang-switch {
  display: flex;
  align-items: center;
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  border: 1px solid rgba(9, 93, 64, 0.2);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 6px 16px rgba(9, 93, 64, 0.08);
  padding: 4px;
}

.lang-btn {
  border: 0;
  background: transparent;
  color: var(--richever-primary);
  border-radius: 999px;
  padding: 6px 10px;
  font-family: 'Lexend', 'Segoe UI', Tahoma, sans-serif;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.lang-btn:hover,
.lang-btn:focus-visible {
  background: rgba(15, 106, 86, 0.12);
  color: #0f6a56;
  outline: none;
}

.lang-btn.is-active {
  background: linear-gradient(140deg, #0f6a56, #1b7a66);
  color: #ffffff;
  box-shadow: 0 8px 16px rgba(9, 93, 64, 0.18);
}

.flag-icon {
  display: inline-block;
  width: 18px;
  height: 12px;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.14);
  flex: 0 0 auto;
}

.flag-vi {
  background: #da251d;
}

.flag-vi:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #ffde00;
  transform: translate(-50%, -50%);
}

.flag-en {
  background: repeating-linear-gradient(
    to bottom,
    #b22234 0 1.9px,
    #ffffff 1.9px 3.8px
  );
}

.flag-en:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 40%;
  height: 54%;
  background: #3c3b6e;
}

.flag-en:after {
  content: '';
  position: absolute;
  left: 3px;
  top: 2px;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow:
    4px 0 0 #ffffff,
    8px 0 0 #ffffff,
    0 4px 0 #ffffff,
    4px 4px 0 #ffffff,
    8px 4px 0 #ffffff;
}

.google-translate-holder {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.goog-te-banner-frame.skiptranslate,
body > .skiptranslate {
  display: none !important;
}

body {
  top: 0 !important;
}

.menu-nav > li > a {
  color: var(--richever-primary);
  font-weight: 600;
  white-space: nowrap;
}

@media (min-width: 1025px) {
  header .uk-container {
    max-width: 1320px;
  }

  .bottom-nav .menu-nav > li:last-child > a {
    min-width: max-content;
  }
}

.menu-nav > li {
  position: relative;
}

.menu-nav > li.has-submenu:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 14px;
}

.menu-nav > li.has-submenu > a {
  position: relative;
  padding-right: 18px;
}

.menu-nav > li.has-submenu > a:after {
  content: '';
  position: absolute;
  right: 4px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-65%) rotate(45deg);
  transition: transform 0.18s ease;
}

.menu-submenu {
  list-style: none;
  margin: 0;
  padding: 4px 0;
  position: absolute;
  top: 100%;
  left: 0;
  transform: translateY(8px);
  min-width: 312px;
  border-radius: 6px;
  border: 1px solid rgba(9, 93, 64, 0.2);
  border-top: 2px solid #1f7a67;
  background: #ffffff;
  box-shadow: 0 14px 28px rgba(7, 63, 51, 0.14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0.18s;
  z-index: 50;
}

.menu-submenu:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -12px;
  height: 12px;
  background: transparent;
}

.menu-submenu li {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid rgba(9, 93, 64, 0.1);
}

.menu-submenu li + li {
  margin-left: 0 !important;
}

.menu-submenu > li:first-child {
  margin: 0 !important;
  padding: 0 !important;
}

.menu-submenu li:last-child {
  border-bottom: 0;
}

.menu-submenu li a {
  display: flex;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
  min-height: 40px;
  padding: 10px 14px 10px 18px;
  color: #115447;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.01em;
  text-transform: none;
  text-decoration: none;
  text-align: left;
  white-space: normal;
}

.menu-submenu > li:first-child > a {
  margin: 0 !important;
  padding: 10px 14px 10px 18px !important;
  text-indent: 0;
}

.menu-submenu li a:hover,
.menu-submenu li a:focus {
  color: #0c6a57;
  background: rgba(31, 122, 103, 0.08);
}

.menu-nav > li.has-submenu:hover > .menu-submenu,
.menu-nav > li.has-submenu:focus-within > .menu-submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0s;
}

.menu-nav > li.has-submenu:hover > a:after,
.menu-nav > li.has-submenu:focus-within > a:after {
  transform: translateY(-35%) rotate(225deg);
}

.menu-nav > li.active > a,
.menu-nav > li > a:hover {
  color: var(--richever-secondary);
}

.uk-container {
  max-width: 1200px;
}

.homepage main {
  padding-top: 112px;
}

main section:not(.banner-home) {
  padding: 90px 0;
}

.uk-section-large {
  padding: 110px 0;
}

.uk-section-muted {
  background: #eef2fb;
}

.home-2 {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 12% 22%, rgba(221, 181, 100, 0.22), transparent 45%),
    radial-gradient(circle at 88% 0%, rgba(40, 130, 134, 0.2), transparent 40%),
    linear-gradient(145deg, #f4f6fc, #e8f1f3);
}

.home-2:before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0.12));
  pointer-events: none;
}

.home-2 .uk-container {
  position: relative;
  z-index: 1;
}

.section-title-audience {
  margin-bottom: 22px;
}

.audience-intro {
  max-width: 860px;
  margin: 0 auto 24px;
  text-align: center;
  color: #2b5f57;
}

.audience-intro p {
  margin: 0;
}

.audience-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
}

.audience-tags span {
  background: rgba(9, 93, 64, 0.1);
  border: 1px solid rgba(9, 93, 64, 0.16);
  color: #0f6a56;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.9rem;
  font-weight: 600;
}

.audience-grid {
  margin-top: 6px;
}

.audience-card {
  width: 100%;
  height: auto;
  background: linear-gradient(180deg, #ffffff 0%, #f6fbf9 100%);
  border: 1px solid rgba(9, 93, 64, 0.12);
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(9, 93, 64, 0.1);
  padding: 20px 20px 18px;
  display: flex;
  flex-direction: column;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.audience-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(9, 93, 64, 0.14);
  border-color: rgba(40, 130, 134, 0.34);
}

.audience-card-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(140deg, #0f6a56, #1d7f6f);
  color: #ffffff;
  margin-bottom: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 18px rgba(9, 93, 64, 0.18);
}

.audience-card h4 {
  margin: 0 0 10px;
  color: #0d4f40;
  font-size: 1.2rem;
  line-height: 1.35;
}

.audience-card p {
  margin: 0;
  color: #2b5f57;
}

.banner-home {
  position: relative;
  padding: 0 !important;
  margin: 0;
}

.banner-home .uk-position {
  position: relative;
  overflow: hidden;
  padding-bottom: 0 !important;
  width: 100%;
  min-height: clamp(520px, 72vh, 920px) !important;
  height: clamp(520px, 72vh, 920px) !important;
}

.banner-home .uk-position[style] {
  padding-bottom: 0 !important;
  min-height: clamp(520px, 72vh, 920px) !important;
  height: clamp(520px, 72vh, 920px) !important;
}

.banner-home .uk-slideshow-items {
  margin: 0;
  min-height: 0 !important;
  height: 100% !important;
}

.banner-home .uk-slideshow-items[style] {
  min-height: 0 !important;
  height: 100% !important;
}

.banner-home .uk-slideshow-items > li {
  overflow: hidden;
  line-height: 0;
  height: 100%;
}

.banner-home .uk-slideshow-items > li > img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.05);
  animation: heroCoverZoom 12s ease-out both;
}

.banner-home .banner-pagination {
  bottom: 10px;
  z-index: 3;
}

.banner-home .banner-pagination .uk-slideshow-nav {
  margin: 0;
}

@keyframes heroCoverZoom {
  from {
    transform: scale(1.04);
  }
  to {
    transform: scale(1.1);
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  background: linear-gradient(100deg, rgba(4, 60, 42, 0.72), rgba(4, 60, 42, 0.22), rgba(4, 60, 42, 0.06));
}

.hero-content {
  max-width: 620px;
  color: #ffffff;
  padding: 40px 0;
}

.hero-content h1 {
  color: #ffffff;
  font-size: clamp(2.35rem, 4vw, 3.4rem);
  margin: 12px 0 16px;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.hero-content p {
  color: #f4f6fc;
  max-width: 520px;
}

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  color: var(--richever-accent);
}

.banner-home .hero-eyebrow {
  font-size: clamp(1.24rem, 2.35vw, 1.92rem);
  letter-spacing: 0.08em;
  font-weight: 700;
  line-height: 1.15;
  color: #ffffff;
  white-space: nowrap;
}

.banner-home .hero-content h1 {
  font-size: clamp(1.1rem, 2.05vw, 1.62rem);
  margin-top: 10px;
  line-height: 1.28;
  letter-spacing: 0.01em;
  color: #e6fff8;
}

.banner-home .hero-content {
  max-width: 780px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 999px;
  background: var(--richever-accent);
  color: #1a1a1a;
  font-weight: 700;
  transition: all 0.2s ease;
}

.btn-primary:focus-visible {
  outline: 3px solid rgba(221, 181, 100, 0.6);
  outline-offset: 2px;
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--richever-secondary);
  color: #ffffff;
}

.section-title h3 {
  color: var(--richever-primary);
  font-size: 2rem;
  margin: 6px 0 0;
}

.section-title p {
  color: var(--richever-secondary);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.section-title {
  margin-bottom: 36px;
}

.section-title.section-title-white h3,
.section-title.section-title-white p {
  color: var(--richever-primary);
}

.section-title.section-title-white p {
  opacity: 0.8;
}

.homepage main section {
  position: relative;
  overflow: hidden;
}

.homepage .section-title {
  max-width: 860px;
  margin: 0 auto 40px;
}

.homepage .section-title p {
  letter-spacing: 0.14em;
  color: #1f7764;
}

.homepage .section-title h3 {
  font-size: clamp(2rem, 2.8vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.homepage .home-story {
  position: relative;
  padding: 88px 0;
  min-height: clamp(560px, 82vh, 920px);
  display: flex;
  align-items: center;
}

.homepage .home-story .uk-container {
  position: relative;
  z-index: 1;
}

.homepage .home-story .section-title {
  margin-bottom: 36px;
}

.story-scene {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.story-shape {
  position: absolute;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 16px 34px rgba(7, 60, 48, 0.18);
  --shape-transform: translate3d(0, 0, 0);
  transform: var(--shape-transform);
  animation: storyShapeFloat 8s ease-in-out infinite;
}

.story-shape img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.02);
}

.story-shape--bubble {
  border-radius: 999px;
}

.story-shape--diamond {
  border-radius: 24px;
}

.story-shape--diamond img {
  transform: rotate(-45deg) scale(1.34);
}

.story-shape--intro-1 {
  width: 162px;
  height: 162px;
  left: 3%;
  top: 13%;
  --shape-transform: rotate(45deg) translate3d(0, 0, 0);
}

.story-shape--intro-2 {
  width: 190px;
  height: 190px;
  right: 3%;
  bottom: 10%;
}

.story-shape--vision-1 {
  width: 212px;
  height: 212px;
  left: 4%;
  top: 20%;
  border-color: rgba(255, 255, 255, 0.42);
}

.story-shape--vision-2 {
  width: 178px;
  height: 178px;
  right: 6%;
  bottom: 12%;
  border-color: rgba(255, 255, 255, 0.4);
  --shape-transform: rotate(45deg) translate3d(0, 0, 0);
}

.story-shape--mission-1 {
  width: 168px;
  height: 168px;
  right: 5%;
  top: 16%;
  --shape-transform: rotate(45deg) translate3d(0, 0, 0);
}

.story-shape--mission-2 {
  width: 210px;
  height: 210px;
  left: 2%;
  bottom: 7%;
}

.story-shape--core-1 {
  width: 188px;
  height: 188px;
  left: 3%;
  top: 10%;
}

.story-shape--core-2 {
  width: 172px;
  height: 172px;
  right: 5%;
  bottom: 10%;
  --shape-transform: rotate(45deg) translate3d(0, 0, 0);
}

@keyframes storyShapeFloat {
  0%,
  100% {
    transform: var(--shape-transform) translate3d(0, 0, 0);
  }
  50% {
    transform: var(--shape-transform) translate3d(0, -12px, 0);
  }
}

.home-story--vision .story-shape {
  opacity: 0.58;
}

.home-story--intro .story-shape,
  .home-story--mission .story-shape,
.home-story--core .story-shape {
  opacity: 0.55;
}

@media (prefers-reduced-motion: reduce) {
  .story-shape {
    animation: none !important;
  }
}

.story-title-with-icon {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.story-title-with-icon > span:last-child {
  display: block;
  text-align: center;
}

.story-title-icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(150deg, rgba(15, 106, 86, 0.18), rgba(15, 106, 86, 0.04));
  border: 1px solid rgba(15, 106, 86, 0.26);
  color: #0f6a56;
  box-shadow: 0 12px 24px rgba(10, 85, 68, 0.16);
  flex: 0 0 64px;
}

.story-title-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.homepage .home-story--vision .story-title-icon {
  color: #f4f9f7;
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
}

.homepage .home-story-layout {
  align-items: stretch;
}

.homepage .home-story--intro .home-story-layout {
  align-items: center;
}

.homepage .home-story--intro .home-story-panel {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-story-panel {
  position: relative;
  height: 100%;
  border-radius: 24px;
  padding: 30px 32px;
  border: 1px solid rgba(12, 88, 71, 0.14);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 45px rgba(8, 60, 48, 0.1);
  color: #1f4f44;
}

.home-story-panel p {
  margin: 0 0 14px;
  line-height: 1.74;
}

.home-story-panel p:last-child {
  margin-bottom: 0;
}

.home-story-intro-visual {
  position: relative;
  min-height: 390px;
  padding: 0;
}

.home-story-intro-media {
  position: relative;
  margin: 0;
  height: 390px;
  min-height: 390px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(12, 88, 71, 0.16);
  box-shadow: 0 20px 38px rgba(8, 66, 53, 0.16);
}

.home-story-intro-media > img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  display: block;
}

.home-story-intro-media:before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, rgba(7, 59, 47, 0.34), rgba(7, 59, 47, 0.06) 46%, rgba(7, 59, 47, 0));
  pointer-events: none;
}

.home-story-pillars {
  display: grid;
  gap: 12px;
}

.home-story-pillars article {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 16px;
  background: linear-gradient(140deg, rgba(17, 102, 84, 0.08), rgba(17, 102, 84, 0.02));
  border: 1px solid rgba(17, 102, 84, 0.16);
}

.story-pill-icon {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0f6a56;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.95), rgba(245, 252, 249, 0.82));
  border: 1px solid rgba(15, 106, 86, 0.3);
  box-shadow: 0 8px 18px rgba(9, 90, 71, 0.12);
  flex: 0 0 56px;
  line-height: 0;
}

.story-pill-icon svg {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform: translate(-50%, -50%);
}

.home-story-pillars article > div {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-story-pillars article strong {
  display: block;
  font-size: 1.08rem;
  color: #0d5a4a;
  letter-spacing: 0.02em;
  line-height: 1.25;
  margin-bottom: 2px;
}

.home-story-pillars article span {
  display: block;
  color: #295f53;
  line-height: 1.5;
  font-size: 0.92rem;
}

.homepage .home-story--intro {
  background:
    radial-gradient(circle at 8% 20%, rgba(19, 117, 96, 0.13), transparent 40%),
    linear-gradient(120deg, #f6fbf8 0%, #fdfefe 56%, #eef7f3 100%);
}

.homepage .home-story--intro:before {
  content: '';
  position: absolute;
  width: 320px;
  height: 320px;
  right: -120px;
  top: -120px;
  border-radius: 50%;
  background: rgba(221, 181, 100, 0.18);
  filter: blur(2px);
}

.homepage .home-story--vision {
  background:
    linear-gradient(125deg, rgba(8, 56, 45, 0.88), rgba(5, 37, 30, 0.9)),
    url('/assets/images/pages/home/vision/bg-main.jpg') center/cover no-repeat;
}

.homepage .home-story--vision .section-title p,
.homepage .home-story--vision .section-title h3 {
  color: #f4f9f7;
}

.homepage .home-story--vision .home-story-panel {
  max-width: 980px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08));
  color: #f4f9f7;
  box-shadow: 0 24px 42px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(5px);
}

.homepage .home-story--vision .home-story-panel:before {
  content: '"';
  position: absolute;
  left: 18px;
  top: 2px;
  font-size: 5rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.22);
  font-family: 'Playfair Display', Georgia, serif;
}

.homepage .home-story--mission {
  background:
    radial-gradient(circle at 88% 12%, rgba(211, 177, 96, 0.2), transparent 38%),
    linear-gradient(135deg, #f8fbf7 0%, #eef6f0 52%, #f8f7f2 100%);
}

.homepage .home-story--mission .home-story-panel {
  background: #ffffff;
  border-color: rgba(12, 88, 71, 0.12);
}

.home-story-panel--mission-list {
  max-width: 1040px;
  margin: 0 auto;
}

.home-story-list--compact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 13px;
  padding-left: 0;
  font-size: 1rem;
}

.home-story-list--compact li:before {
  display: none;
}

.mission-bullet-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 34px;
  color: #0f6a56;
  border: 1px solid rgba(15, 106, 86, 0.22);
  background: linear-gradient(145deg, rgba(15, 106, 86, 0.14), rgba(15, 106, 86, 0.03));
  box-shadow: 0 8px 18px rgba(9, 90, 71, 0.1);
}

.mission-bullet-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-story-lead {
  font-weight: 700;
  color: #0f5f4e;
  margin-bottom: 10px;
}

.home-story-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.home-story-list li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 22px;
  color: #264f44;
  line-height: 1.62;
}

.home-story-list li:last-child {
  margin-bottom: 0;
}

.home-story-list li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d6af61;
  box-shadow: 0 0 0 4px rgba(214, 175, 97, 0.2);
}

.homepage .home-story--core {
  background:
    radial-gradient(circle at 14% 90%, rgba(214, 182, 112, 0.22), transparent 36%),
    linear-gradient(132deg, #0d5f4e 0%, #0a4d40 52%, #0c5948 100%);
}

.homepage .home-story--core .section-title p,
.homepage .home-story--core .section-title h3 {
  color: #f4fbf8;
}

.homepage .home-story--core .story-title-icon {
  color: #f4fbf8;
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.24);
}

.home-core-card {
  position: relative;
  height: 100%;
  border-radius: 18px;
  padding: 20px 20px 18px;
  border: 1px solid rgba(10, 86, 69, 0.13);
  background: #ffffff;
  box-shadow: 0 14px 32px rgba(9, 74, 60, 0.08);
}

.home-core-card:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #0f6a56 0%, #d8b165 100%);
}

.home-core-card h4 {
  margin: 0 0 12px;
  color: #0d594a;
  font-size: 1.08rem;
  line-height: 1.34;
}

.home-core-card p {
  margin: 0;
  color: #2a554a;
  font-size: 0.95rem;
  line-height: 1.6;
}

.homepage .home-vision {
  position: relative;
  background-image:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.92) 0%,
      rgba(255, 255, 255, 0.9) 46%,
      rgba(255, 255, 255, 0.92) 100%
    ),
    url('/assets/images/pages/home/vision/bg-main.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.homepage .home-vision,
.homepage .home-vision.uk-section,
.homepage .home-vision.home-1 {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.homepage .home-vision .uk-container {
  padding-top: 0;
}

.homepage .home-vision .section-title {
  margin-top: 0;
  padding-top: 28px;
  margin-bottom: 34px;
}

.homepage .home-vision .section-title p {
  margin-top: 0;
}

.vision-surface {
  position: relative;
}

.vision-showcase {
  align-items: center;
}

.vision-content-wrap,
.vision-media-wrap {
  display: flex;
}

.vision-switcher {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
  min-height: 1px;
}

.vision-switcher > li {
  margin: 0;
  will-change: opacity, transform;
}

.vision-switcher > li.uk-active {
  display: block;
  width: 100%;
}

.vision-content-panel {
  width: 100%;
  padding: 6px 8px 6px 0;
}

.vision-switcher > li.vision-fade-in-up {
  animation: visionFadeInUp 0.62s cubic-bezier(0.2, 0.75, 0.25, 1) both;
}

.vision-switcher > li.vision-fade-in-down {
  animation: visionFadeInDown 0.62s cubic-bezier(0.2, 0.75, 0.25, 1) both;
}

.vision-switcher > li.vision-fade-out-up {
  animation: visionFadeOutUp 0.34s cubic-bezier(0.35, 0.1, 0.7, 0.25) both;
}

.vision-switcher > li.vision-fade-out-down {
  animation: visionFadeOutDown 0.34s cubic-bezier(0.35, 0.1, 0.7, 0.25) both;
}

@keyframes visionFadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes visionFadeInDown {
  from {
    opacity: 0;
    transform: translateY(-24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes visionFadeOutUp {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-16px);
  }
}

@keyframes visionFadeOutDown {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(16px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .vision-switcher > li.vision-fade-in-up,
  .vision-switcher > li.vision-fade-in-down,
  .vision-switcher > li.vision-fade-out-up,
  .vision-switcher > li.vision-fade-out-down {
    animation: none !important;
  }
}

.vision-content-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.vision-content-title p {
  margin: 0;
  color: #114b3f;
  font-family: 'Lexend', 'Segoe UI', Tahoma, sans-serif;
  font-size: clamp(1.26rem, 2vw, 1.7rem);
  font-weight: 700;
  text-transform: uppercase;
}

.vision-title-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #0f6a56;
  color: #ffffff;
}

.vision-title-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vision-content-body {
  color: #214f45;
  font-size: 0.98rem;
  line-height: 1.74;
}

.vision-content-body p {
  margin-bottom: 14px;
}

.vision-content-body .icon-list {
  margin: 0 0 12px;
}

.vision-content-body p:last-child {
  margin-bottom: 0;
}

.vision-media-nav {
  width: 100%;
  margin: 0 auto;
  max-width: 520px;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(160px, 200px));
  justify-content: center;
  column-gap: 32px;
  row-gap: 44px;
}

.vision-media-nav > li {
  margin: 0;
  position: relative;
}

.vision-media-nav > li:nth-child(3),
.vision-media-nav > li:nth-child(4) {
  transform: translateX(60px);
}

.vision-media-nav > li > a {
  position: relative;
  display: block;
  width: 190px;
  height: 190px;
  text-decoration: none;
  transition: transform 0.22s ease;
  cursor: pointer;
}

.vision-diamond-frame,
.vision-diamond-frame img {
  display: block;
  width: 100%;
  height: 100%;
}

.vision-diamond-frame {
  overflow: hidden;
  border-radius: 18px;
  transform: rotate(45deg);
  border: 7px solid rgba(12, 79, 65, 0.38);
  box-shadow: 0 12px 26px rgba(12, 79, 65, 0.18);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.vision-diamond-frame img {
  object-fit: cover;
  width: 142%;
  height: 142%;
  transform: translate(-14%, -14%) rotate(-45deg);
}

.vision-diamond-overlay {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: #0f5546;
  padding: 7px 10px;
  backdrop-filter: blur(2px);
}

.vision-diamond-overlay strong {
  font-family: 'Lexend', 'Segoe UI', Tahoma, sans-serif;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
}

.vision-diamond-overlay small {
  display: inline-flex;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(15, 106, 86, 0.14);
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
}

.vision-media-nav > li.uk-active .vision-diamond-frame {
  border-color: rgba(12, 79, 65, 0.75);
  box-shadow: 0 16px 34px rgba(12, 79, 65, 0.26);
}

.vision-media-nav > li.uk-active .vision-diamond-overlay strong {
  color: #0b463a;
}

.vision-media-nav > li > a:hover .vision-diamond-frame,
.vision-media-nav > li > a:focus .vision-diamond-frame {
  border-color: rgba(12, 79, 65, 0.65);
}

.homepage .home-vision .vision-grid {
  margin-top: 6px;
}

.vision-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(9, 93, 64, 0.16);
  min-height: 100%;
  color: #e9f7f2;
  background-color: #0e4f40;
  box-shadow: 0 14px 32px rgba(9, 93, 64, 0.18);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.vision-card:before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(5, 53, 43, 0.82), rgba(6, 74, 59, 0.68));
}

.vision-card:after {
  content: '';
  position: absolute;
  width: 220px;
  height: 220px;
  right: -86px;
  top: -94px;
  border-radius: 50%;
  background: rgba(221, 181, 100, 0.26);
  filter: blur(2px);
}

.vision-card-shell {
  position: relative;
  z-index: 1;
  padding: 24px 22px;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.vision-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.vision-card-head p {
  margin: 0;
  font-family: 'Lexend', 'Segoe UI', Tahoma, sans-serif;
  font-size: clamp(1.05rem, 1.55vw, 1.34rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: #ffffff;
}

.vision-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 40px;
}

.vision-card-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vision-card-body {
  margin-top: auto;
}

.vision-card-body p {
  margin: 0 0 10px;
  color: rgba(238, 252, 247, 0.95);
  line-height: 1.62;
}

.vision-bullet-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.vision-bullet-list li {
  position: relative;
  margin-bottom: 9px;
  padding-left: 18px;
  color: rgba(238, 252, 247, 0.95);
  line-height: 1.58;
}

.vision-bullet-list li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ddb564;
}

.vision-bullet-list li:last-child,
.vision-card-body p:last-child {
  margin-bottom: 0;
}

.vision-card--intro {
  background:
    linear-gradient(130deg, rgba(5, 71, 56, 0.8), rgba(8, 84, 67, 0.72)),
    url('/assets/images/pages/home/vision/cards/card-01.jpg') center/cover no-repeat;
}

.vision-card--vision {
  background:
    linear-gradient(130deg, rgba(11, 75, 74, 0.8), rgba(20, 91, 89, 0.72)),
    url('/assets/images/pages/home/vision/cards/card-02.jpg') center/cover no-repeat;
}

.vision-card--mission {
  background:
    linear-gradient(130deg, rgba(8, 66, 77, 0.84), rgba(9, 79, 94, 0.76)),
    url('/assets/images/pages/home/vision/cards/card-03.jpg') center/cover no-repeat;
}

.vision-card--core {
  background:
    linear-gradient(130deg, rgba(7, 80, 52, 0.82), rgba(12, 95, 65, 0.74)),
    url('/assets/images/pages/home/vision/cards/card-04.jpg') center/cover no-repeat;
}

.vision-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 36px rgba(9, 93, 64, 0.24);
}

@media (max-width: 1024px) {
  .story-shape--intro-1,
  .story-shape--mission-1,
  .story-shape--core-2 {
    width: 134px;
    height: 134px;
  }

  .story-shape--intro-2,
  .story-shape--vision-1,
  .story-shape--mission-2,
  .story-shape--core-1 {
    width: 156px;
    height: 156px;
  }

  .story-shape--vision-2 {
    width: 142px;
    height: 142px;
  }

  .homepage .home-story {
    padding: 74px 0;
    min-height: auto;
  }

  .home-story-panel {
    padding: 24px;
    border-radius: 20px;
  }

  .vision-card-shell {
    padding: 20px 18px;
  }

  .vision-card-head p {
    font-size: 1.06rem;
  }

  .vision-card-icon {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  .vision-card-icon svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 768px) {
  .story-scene .story-shape:nth-child(2) {
    display: none;
  }

  .story-shape {
    opacity: 0.35 !important;
    animation-duration: 10s;
  }

  .story-shape--intro-1,
  .story-shape--vision-1,
  .story-shape--mission-1,
  .story-shape--core-1 {
    width: 108px;
    height: 108px;
    left: auto;
    right: -24px;
    top: 14%;
  }

  .homepage .home-story {
    padding: 62px 0;
    min-height: auto;
  }

  .homepage .home-story .section-title {
    margin-bottom: 20px;
  }

  .story-title-with-icon {
    gap: 10px;
  }

  .story-title-icon {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    flex-basis: 46px;
  }

  .story-title-icon svg {
    width: 22px;
    height: 22px;
  }

  .home-story-panel {
    padding: 18px 16px;
    border-radius: 16px;
  }

  .home-story-panel p,
  .home-story-list li,
  .home-core-card p {
    font-size: 0.92rem;
    line-height: 1.58;
  }

  .home-core-card {
    padding: 20px 16px 18px;
    border-radius: 16px;
  }

  .home-core-card h4 {
    font-size: 1.08rem;
    margin-bottom: 8px;
    line-height: 1.35;
  }

  .home-core-card p {
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .home-story-pillars article {
    padding: 13px 14px;
    gap: 10px;
  }

  .homepage .home-story--intro .home-story-panel {
    min-height: 0;
  }

  .home-story-intro-visual {
    min-height: 0;
    padding: 0;
    margin-top: 8px;
  }

  .home-story-intro-media {
    height: 270px;
    min-height: 270px;
    border-radius: 16px;
  }

  .home-story-intro-media > img {
    min-height: 270px;
  }

  .story-pill-icon {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
    border-radius: 11px;
  }

  .story-pill-icon svg {
    width: 20px;
    height: 20px;
  }

  .home-story-pillars article strong {
    font-size: 0.94rem;
  }

  .home-story-pillars article span {
    font-size: 0.86rem;
  }

  .home-story-list li {
    padding-left: 18px;
    margin-bottom: 8px;
  }

  .home-story-list li:before {
    top: 9px;
    width: 7px;
    height: 7px;
    box-shadow: 0 0 0 3px rgba(214, 175, 97, 0.2);
  }

  .home-story-list--compact li {
    margin-bottom: 9px;
    gap: 9px;
  }

  .mission-bullet-icon {
    width: 28px;
    height: 28px;
    flex-basis: 28px;
    border-radius: 8px;
  }

  .mission-bullet-icon svg {
    width: 15px;
    height: 15px;
  }

  .homepage .home-story--vision .home-story-panel:before {
    font-size: 4rem;
    top: 0;
    left: 12px;
  }

  .homepage .home-vision .section-title {
    padding-top: 14px;
    margin-bottom: 20px;
  }

  .vision-card-shell {
    padding: 18px 16px;
  }

  .vision-card-head {
    margin-bottom: 10px;
  }

  .vision-card-head p {
    font-size: 1rem;
  }

  .vision-card-body p,
  .vision-bullet-list li {
    font-size: 0.92rem;
    line-height: 1.56;
  }

  .homepage .home-story--intro .home-story-panel {
    min-height: 0;
  }

  .home-story-intro-visual {
    min-height: 0;
    padding: 0;
    margin-top: 8px;
  }

  .home-story-intro-media {
    height: 270px;
    min-height: 270px;
    border-radius: 16px;
  }

  .home-story-intro-media > img {
    min-height: 270px;
  }
}

.homepage .home-diagnosis {
  background: linear-gradient(150deg, #f5f8ff 0%, #edf5f2 100%);
}

.homepage .home-scope {
  background: linear-gradient(155deg, #edf3ff 0%, #e7f2f3 55%, #edf8f2 100%);
}

.homepage .home-services {
  background: radial-gradient(circle at 88% 5%, rgba(40, 130, 134, 0.14), transparent 38%),
    linear-gradient(180deg, #f8fbfd 0%, #eef5f8 100%);
}

.heading-solutions {
  gap: 20px;
  margin-bottom: 28px;
}

.solutions-slider {
  position: relative;
}

.heading-solutions .section-title {
  margin: 0;
  max-width: 620px;
}

.solutions-controls {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.solution-tabs {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 10px;
  margin: 0;
  padding: 2px 0 2px 2px;
  list-style: none;
  overflow-x: auto;
  max-width: min(760px, 70vw);
  min-width: 0;
  scrollbar-width: none;
}

.solution-tabs::-webkit-scrollbar {
  display: none;
}

.solution-tabs > li {
  margin: 0;
  padding: 0;
  flex: 0 0 auto;
}

.page-solutions .solutions-controls {
  width: min(100%, 860px);
}

.page-solutions .solution-tabs {
  max-width: calc(100% - 54px);
}

.solution-tabs > li > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(9, 93, 64, 0.2);
  background: rgba(255, 255, 255, 0.72);
  color: #0e5a48;
  font-family: 'Lexend', 'Segoe UI', Tahoma, sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}

.solution-tabs > li > a:hover,
.solution-tabs > li > a:focus {
  border-color: rgba(9, 93, 64, 0.35);
  background: rgba(255, 255, 255, 0.95);
  color: #0c4b3d;
}

.solution-tabs > li.uk-active > a {
  border-color: transparent;
  background: linear-gradient(135deg, #0f6a56, #1d7f6f);
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(9, 93, 64, 0.2);
}

.solution-arrows {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.solution-arrow {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(9, 93, 64, 0.08);
  border: 1px solid rgba(9, 93, 64, 0.2);
  color: #0e5a48;
  transition: all 0.2s ease;
}

.solution-arrow svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.solution-arrow:hover,
.solution-arrow:focus {
  color: #ffffff;
  background: #0f6a56;
  border-color: #0f6a56;
  text-decoration: none;
}

.solutions-slider .uk-slider-items {
  margin: 0;
  padding: 0;
  list-style: none;
}

.solutions-slider .uk-slider-items > li {
  margin: 0;
}

.solution-panel {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(9, 93, 64, 0.15);
  box-shadow: 0 18px 36px rgba(9, 93, 64, 0.12);
  background: #ffffff;
}

.solution-copy-wrap,
.solution-media-wrap {
  display: flex;
}

.solution-copy {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #ffffff 0%, #f4faf8 100%);
  padding: 30px 30px 28px;
  display: flex;
  flex-direction: column;
}

.solution-copy h4 {
  color: #0d4f40;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.25;
  margin: 0 0 10px;
}

.solution-copy .service-fit,
.solution-copy .service-goal {
  margin-bottom: 8px;
  color: #2b5f57;
}

.solution-points {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
}

.solution-points li {
  position: relative;
  margin: 0 0 9px;
  padding-left: 20px;
  color: #1f4e44;
}

.solution-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ddb564;
}

.solution-kpi-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 12px 0 18px;
}

.solution-kpi-grid > div {
  border: 1px solid rgba(9, 93, 64, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.8);
  padding: 10px 12px;
  min-height: 78px;
}

.solution-kpi-grid strong {
  display: block;
  color: #0f6a56;
  font-family: 'Lexend', 'Segoe UI', Tahoma, sans-serif;
  font-size: 0.98rem;
  margin-bottom: 2px;
}

.solution-kpi-grid span {
  color: #2f5e56;
  font-size: 0.9rem;
  line-height: 1.35;
}

.solution-copy .btn-primary {
  align-self: flex-start;
}

.solution-highlight {
  margin: 4px 0 16px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(221, 181, 100, 0.42);
  background: linear-gradient(120deg, rgba(221, 181, 100, 0.24), rgba(221, 181, 100, 0.08));
  color: #0f5f4d;
  font-weight: 700;
  line-height: 1.42;
}

.solution-media {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 420px;
  overflow: hidden;
  background: #dce8e4;
}

.solution-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solution-link {
  position: absolute;
  right: 18px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(9, 93, 64, 0.88);
  color: #ffffff;
  font-family: 'Lexend', 'Segoe UI', Tahoma, sans-serif;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 10px 16px;
  transition: background-color 0.2s ease;
}

.solution-link:hover,
.solution-link:focus {
  color: #ffffff;
  background: #0e7a64;
  text-decoration: none;
}

.homepage .home-compare {
  background: linear-gradient(165deg, #f8fbff 0%, #eef3fb 100%);
}

.homepage .home-contact {
  background: radial-gradient(circle at 0% 100%, rgba(221, 181, 100, 0.16), transparent 34%),
    linear-gradient(180deg, #f4f8fb 0%, #edf6f3 100%);
}

.homepage .content-card,
.homepage .service-card,
.homepage .audience-card {
  border-radius: 20px;
  border: 1px solid rgba(9, 93, 64, 0.13);
  box-shadow: 0 16px 34px rgba(9, 93, 64, 0.08);
}

.homepage .content-card {
  background: linear-gradient(180deg, #ffffff 0%, #f9fcfb 100%);
  padding: 26px;
}

.homepage .content-card h4 {
  margin: 0 0 12px;
  color: #0d4f40;
  font-size: 1.5rem;
  line-height: 1.25;
}

.card-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(140deg, #0f6a56, #1f7d66);
  color: #ffffff;
  margin-right: 12px;
  vertical-align: middle;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 16px rgba(9, 93, 64, 0.16);
}

.panel-eyebrow {
  display: inline-flex;
  margin: 0 0 8px;
  color: #1f7764;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 700;
}

.scope-card {
  text-align: left;
  padding-top: 20px;
}

.scope-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(9, 93, 64, 0.1);
  border: 1px solid rgba(9, 93, 64, 0.2);
  color: #0f6a56;
  margin-bottom: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-label svg,
.audience-card-index svg,
.scope-index svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.homepage .content-card:hover .card-label,
.homepage .scope-card:hover .scope-index,
.homepage .audience-card:hover .audience-card-index {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(9, 93, 64, 0.22);
}

.scope-card h4 {
  margin-bottom: 8px;
  font-size: 1.18rem;
}

.scope-card p {
  margin: 0;
  color: #335f59;
}

.homepage .service-card {
  background: linear-gradient(180deg, #ffffff 0%, #f7fcfb 100%);
  padding: 20px;
}

.service-badge {
  display: inline-flex;
  align-self: flex-start;
  border-radius: 999px;
  border: 1px solid rgba(9, 93, 64, 0.2);
  background: rgba(9, 93, 64, 0.08);
  color: #0f6a56;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  padding: 5px 11px;
  margin: 0 0 10px;
}

.homepage .service-card h4 {
  color: #0d4f40;
  font-size: 1.15rem;
  line-height: 1.35;
  min-height: 62px;
}

.service-fit,
.service-goal {
  margin-bottom: 8px;
  color: #2b5f57;
}

.homepage .service-card .icon-list {
  margin-top: auto;
}

.compare-shell {
  padding: 14px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: inset 0 0 0 1px rgba(9, 93, 64, 0.08);
}

.homepage .compare-table {
  border-radius: 16px;
  border: 1px solid rgba(9, 93, 64, 0.12);
  box-shadow: 0 18px 34px rgba(9, 93, 64, 0.1);
}

.homepage .compare-row {
  padding: 18px 22px;
}

.homepage .compare-row:nth-child(even):not(.compare-head) {
  background: #f9fbff;
}

.homepage .compare-row > div:first-child {
  font-weight: 700;
  color: #0d4f40;
}

.homepage .home-contact .content-card {
  border-color: rgba(9, 93, 64, 0.16);
}

.contact-points {
  margin-bottom: 16px;
}

.contact-points li {
  margin-bottom: 8px;
}

/* Dedicated lock for Vision/Mission cards */
.vision-mission-grid {
  margin-top: 0;
}

.vision-mission-grid > div {
  display: flex;
}

.vision-mission-grid .content-card {
  width: 100%;
  height: 100%;
}

/* Strong equal-height for cards in the same visual row */
.balanced-grid {
  align-items: stretch;
}

.balanced-grid > * {
  display: flex;
  align-items: stretch;
  min-width: 0;
}

.balanced-grid > * > .content-card,
.balanced-grid > * > .service-card,
.balanced-grid > * > .pill-card,
.balanced-grid > * > .audience-card {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-width: 0;
}

.balanced-grid > .content-card,
.balanced-grid > .service-card,
.balanced-grid > .pill-card,
.balanced-grid > .audience-card {
  width: 100%;
  height: auto;
}

.content-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(9, 93, 64, 0.08);
  height: auto;
  min-height: 170px;
}

.content-card.highlight {
  border: 1px solid rgba(221, 181, 100, 0.4);
  background: #fffdf7;
}

.icon-list {
  list-style: none;
  padding-left: 0;
  margin: 12px 0 0;
}

.icon-list li {
  padding-left: 22px;
  position: relative;
  margin-bottom: 10px;
}

.icon-list li:before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--richever-accent);
  position: absolute;
  left: 0;
  top: 7px;
}

.pill-card {
  background: #ffffff;
  border-radius: 999px;
  padding: 14px 20px;
  text-align: center;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(9, 93, 64, 0.08);
  height: auto;
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(9, 93, 64, 0.08);
  height: auto;
  display: flex;
  flex-direction: column;
}

.service-card img {
  border-radius: 12px;
  margin-bottom: 14px;
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-card h4 {
  margin-top: 8px;
  margin-bottom: 10px;
}

.service-card p {
  margin-bottom: 10px;
}

.service-card ul {
  margin-top: auto;
}

.page-solutions .solutions-catalog-list {
  margin-top: 8px;
  display: grid;
  gap: 22px;
}

.page-solutions .solutions-catalog-row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(9, 93, 64, 0.14);
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(9, 93, 64, 0.1);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.page-solutions .solutions-catalog-row:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(9, 93, 64, 0.16);
  border-color: rgba(15, 106, 86, 0.28);
}

.page-solutions .solutions-catalog-row:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, #0f6a56, #ddb564);
}

.page-solutions .solutions-catalog-media {
  min-width: 0;
  background: #dce8e4;
}

.page-solutions .solutions-catalog-media img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  display: block;
}

.page-solutions .solutions-catalog-body {
  min-width: 0;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-solutions .solutions-catalog-head h4 {
  margin: 10px 0 0;
  color: #0d4f40;
  font-size: 1.26rem;
  line-height: 1.3;
}

.page-solutions .solutions-catalog-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  background: rgba(15, 106, 86, 0.08);
  border: 1px solid rgba(15, 106, 86, 0.16);
  color: #0f6a56;
  padding: 6px 12px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.page-solutions .solutions-catalog-tag svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-solutions .solutions-catalog-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.page-solutions .solutions-catalog-meta p {
  margin: 0;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(9, 93, 64, 0.12);
  background: linear-gradient(170deg, #fbfefd, #f3f9f7);
  color: #25564d;
  line-height: 1.52;
  font-size: 0.95rem;
}

.page-solutions .solutions-catalog-meta p strong {
  color: #0d4f40;
  display: block;
  margin-bottom: 3px;
}

.page-solutions .solutions-catalog-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.page-solutions .solutions-catalog-points li {
  position: relative;
  margin: 0;
  padding-left: 24px;
  color: #2b5f57;
}

.page-solutions .solutions-catalog-points li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ddb564;
  box-shadow: 0 0 0 4px rgba(221, 181, 100, 0.2);
}

.service-intro-showcase {
  background:
    radial-gradient(circle at 16% 18%, rgba(15, 106, 86, 0.08), transparent 34%),
    radial-gradient(circle at 88% 82%, rgba(221, 181, 100, 0.12), transparent 40%),
    linear-gradient(180deg, #f7fbfa 0%, #f1f7f6 100%);
}

.service-intro-layout {
  align-items: center;
}

.service-intro-media {
  position: relative;
  padding: 10px 64px 70px 0;
}

.service-intro-main img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 22px 48px rgba(9, 93, 64, 0.18);
}

.service-intro-float {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 46%;
}

.service-intro-float img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 16px;
  border: 5px solid #ffffff;
  box-shadow: 0 18px 36px rgba(9, 93, 64, 0.2);
}

.service-intro-tag {
  position: absolute;
  left: 22px;
  top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 300px;
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid rgba(9, 93, 64, 0.12);
  border-radius: 14px;
  padding: 10px 12px;
  box-shadow: 0 12px 26px rgba(9, 93, 64, 0.16);
}

.service-intro-tag-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0f6a56;
  background: rgba(15, 106, 86, 0.1);
  border: 1px solid rgba(15, 106, 86, 0.18);
  flex: 0 0 auto;
}

.service-intro-tag-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-intro-tag p {
  margin: 0;
  color: #0d4f40;
  font-size: 0.84rem;
  line-height: 1.4;
  font-weight: 700;
}

.service-intro-panel {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 20px;
  border: 1px solid rgba(9, 93, 64, 0.1);
  box-shadow: 0 18px 40px rgba(9, 93, 64, 0.1);
  padding: 22px 20px;
}

.service-intro-lead {
  margin: 0 0 18px;
  color: #1a5c4c;
  font-size: 1.02rem;
  line-height: 1.72;
}

.service-intro-points {
  margin-top: 0;
}

.service-intro-point {
  height: 100%;
  border-radius: 16px;
  border: 1px solid rgba(15, 106, 86, 0.16);
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.98), rgba(241, 248, 246, 0.95));
  padding: 2px 11px;
  box-shadow: 0 12px 24px rgba(9, 93, 64, 0.08);
}

.service-intro-point-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0f6a56;
  background: rgba(15, 106, 86, 0.1);
  border: 1px solid rgba(15, 106, 86, 0.18);
  margin-bottom: 8px;
}

.service-intro-point-icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-intro-point h4 {
  margin: 0 0 4px;
  color: #0d4f40;
  font-size: 0.92rem;
}

.service-intro-point p {
  margin: 0;
  color: #416b64;
  font-size: 0.82rem;
  line-height: 1.45;
}

.section-footnote {
  text-align: center;
  margin-top: 24px;
  font-weight: 600;
  color: var(--richever-primary);
}

.page-why .why-compare-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f7fbf9 0%, #edf4f3 100%);
}

.page-why .why-compare-section:before {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  left: -180px;
  top: -170px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(221, 181, 100, 0.34), rgba(221, 181, 100, 0));
  pointer-events: none;
}

.page-why .why-compare-section:after {
  content: '';
  position: absolute;
  width: 520px;
  height: 300px;
  right: -220px;
  bottom: -160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 106, 86, 0.16), rgba(15, 106, 86, 0));
  pointer-events: none;
}

.page-why .why-compare-section .uk-container {
  position: relative;
  z-index: 1;
}

.page-why .why-compare-intro {
  max-width: 940px;
  margin: -2px auto 22px;
  text-align: center;
  color: #285d53;
}

.page-why .why-compare-overview {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 16px;
  margin-bottom: 22px;
}

.page-why .why-compare-overview-main {
  border-radius: 20px;
  padding: 20px 22px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(248, 253, 251, 0.92));
  border: 1px solid rgba(12, 95, 65, 0.14);
  box-shadow: 0 18px 36px rgba(8, 77, 56, 0.08);
}

.page-why .why-compare-overview-kicker {
  margin: 0 0 7px;
  font-size: 0.71rem;
  letter-spacing: 0.13em;
  font-weight: 700;
  color: #0f6a56;
}

.page-why .why-compare-overview-main h4 {
  margin: 0;
  color: #0c4b3d;
  font-size: clamp(1.1rem, 2.2vw, 1.42rem);
  line-height: 1.32;
}

.page-why .why-compare-overview-main p {
  margin: 10px 0 0;
  color: #2b6158;
  font-size: 0.95rem;
  line-height: 1.72;
}

.page-why .why-compare-overview-metrics {
  display: grid;
  gap: 10px;
}

.page-why .why-compare-metric {
  border-radius: 16px;
  padding: 12px 14px;
  border: 1px solid rgba(15, 106, 86, 0.16);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(243, 250, 248, 0.94));
  box-shadow: 0 10px 22px rgba(10, 87, 66, 0.08);
}

.page-why .why-compare-metric-value {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 800;
  color: #0f6a56;
  letter-spacing: 0.05em;
}

.page-why .why-compare-metric-label {
  margin: 2px 0 0;
  font-size: 0.82rem;
  color: #39685f;
  line-height: 1.45;
}

.page-why .why-compare-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.page-why .why-compare-item {
  position: relative;
  border-radius: 22px;
  border: 1px solid rgba(9, 93, 64, 0.16);
  background: linear-gradient(165deg, #ffffff, #f5fbf8);
  box-shadow: 0 14px 30px rgba(9, 93, 64, 0.08);
  padding: 18px;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.page-why .why-compare-item:before {
  content: '';
  position: absolute;
  left: 18px;
  right: 18px;
  top: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(15, 106, 86, 0.85), rgba(15, 106, 86, 0));
}

.page-why .why-compare-item:hover {
  transform: translateY(-3px);
  border-color: rgba(15, 106, 86, 0.28);
  box-shadow: 0 20px 38px rgba(9, 93, 64, 0.13);
}

.page-why .why-compare-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.page-why .why-compare-title h4 {
  margin: 0;
  color: #0d4f40;
  font-size: 1.04rem;
  line-height: 1.35;
}

.page-why .why-compare-title-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0f6a56;
  background: rgba(15, 106, 86, 0.11);
  border: 1px solid rgba(15, 106, 86, 0.24);
  flex: 0 0 auto;
}

.page-why .why-compare-title-icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-why .why-compare-columns {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 10px;
  align-items: stretch;
}

.page-why .why-compare-arrow {
  align-self: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0f6a56;
  background: rgba(15, 106, 86, 0.12);
  border: 1px solid rgba(15, 106, 86, 0.24);
}

.page-why .why-compare-arrow svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-why .why-compare-card {
  position: relative;
  border-radius: 14px;
  border: 1px solid rgba(9, 93, 64, 0.14);
  padding: 12px 13px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 4px;
  overflow: visible;
  transition: transform 0.32s ease, box-shadow 0.32s ease, filter 0.32s ease;
}

.page-why .why-compare-card > * {
  position: relative;
  z-index: 3;
}

.page-why .why-compare-card p {
  margin: 0;
  color: #2d6058;
  line-height: 1.56;
  font-size: 0.9rem;
}

.page-why .why-compare-card .why-compare-label {
  margin: 0 0 6px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.66rem;
  font-weight: 800;
  line-height: 1.3;
}

.page-why .why-compare-card .why-compare-label:before {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex: 0 0 auto;
}

.page-why .why-compare-card.is-self {
  background: linear-gradient(170deg, #fff8f6, #fff1ee);
  border-color: rgba(176, 92, 69, 0.27);
  box-shadow: inset -3px 0 0 rgba(180, 74, 54, 0.26);
  padding-right: 20px;
}

.page-why .why-compare-card.is-self .why-compare-label {
  color: #9d3f2f;
}

.page-why .why-compare-card.is-self .why-compare-label:before {
  content: '!';
  color: #ffffff;
  background: #b44a36;
}

.page-why .why-compare-card.is-self:before {
  content: '';
  position: absolute;
  right: 8px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(180deg, rgba(180, 74, 54, 0), rgba(180, 74, 54, 0.42), rgba(180, 74, 54, 0));
}

.page-why .why-compare-card.is-self:after {
  content: '';
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid rgba(180, 74, 54, 0.75);
  filter: drop-shadow(0 2px 4px rgba(180, 74, 54, 0.24));
  z-index: 2;
}

.page-why .why-compare-card.is-richever {
  background: linear-gradient(170deg, #f2fbf7, #e8f8f0);
  border-color: rgba(15, 106, 86, 0.26);
  box-shadow: inset 3px 0 0 rgba(15, 106, 86, 0.3), 0 8px 18px rgba(15, 106, 86, 0.12);
  padding-left: 20px;
  animation: whyRicheverPulse 2.8s cubic-bezier(0.4, 0.04, 0.2, 0.96) infinite;
  transform-origin: center;
  will-change: transform, box-shadow;
}

.page-why .why-compare-card.is-richever .why-compare-label {
  color: #0f6a56;
}

.page-why .why-compare-card.is-richever .why-compare-label:before {
  content: '\2713';
  color: #ffffff;
  background: #0f6a56;
}

.page-why .why-compare-card.is-richever:before {
  content: '';
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid rgba(15, 106, 86, 0.85);
  filter: drop-shadow(0 2px 5px rgba(15, 106, 86, 0.28));
  z-index: 2;
}

.page-why .why-compare-card.is-richever:after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(112deg, rgba(255, 255, 255, 0) 24%, rgba(255, 255, 255, 0.58) 46%, rgba(255, 255, 255, 0) 66%);
  transform: translateX(-145%);
  mix-blend-mode: screen;
  opacity: 0.85;
  pointer-events: none;
  animation: whyRicheverShine 2.8s ease-in-out infinite;
  z-index: 1;
}

.page-why .why-compare-item:nth-child(odd) .why-compare-card.is-richever {
  animation-delay: 0.24s;
}

.page-why .why-compare-item:nth-child(odd) .why-compare-card.is-richever:after {
  animation-delay: 0.24s;
}

.page-why .why-compare-item:nth-child(3n) .why-compare-card.is-richever {
  animation-delay: 0.46s;
}

.page-why .why-compare-item:nth-child(3n) .why-compare-card.is-richever:after {
  animation-delay: 0.46s;
}

@keyframes whyRicheverPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: inset 3px 0 0 rgba(15, 106, 86, 0.3), 0 8px 18px rgba(15, 106, 86, 0.1);
    filter: brightness(1);
  }
  50% {
    transform: scale(1.042);
    box-shadow: inset 3px 0 0 rgba(15, 106, 86, 0.38), 0 18px 34px rgba(15, 106, 86, 0.25);
    filter: brightness(1.06);
  }
}

@keyframes whyRicheverShine {
  0%,
  22% {
    transform: translateX(-145%);
  }
  58%,
  100% {
    transform: translateX(145%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-why .why-compare-card {
    transition: none;
  }

  .page-why .why-compare-card.is-richever,
  .page-why .why-compare-card.is-richever:after {
    animation: none;
  }

  .page-why .why-compare-card.is-richever {
    transform: none;
    filter: none;
    box-shadow: inset 3px 0 0 rgba(15, 106, 86, 0.3), 0 8px 18px rgba(15, 106, 86, 0.1);
  }

  .page-why .why-compare-card.is-richever:after {
    opacity: 0;
  }
}

.page-hero {
  position: relative;
  padding: 120px 0 80px;
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.page-hero:before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(9, 93, 64, 0.55);
}

.page-hero .hero-content {
  position: relative;
  z-index: 1;
}

.page-why .page-hero .hero-content h1 {
  font-size: clamp(1.9rem, 3.1vw, 2.55rem);
}

.page-solutions .page-hero .hero-content h1 {
  font-size: clamp(1.88rem, 3vw, 2.45rem);
}

.page-contact .page-hero .hero-content h1 {
  font-size: clamp(1.86rem, 3.05vw, 2.48rem);
}

.page-contact .page-hero .hero-content p {
  display: inline-block;
  margin-top: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: #f6fffd;
  font-size: 0.88rem;
  line-height: 1.35;
}

.page-contact .contact-hub-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(5, 61, 49, 0.72) 0%, rgba(11, 70, 56, 0.6) 34%, rgba(9, 93, 64, 0.5) 65%, rgba(11, 95, 83, 0.5) 100%),
    url('/assets/images/pages/contact/hub/bg-main.jpg') center/cover no-repeat;
}

.page-contact .contact-hub-section:before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0) 38%),
    linear-gradient(100deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0) 62%);
  pointer-events: none;
}

.page-contact .contact-hub-section .uk-container {
  position: relative;
  z-index: 1;
}

.page-contact .contact-hub-section .section-title {
  margin-bottom: 26px;
}

.page-contact .contact-hub-section .section-title p {
  color: #dbeee8;
}

.page-contact .contact-hub-section .section-title h3 {
  color: #ffffff;
}

.page-contact .contact-cooperate-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(116deg, rgba(246, 252, 249, 0.96) 0%, rgba(242, 250, 246, 0.92) 42%, rgba(234, 246, 241, 0.88) 100%),
    url('/assets/images/pages/contact/cooperate/bg-main.jpg') center/cover no-repeat;
}

.page-contact .contact-cooperate-section:before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 84% 18%, rgba(15, 106, 86, 0.12), rgba(15, 106, 86, 0) 38%),
    linear-gradient(108deg, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0) 54%);
  pointer-events: none;
}

.page-contact .contact-cooperate-section .uk-container {
  position: relative;
  z-index: 1;
}

.page-contact .contact-cooperate-section .section-title {
  margin-bottom: 24px;
}

.page-contact .contact-cooperate-section .section-title p {
  color: #275b51;
}

.page-contact .contact-cooperate-section .section-title h3 {
  color: #0f4f42;
}

.page-contact .contact-cooperate-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 24px;
  align-items: stretch;
}

.page-contact .contact-cooperate-overview,
.page-contact .contact-cooperate-points {
  min-width: 0;
  border-radius: 24px;
  padding: 28px 26px;
  border: 1px solid rgba(15, 106, 86, 0.16);
  box-shadow: 0 18px 32px rgba(8, 67, 54, 0.14);
}

.page-contact .contact-cooperate-overview {
  background:
    linear-gradient(152deg, rgba(255, 255, 255, 0.95) 0%, rgba(246, 253, 250, 0.92) 100%),
    url('/assets/images/pages/contact/cooperate/bg-overview.jpg') center/cover no-repeat;
}

.page-contact .contact-cooperate-overview h4 {
  margin: 0;
  color: #0f4f42;
  font-size: clamp(1.35rem, 2.3vw, 1.74rem);
  line-height: 1.28;
}

.page-contact .contact-cooperate-overview p {
  margin: 12px 0 0;
  color: #2d5f56;
  font-size: 0.98rem;
  line-height: 1.72;
}

.page-contact .contact-cooperate-points {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(168deg, rgba(11, 84, 69, 0.94) 0%, rgba(8, 69, 57, 0.96) 100%),
    url('/assets/images/pages/contact/cooperate/bg-points.jpg') center/cover no-repeat;
  border-color: rgba(255, 255, 255, 0.24);
}

.page-contact .contact-cooperate-points:before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(239, 209, 139, 0.2), rgba(239, 209, 139, 0) 44%),
    linear-gradient(112deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 66%);
  pointer-events: none;
}

.page-contact .contact-cooperate-points .icon-list {
  position: relative;
  z-index: 1;
  margin: 10px 0 0;
}

.page-contact .contact-cooperate-points h4 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #f3fff9;
  font-size: clamp(1.35rem, 2.3vw, 1.74rem);
  line-height: 1.28;
}

.page-contact .contact-cooperate-points .icon-list li {
  margin-bottom: 12px;
  padding-left: 24px;
  color: #ecf7f3;
  line-height: 1.7;
}

.page-contact .contact-cooperate-points .icon-list li:last-child {
  margin-bottom: 0;
}

.page-contact .contact-cooperate-points .icon-list li:before {
  width: 11px;
  height: 11px;
  top: 8px;
  background: #efd18b;
  box-shadow: 0 0 0 3px rgba(239, 209, 139, 0.24);
}

.page-contact .contact-cooperate-cta {
  margin: 14px 0 0 !important;
  padding: 9px 12px;
  border-radius: 12px;
  border: 1px solid rgba(15, 106, 86, 0.28);
  background: rgba(15, 106, 86, 0.08);
  color: #0f5c4c;
  font-size: 0.88rem;
  line-height: 1.5;
  font-weight: 600;
}

.page-contact .contact-ttc-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 24px;
  align-items: stretch;
}

.page-contact .contact-ttc-form-card,
.page-contact .contact-ttc-info-card {
  border-radius: 24px;
  min-width: 0;
}

.page-contact .contact-ttc-form-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0 20px 36px rgba(5, 54, 43, 0.26);
  padding: 30px 28px;
}

.page-contact .contact-ttc-form-card h4,
.page-contact .contact-ttc-info-card h4 {
  margin: 0;
  font-size: clamp(1.5rem, 2.4vw, 1.94rem);
  line-height: 1.2;
  color: #0d4f40;
}

.page-contact .contact-ttc-intro {
  margin: 10px 0 18px;
  color: #295e55;
  font-size: 1rem;
  line-height: 1.7;
}

.page-contact .contact-ttc-form {
  display: grid;
  gap: 14px;
}

.page-contact .contact-ttc-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.page-contact .contact-ttc-field {
  display: grid;
  gap: 7px;
  margin: 0;
  min-width: 0;
}

.page-contact .contact-ttc-field > span {
  font-family: 'Lexend', 'Segoe UI', Tahoma, sans-serif;
  font-size: 0.84rem;
  font-weight: 600;
  color: #1f5e51;
  letter-spacing: 0.01em;
}

.page-contact .contact-ttc-field input,
.page-contact .contact-ttc-field textarea {
  display: block;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(9, 93, 64, 0.2);
  background: #ffffff;
  color: #0f4e42;
  border-radius: 13px;
  padding: 11px 13px;
  font-size: 0.95rem;
  line-height: 1.5;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

.page-contact .contact-ttc-field textarea {
  min-height: 120px;
  resize: vertical;
}

.page-contact .contact-ttc-field input::placeholder,
.page-contact .contact-ttc-field textarea::placeholder {
  color: #698e87;
}

.page-contact .contact-ttc-field input:focus,
.page-contact .contact-ttc-field textarea:focus {
  outline: 0;
  border-color: rgba(15, 106, 86, 0.55);
  box-shadow: 0 0 0 3px rgba(15, 106, 86, 0.14);
  background: #fcfefd;
}

.page-contact .contact-ttc-submit {
  justify-self: start;
  border: 0;
  border-radius: 999px;
  padding: 12px 24px;
  font-family: 'Lexend', 'Segoe UI', Tahoma, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #093b31;
  letter-spacing: 0.01em;
  background: linear-gradient(145deg, #f2d58d, #ddb564);
  box-shadow: 0 12px 24px rgba(63, 51, 20, 0.2);
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.page-contact .contact-ttc-submit:hover,
.page-contact .contact-ttc-submit:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(63, 51, 20, 0.26);
}

.page-contact .contact-ttc-submit:disabled {
  opacity: 0.78;
  cursor: wait;
  transform: none;
}

.page-contact .contact-ttc-submit:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.65);
  outline-offset: 2px;
}

.page-contact .contact-ttc-status {
  margin: 2px 2px 0;
  min-height: 20px;
  font-family: 'Source Sans 3', 'Segoe UI', Tahoma, sans-serif;
  font-size: 0.9rem;
  line-height: 1.4;
  color: #3f6e66;
}

.page-contact .contact-ttc-status.is-loading {
  color: #4f6f68;
}

.page-contact .contact-ttc-status.is-success {
  color: #18724f;
}

.page-contact .contact-ttc-status.is-error {
  color: #b13a3a;
}

.page-contact .contact-ttc-info-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(170deg, rgba(10, 73, 58, 0.94) 0%, rgba(6, 57, 46, 0.95) 100%),
    url('/assets/images/pages/contact/info/bg-main.jpg') center/cover no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.26);
  box-shadow: 0 20px 36px rgba(3, 40, 33, 0.32);
  padding: 30px 26px;
  color: #e8f5f1;
}

.page-contact .contact-ttc-info-card:before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 100% 10%, rgba(221, 181, 100, 0.22), rgba(221, 181, 100, 0) 44%),
    linear-gradient(110deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 62%);
  pointer-events: none;
}

.page-contact .contact-ttc-info-card > * {
  position: relative;
  z-index: 1;
}

.page-contact .contact-ttc-info-card h4 {
  color: #ffffff;
}

.page-contact .contact-ttc-contact-list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.page-contact .contact-ttc-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(4px);
  padding: 11px 12px;
}

.page-contact .contact-ttc-info-icon {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #f3dca1;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.page-contact .contact-ttc-info-icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-contact .contact-ttc-contact-list p {
  margin: 0 0 3px;
  color: #bfdcd3;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.page-contact .contact-ttc-contact-list a,
.page-contact .contact-ttc-contact-list span {
  color: #ffffff;
  font-family: 'Lexend', 'Segoe UI', Tahoma, sans-serif;
  font-size: 0.93rem;
  line-height: 1.45;
}

.page-contact .contact-ttc-contact-list a {
  text-decoration: none;
}

.page-contact .contact-ttc-contact-list a:hover,
.page-contact .contact-ttc-contact-list a:focus {
  color: #f2d58d;
  text-decoration: none;
}

.page-contact .contact-ttc-company-block {
  margin-top: 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  padding: 14px 15px;
}

.page-contact .contact-ttc-company-block h5 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 0.98rem;
}

.page-contact .contact-ttc-company-block p {
  margin: 0;
  color: #d8ebe5;
  font-size: 0.9rem;
  line-height: 1.55;
}

.page-contact .contact-ttc-company-block p + p {
  margin-top: 4px;
}

.page-fit .page-hero {
  padding: 132px 0 92px;
}

.page-fit .fit-enterprise-section,
.page-solutions .fit-enterprise-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(165deg, #eef7f4 0%, #e4f2ee 52%, #f8fcfb 100%);
}

.page-fit .fit-enterprise-overlay,
.page-solutions .fit-enterprise-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.05) 34%,
      rgba(255, 255, 255, 0.2) 48%,
      rgba(255, 255, 255, 0.56) 62%,
      rgba(255, 255, 255, 0.86) 76%,
      rgba(255, 255, 255, 0.97) 88%,
      rgba(255, 255, 255, 1) 100%
    ),
    radial-gradient(circle at 84% 50%, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0) 54%);
  pointer-events: none;
}

.page-fit .fit-enterprise-section .uk-container,
.page-solutions .fit-enterprise-section .uk-container {
  position: relative;
  z-index: 2;
}

.fit-maintenance-layout {
  align-items: center;
}

.fit-diamond-cluster {
  --diamond-size: 223px;
  --diamond-gap-x: 44px;
  --diamond-gap-y: 36px;
  position: relative;
  width: calc(var(--diamond-size) * 2.5 + var(--diamond-gap-x) * 1.5);
  height: calc(var(--diamond-size) * 1.5 + var(--diamond-gap-y));
  margin: 0 auto 0 0;
}

.fit-diamond-item {
  --diamond-bg: linear-gradient(140deg, rgba(116, 176, 160, 0.42), rgba(84, 145, 129, 0.2));
  position: absolute;
  width: var(--diamond-size);
  height: var(--diamond-size);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: none;
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  border-radius: 0;
  border: 1px solid rgba(9, 93, 64, 0.26);
  background-image:
    linear-gradient(165deg, rgba(255, 255, 255, 0.84), rgba(242, 251, 249, 0.66)),
    var(--diamond-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 16px 34px rgba(9, 93, 64, 0.12);
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  cursor: pointer;
}

.fit-diamond-item:before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.56), transparent 44%),
    linear-gradient(165deg, rgba(255, 255, 255, 0.24), rgba(45, 140, 123, 0.08));
  pointer-events: none;
}

.fit-diamond-item:after {
  content: '';
  position: absolute;
  left: -62%;
  top: -48%;
  width: 42%;
  height: 196%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.44),
    rgba(255, 255, 255, 0)
  );
  transform: rotate(24deg);
  opacity: 0;
  transition: left 0.46s ease, opacity 0.34s ease;
  pointer-events: none;
}

.fit-diamond-item:hover {
  transform: translateY(-6px) scale(1.03);
  border-color: rgba(45, 140, 123, 0.48);
  box-shadow: 0 22px 40px rgba(9, 93, 64, 0.18);
}

.fit-diamond-item:hover:after {
  left: 118%;
  opacity: 1;
}

.fit-diamond-item:nth-child(1) {
  --diamond-bg: linear-gradient(140deg, rgba(116, 176, 160, 0.42), rgba(84, 145, 129, 0.2));
  left: 0;
  top: 0;
}

.fit-diamond-item:nth-child(2) {
  --diamond-bg: linear-gradient(140deg, rgba(113, 161, 190, 0.42), rgba(86, 129, 158, 0.2));
  left: calc(var(--diamond-size) + var(--diamond-gap-x));
  top: 0;
}

.fit-diamond-item:nth-child(3),
.fit-diamond-item:nth-child(4) {
  top: calc(var(--diamond-size) * 0.5 + var(--diamond-gap-y));
}

.fit-diamond-item:nth-child(3) {
  --diamond-bg: linear-gradient(140deg, rgba(106, 176, 143, 0.42), rgba(75, 145, 112, 0.2));
  left: calc(var(--diamond-size) * 0.5 + var(--diamond-gap-x) * 0.5);
}

.fit-diamond-item:nth-child(4) {
  --diamond-bg: linear-gradient(140deg, rgba(170, 186, 122, 0.42), rgba(139, 153, 91, 0.2));
  left: calc(var(--diamond-size) * 1.5 + var(--diamond-gap-x) * 1.5);
}

.fit-diamond-inner {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 64%;
  max-width: 144px;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
}

.fit-diamond-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(9, 93, 64, 0.09);
  color: #0f6a56;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  flex: 0 0 auto;
}

.fit-diamond-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fit-diamond-inner p {
  margin: 0 auto;
  width: 100%;
  display: block;
  text-align: center;
  color: #0d4f40;
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1.2;
  max-width: none;
}

.fit-maintenance-panel {
  background: transparent;
  color: var(--richever-primary);
  padding: 0 0 0 8px;
  box-shadow: none;
  border: 0;
}

.fit-maintenance-panel h3 {
  margin: 0 0 14px;
  color: #0b4f3f;
  font-size: clamp(1.08rem, 1.2vw, 1.24rem);
  line-height: 1.18;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.fit-maintenance-panel p {
  color: #1f4f47;
}

.fit-list li:before {
  background: #2d8c7b;
}

.fit-maintenance-panel .btn-primary {
  margin-top: 12px;
}

.fit-packages {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 247, 252, 0.96));
}

.fit-packages-title {
  max-width: 980px;
  margin: 0 auto 20px;
  text-align: center;
}

.page-solutions .fit-packages-title h3 {
  font-size: clamp(1.64rem, 2.1vw, 2.06rem);
}

.page-solutions .section-title {
  margin-bottom: 32px;
}

.page-solutions .section-title p {
  margin: 0 0 8px;
  font-size: 0.84rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.page-solutions .section-title h3 {
  margin: 0;
  font-size: clamp(1.86rem, 2.45vw, 2.34rem);
  line-height: 1.14;
  letter-spacing: -0.01em;
}

.fit-package-slider {
  margin-top: 14px;
}

.fit-packages--single {
  padding-top: 24px;
  padding-bottom: 24px;
}

.fit-package-single {
  max-width: 980px;
  margin: 0 auto;
}

.fit-package-grid {
  list-style: none;
  margin: 0;
  padding: 0;
}

.fit-package-card {
  border-radius: 20px;
  border: 1px solid rgba(9, 93, 64, 0.14);
  background: linear-gradient(180deg, #ffffff, #f8fcfb);
  box-shadow: 0 16px 34px rgba(9, 93, 64, 0.12);
  padding: 24px 24px 22px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.fit-package-grid > li:nth-child(2) .fit-package-card,
.fit-package-grid > li:nth-child(3) .fit-package-card {
  background: linear-gradient(170deg, #0d5a46, #0a4435);
  border-color: rgba(221, 181, 100, 0.36);
}

.fit-package-card.is-dark {
  background: linear-gradient(170deg, #0d5a46, #0a4435);
  border-color: rgba(221, 181, 100, 0.36);
}

.fit-package-label {
  margin: 0 0 12px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #1b7863;
  font-weight: 700;
}

.fit-package-grid > li:nth-child(2) .fit-package-label,
.fit-package-grid > li:nth-child(2) .fit-package-card h4,
.fit-package-grid > li:nth-child(2) .fit-package-features li,
.fit-package-grid > li:nth-child(3) .fit-package-label,
.fit-package-grid > li:nth-child(3) .fit-package-card h4,
.fit-package-grid > li:nth-child(3) .fit-package-features li {
  color: #f4f6fc;
}

.fit-package-card.is-dark .fit-package-label,
.fit-package-card.is-dark h4,
.fit-package-card.is-dark .fit-package-features li {
  color: #f4f6fc;
}

.fit-package-head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
}

.fit-package-head h4 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.35;
  color: #0d4f40;
}

.fit-package-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(9, 93, 64, 0.1);
  color: #0f6a56;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 42px;
}

.fit-package-grid > li:nth-child(2) .fit-package-icon,
.fit-package-grid > li:nth-child(3) .fit-package-icon {
  background: rgba(255, 255, 255, 0.14);
  color: var(--richever-accent);
}

.fit-package-card.is-dark .fit-package-icon {
  background: rgba(255, 255, 255, 0.14);
  color: var(--richever-accent);
}

.fit-package-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fit-package-features {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
}

.fit-package-features li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  color: #2d635b;
}

.fit-package-note {
  margin: 6px 0 0;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(9, 93, 64, 0.16);
  background: rgba(9, 93, 64, 0.07);
  color: #0f5f4d;
  font-weight: 700;
  line-height: 1.45;
}

.fit-package-grid > li:nth-child(2) .fit-package-note,
.fit-package-grid > li:nth-child(3) .fit-package-note {
  border-color: rgba(221, 181, 100, 0.34);
  background: rgba(221, 181, 100, 0.16);
  color: #fff8e8;
}

.fit-package-card.is-dark .fit-package-note {
  border-color: rgba(221, 181, 100, 0.34);
  background: rgba(221, 181, 100, 0.16);
  color: #fff8e8;
}

.fit-package-features li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(15, 106, 86, 0.2);
  box-shadow: inset 0 0 0 3px rgba(15, 106, 86, 0.38);
}

.fit-package-grid > li:nth-child(2) .fit-package-features li:before,
.fit-package-grid > li:nth-child(3) .fit-package-features li:before {
  background: rgba(221, 181, 100, 0.24);
  box-shadow: inset 0 0 0 3px rgba(221, 181, 100, 0.64);
}

.fit-package-card.is-dark .fit-package-features li:before {
  background: rgba(221, 181, 100, 0.24);
  box-shadow: inset 0 0 0 3px rgba(221, 181, 100, 0.64);
}

.fit-slider-nav {
  background: rgba(255, 255, 255, 0.96);
  color: #0f6a56;
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(9, 93, 64, 0.2);
  width: 42px;
  height: 42px;
}

.fit-slider-nav:hover,
.fit-slider-nav:focus {
  color: #ffffff;
  background: #0f6a56;
  text-decoration: none;
}

.fit-difference {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 760px;
  overflow: hidden;
  background: url('/assets/images/pages/why-choose/fit-issues/bg-main.jpg') right center/cover no-repeat;
}

.fit-difference-overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 76%;
  z-index: 1;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.97) 68%, rgba(255, 255, 255, 0.9) 100%);
  clip-path: polygon(0 0, 84% 0, 100% 50%, 84% 100%, 0 100%);
  border-right: 1px solid rgba(12, 88, 71, 0.2);
  box-shadow: 18px 0 34px rgba(12, 88, 71, 0.1);
  pointer-events: none;
}

.fit-difference .uk-container {
  position: relative;
  z-index: 2;
}

.fit-difference .section-title p,
.fit-difference .section-title h3 {
  color: #0c5847;
}

.fit-difference .section-title {
  margin-bottom: 18px;
}

.fit-difference-shell {
  max-width: 92%;
}

.fit-difference-grid {
  margin-top: 2px;
}

.fit-difference-item {
  height: 100%;
  padding: 10px 6px 8px;
}

.fit-difference-icon {
  width: 66px;
  height: 66px;
  border-radius: 20px;
  border: 1px solid rgba(12, 88, 71, 0.22);
  background: linear-gradient(165deg, rgba(12, 88, 71, 0.12), rgba(12, 88, 71, 0.03));
  color: #0f6a56;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  box-shadow: 0 10px 24px rgba(9, 73, 59, 0.16);
}

.fit-difference-icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fit-difference-content h4 {
  margin: 0 0 8px;
  color: #0c5847;
  font-size: 1.02rem;
  line-height: 1.28;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.fit-difference-content p {
  margin: 0;
  color: rgba(24, 53, 45, 0.92);
  font-size: 0.95rem;
  line-height: 1.62;
  text-align: justify;
}

.fit-process {
  background: linear-gradient(180deg, #f4f8f7 0%, #eef4f3 100%);
}

.fit-process-intro {
  max-width: 920px;
  margin: 0 auto 16px;
  text-align: center;
  color: #1f4f47;
}

.fit-process-track {
  position: relative;
  margin-top: 14px;
  padding: 0 18px;
}

.fit-process-line {
  position: absolute;
  top: 72px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: rgba(15, 106, 86, 0.28);
}

.fit-process-list {
  position: relative;
  margin-top: 0;
}

.fit-process-list > * {
  position: relative;
  z-index: 1;
}

.fit-process-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 24px;
  min-height: 260px;
  background: transparent;
  border: 0;
}

.fit-process-icon {
  transition: transform 0.28s ease;
  cursor: pointer;
}

.fit-bevel-corner {
  width: 102px;
  height: 102px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(45deg);
  clip-path: polygon(16% 0, 84% 0, 100% 16%, 100% 84%, 84% 100%, 16% 100%, 0 84%, 0 16%);
  background: #dde7e4;
  padding: 12px;
  transition: background 0.28s ease;
}

.fit-bevel-content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(16% 0, 84% 0, 100% 16%, 100% 84%, 84% 100%, 16% 100%, 0 84%, 0 16%);
  background: #eef4f2;
  transition: background 0.28s ease;
}

.fit-process-node-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0f6a56;
  border: 1px solid rgba(15, 106, 86, 0.2);
  background: rgba(15, 106, 86, 0.08);
  transform: rotate(-45deg);
  transition: color 0.28s ease, background 0.28s ease, border-color 0.28s ease;
}

.fit-process-node-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fit-process-caption {
  margin: 24px 0 8px;
  max-width: 178px;
  color: #0d4f40;
  line-height: 1.35;
  font-size: 0.98rem;
}

.fit-process-desc {
  margin: 0;
  max-width: 184px;
  color: #3f6560;
  line-height: 1.5;
  font-size: 0.88rem;
}

.fit-process-item:hover .fit-process-icon {
  transform: scale(1.08);
}

.fit-process-item:hover .fit-bevel-corner,
.fit-process-item:hover .fit-bevel-content {
  background: #0f6a56;
}

.fit-process-item:hover .fit-process-node-icon {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
}

.fit-process-item:hover .fit-process-caption {
  color: #0b4f3f;
}

@media (max-width: 1199px) {
  .fit-process-track {
    padding: 0;
  }

  .fit-process-line {
    display: none;
  }

  .fit-process-item {
    min-height: 0;
    padding-top: 14px;
  }
}

.site-footer {
  background: linear-gradient(180deg, #eef6f1 0%, #e4eee8 100%);
  color: #1f493f;
  border-top: 1px solid rgba(9, 93, 64, 0.16);
  padding: 18px 0;
  margin-top: 18px;
}

.site-footer .footer-grid {
  align-items: center;
  row-gap: 10px;
}

.site-footer p {
  color: #2b5a4f;
  margin: 0;
  line-height: 1.28;
}

.site-footer p + p {
  margin-top: 1px;
}

.site-footer strong {
  color: #103f35;
  font-weight: 700;
}

.footer-brand {
  display: flex;
  align-items: center;
}

.footer-company {
  display: grid;
  gap: 5px;
}

.footer-company-name {
  font-size: 0.98rem;
}

.footer-company-tax {
  font-size: 0.87rem;
  color: #2f6258;
}

.footer-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 5px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #2a5c51;
  font-size: 0.9rem;
  line-height: 1.3;
}

.footer-contact-item > span:not(.footer-contact-icon) {
  color: #1f5a4d;
}

.footer-contact-icon {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  flex: 0 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 106, 86, 0.14);
  color: #0f6a56;
}

.footer-contact-icon svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-contact-item a {
  color: #0f5f4e;
  text-decoration: none;
  font-weight: 600;
}

.footer-contact-item a:hover,
.footer-contact-item a:focus {
  color: #0b4c3f;
  text-decoration: underline;
}

@media (min-width: 640px) {
  .site-footer .uk-grid {
    align-items: center;
  }

  .site-footer .uk-grid > div:last-child {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

.footer-logo {
  max-width: 214px;
  margin-bottom: 0;
  filter: drop-shadow(0 4px 10px rgba(9, 93, 64, 0.12));
}

.footer-slogan {
  color: #355c52;
  font-weight: 600;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.contact-grid > div {
  background: #f9fbff;
  border: 1px solid rgba(9, 93, 64, 0.12);
  border-radius: 12px;
  padding: 12px 14px;
  min-height: 96px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  padding: 16px 18px;
  color: #ffffff;
  backdrop-filter: blur(6px);
}

.stat-card strong {
  font-size: 1.35rem;
  display: block;
  margin-bottom: 6px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.tag {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(9, 93, 64, 0.1);
  color: var(--richever-secondary);
  font-weight: 600;
  font-size: 0.9rem;
}

.emphasis {
  font-weight: 600;
  color: var(--richever-secondary);
}

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

  .header-wrap {
    justify-content: space-between;
    gap: 12px;
  }

  .header-right {
    width: auto;
    align-items: flex-end;
  }

  .header-right .top-nav,
  .header-right .bottom-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: inline-flex;
  }

  .logo img {
    max-height: 60px;
  }

  .logo-subtitle {
    font-size: 0.68rem;
  }

  .homepage main {
    padding-top: 94px;
  }

  .service-intro-media {
    padding: 6px 32px 46px 0;
  }

  .service-intro-main img {
    height: 380px;
  }

  .service-intro-float {
    width: 44%;
  }

  .service-intro-float img {
    height: 170px;
  }

  .service-intro-tag {
    max-width: 270px;
  }

  .service-intro-panel {
    padding: 22px 18px;
  }

  .page-solutions .solutions-catalog-list {
    gap: 18px;
  }

  .page-solutions .solutions-catalog-row {
    grid-template-columns: minmax(220px, 278px) minmax(0, 1fr);
  }

  .page-solutions .solutions-catalog-media img {
    min-height: 220px;
  }

  .page-solutions .solutions-catalog-body {
    padding: 18px 20px;
    gap: 10px;
  }

  .page-solutions .solutions-catalog-meta {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .page-why .why-compare-intro {
    margin-bottom: 18px;
  }

  .page-why .why-compare-overview {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .page-why .why-compare-overview-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .page-why .why-compare-list {
    grid-template-columns: 1fr;
  }

  .page-contact .contact-cooperate-shell {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .page-contact .contact-cooperate-overview,
  .page-contact .contact-cooperate-points {
    padding: 22px 20px;
  }

  .page-contact .contact-ttc-shell {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .page-contact .contact-ttc-form-card,
  .page-contact .contact-ttc-info-card {
    padding: 22px 20px;
  }

  .page-contact .contact-ttc-row {
    gap: 10px;
  }

  .page-fit .page-hero {
    padding: 120px 0 82px;
  }

  .fit-diamond-cluster {
    --diamond-size: 191px;
    --diamond-gap-x: 28px;
    --diamond-gap-y: 24px;
    width: calc(var(--diamond-size) * 2.5 + var(--diamond-gap-x) * 1.5);
    height: calc(var(--diamond-size) * 1.5 + var(--diamond-gap-y));
  }

  .fit-diamond-item {
    width: var(--diamond-size);
    height: var(--diamond-size);
  }

  .fit-diamond-inner {
    width: 66%;
    max-width: 124px;
    gap: 7px;
  }

  .fit-maintenance-panel {
    padding: 6px 0 0;
  }

  .fit-slider-nav {
    width: 38px;
    height: 38px;
  }

  .fit-difference {
    min-height: auto;
    background-position: 64% center;
  }

  .fit-difference-overlay {
    width: 100%;
    clip-path: none;
    border-right: 0;
    box-shadow: none;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.86) 60%, rgba(255, 255, 255, 0.72) 100%);
  }

  .fit-difference-shell {
    max-width: 100%;
    border-radius: 14px;
    background: rgba(247, 250, 249, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.56);
    backdrop-filter: blur(3px);
    padding: 24px 24px 14px;
  }

  .fit-difference .section-title p,
  .fit-difference .section-title h3 {
    color: #0c5847;
  }

  .fit-difference-content h4 {
    color: #0c5847;
  }

  .fit-difference-content p {
    color: rgba(24, 53, 45, 0.9);
  }

  .fit-difference-icon {
    border-color: rgba(12, 88, 71, 0.18);
    background: linear-gradient(165deg, rgba(12, 88, 71, 0.1), rgba(12, 88, 71, 0.03));
    color: #0f6a56;
    box-shadow: none;
  }

  .homepage .section-title h3 {
    font-size: clamp(1.8rem, 4.2vw, 2.5rem);
  }

  .vision-showcase > * {
    width: 100%;
  }

  .vision-content-panel {
    padding: 0;
  }

  .vision-media-nav {
    grid-template-columns: repeat(2, minmax(140px, 180px));
    column-gap: 20px;
    row-gap: 30px;
    max-width: 430px;
  }

  .vision-media-nav > li:nth-child(3),
  .vision-media-nav > li:nth-child(4) {
    transform: translateX(36px);
  }

  .vision-media-nav > li > a {
    width: 168px;
    height: 168px;
  }

  .heading-solutions {
    display: block;
  }

  .solutions-controls {
    margin-top: 14px;
    margin-left: 0;
    justify-content: space-between;
  }

  .solution-tabs {
    flex: 1 1 auto;
    max-width: none;
    justify-content: flex-start;
  }

  .solution-media {
    min-height: 340px;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 15.5px;
  }

  .uk-container {
    padding-left: 14px;
    padding-right: 14px;
  }

  main section:not(.banner-home) {
    padding: 64px 0;
  }

  .homepage main section.home-story {
    padding: 62px 0;
    min-height: auto;
  }

  .page-hero {
    padding: 104px 0 64px;
  }

  .section-title p {
    font-size: 0.76rem;
    letter-spacing: 0.1em;
  }

  .section-title h3 {
    font-size: clamp(1.52rem, 7vw, 2.02rem);
    line-height: 1.2;
  }

  .header-wrap {
    min-height: 76px;
  }

  .logo img {
    max-height: 52px;
  }

  .logo-link {
    gap: 2px;
  }

  .logo-subtitle {
    font-size: 0.62rem;
  }

  .mobile-menu-button {
    min-width: 42px;
    min-height: 42px;
    border-radius: 11px;
  }

  .mobile-menu-button .uk-icon {
    width: 20px;
    height: 20px;
  }

  .homepage main {
    padding-top: 84px;
  }

  .richever-mobile-offcanvas .uk-offcanvas-bar {
    width: min(86vw, 300px);
    padding: 16px 14px 18px;
  }

  .richever-mobile-menu-title {
    margin-bottom: 12px;
  }

  .richever-mobile-menu-title img {
    width: 38px;
    height: auto;
    max-height: 48px;
  }

  .richever-mobile-offcanvas .uk-nav-default > li > a {
    font-size: 0.9rem;
    padding: 10px 11px;
  }

  .richever-mobile-lang .lang-btn {
    min-height: 38px;
    font-size: 0.74rem;
  }

  .homepage .home-vision .section-title {
    padding-top: 18px;
    margin-bottom: 24px;
  }

  .service-intro-media {
    padding: 0;
  }

  .service-intro-main img {
    height: 280px;
  }

  .service-intro-float {
    position: static;
    width: 100%;
    margin-top: 12px;
  }

  .service-intro-float img {
    height: 180px;
    border-width: 0;
  }

  .service-intro-tag {
    position: static;
    margin-top: 10px;
    max-width: none;
  }

  .service-intro-panel {
    border-radius: 16px;
    padding: 18px 14px;
  }

  .service-intro-lead {
    margin-bottom: 14px;
    font-size: 0.94rem;
    line-height: 1.6;
  }

  .service-intro-point {
    padding: 4px 12px;
  }

  .service-intro-point h4 {
    font-size: 0.92rem;
  }

  .service-intro-point p {
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .page-solutions .solutions-catalog-list {
    gap: 14px;
  }

  .page-solutions .solutions-catalog-row {
    grid-template-columns: 1fr;
  }

  .page-solutions .solutions-catalog-media img {
    height: 200px;
    min-height: 200px;
  }

  .page-solutions .solutions-catalog-body {
    padding: 15px;
  }

  .page-solutions .solutions-catalog-head h4 {
    font-size: 1.06rem;
  }

  .page-solutions .solutions-catalog-meta {
    grid-template-columns: 1fr;
  }

  .page-why .why-compare-intro {
    margin-bottom: 16px;
    font-size: 0.92rem;
  }

  .page-why .why-compare-overview-main {
    border-radius: 16px;
    padding: 16px 14px;
  }

  .page-why .why-compare-overview-main h4 {
    font-size: 1.12rem;
  }

  .page-why .why-compare-overview-main p {
    font-size: 0.9rem;
    line-height: 1.62;
  }

  .page-why .why-compare-overview-metrics {
    grid-template-columns: 1fr;
  }

  .page-why .why-compare-metric {
    border-radius: 14px;
    padding: 10px 12px;
  }

  .page-why .why-compare-item {
    border-radius: 16px;
    padding: 14px;
  }

  .page-why .why-compare-title {
    gap: 10px;
    margin-bottom: 12px;
  }

  .page-why .why-compare-title-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }

  .page-why .why-compare-title-icon svg {
    width: 16px;
    height: 16px;
  }

  .page-why .why-compare-title h4 {
    font-size: 1rem;
  }

  .page-why .why-compare-columns {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .page-why .why-compare-arrow {
    transform: rotate(90deg);
    justify-self: center;
  }

  .page-why .why-compare-card {
    padding: 11px 12px;
  }

  .page-why .why-compare-card.is-self,
  .page-why .why-compare-card.is-richever {
    padding-left: 12px;
    padding-right: 12px;
  }

  .page-why .why-compare-card.is-self:before,
  .page-why .why-compare-card.is-self:after,
  .page-why .why-compare-card.is-richever:before {
    display: none;
  }

  .page-why .why-compare-card.is-richever:after {
    opacity: 0.62;
  }

  .page-contact .contact-cooperate-section .section-title {
    margin-bottom: 18px;
  }

  .page-contact .contact-cooperate-overview,
  .page-contact .contact-cooperate-points {
    border-radius: 18px;
    padding: 18px 15px;
  }

  .page-contact .contact-cooperate-overview h4,
  .page-contact .contact-cooperate-points h4 {
    font-size: 1.22rem;
  }

  .page-contact .contact-cooperate-overview p {
    font-size: 0.92rem;
    line-height: 1.62;
  }

  .page-contact .contact-cooperate-points .icon-list li {
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    line-height: 1.58;
  }

  .page-contact .contact-cooperate-points .icon-list li:before {
    width: 9px;
    height: 9px;
    top: 7px;
  }

  .page-contact .contact-cooperate-cta {
    margin-top: 12px !important;
    font-size: 0.92rem;
  }

  .page-contact .contact-hub-section .section-title {
    margin-bottom: 18px;
  }

  .page-contact .contact-ttc-form-card,
  .page-contact .contact-ttc-info-card {
    border-radius: 18px;
    padding: 18px 15px;
  }

  .page-contact .contact-ttc-form-card h4,
  .page-contact .contact-ttc-info-card h4 {
    font-size: 1.34rem;
  }

  .page-contact .contact-ttc-intro {
    margin: 8px 0 14px;
    font-size: 0.93rem;
    line-height: 1.6;
  }

  .page-contact .contact-ttc-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .page-contact .contact-ttc-field > span {
    font-size: 0.8rem;
  }

  .page-contact .contact-ttc-field input,
  .page-contact .contact-ttc-field textarea {
    border-radius: 11px;
    padding: 10px 11px;
    font-size: 0.9rem;
  }

  .page-contact .contact-ttc-field textarea {
    min-height: 106px;
  }

  .page-contact .contact-ttc-submit {
    width: 100%;
    justify-self: stretch;
    text-align: center;
    padding: 11px 18px;
  }

  .page-contact .contact-ttc-contact-list {
    margin-top: 12px;
    gap: 8px;
  }

  .page-contact .contact-ttc-contact-list li {
    padding: 10px;
    border-radius: 12px;
    gap: 9px;
  }

  .page-contact .contact-ttc-info-icon {
    width: 30px;
    height: 30px;
    border-radius: 9px;
  }

  .page-contact .contact-ttc-info-icon svg {
    width: 15px;
    height: 15px;
  }

  .page-contact .contact-ttc-contact-list p {
    font-size: 0.72rem;
  }

  .page-contact .contact-ttc-contact-list a,
  .page-contact .contact-ttc-contact-list span {
    font-size: 0.87rem;
  }

  .page-contact .contact-ttc-company-block {
    margin-top: 11px;
    border-radius: 13px;
    padding: 11px 12px;
  }

  .page-contact .contact-ttc-company-block h5 {
    font-size: 0.91rem;
    margin-bottom: 6px;
  }

  .page-contact .contact-ttc-company-block p {
    font-size: 0.83rem;
  }

  .page-fit .page-hero {
    padding: 108px 0 72px;
  }

  .fit-maintenance-layout {
    gap: 18px;
  }

  .fit-diamond-cluster {
    --diamond-size: 131px;
    --diamond-gap-x: 14px;
    --diamond-gap-y: 12px;
    width: calc(var(--diamond-size) * 2.5 + var(--diamond-gap-x) * 1.5);
    height: calc(var(--diamond-size) * 1.5 + var(--diamond-gap-y));
    margin: 0 auto;
  }

  .fit-diamond-item {
    width: var(--diamond-size);
    height: var(--diamond-size);
  }

  .fit-diamond-inner {
    width: 70%;
    max-width: 86px;
    gap: 4px;
  }

  .fit-diamond-icon {
    width: 24px;
    height: 24px;
    border-radius: 8px;
  }

  .fit-diamond-icon svg {
    width: 13px;
    height: 13px;
  }

  .fit-diamond-inner p {
    font-size: 0.66rem;
    line-height: 1.16;
    max-width: 78px;
  }

  .fit-maintenance-panel h3 {
    font-size: 1.12rem;
    white-space: nowrap;
  }

  .fit-maintenance-panel {
    padding: 0;
  }

  .fit-package-card {
    padding: 18px 16px;
  }

  .fit-packages-title {
    margin-bottom: 16px;
    text-align: center;
  }

  .page-solutions .fit-packages-title h3 {
    font-size: clamp(1.36rem, 4.9vw, 1.8rem);
  }

  .page-solutions .section-title p {
    font-size: 0.76rem;
    letter-spacing: 0.09em;
  }

  .page-solutions .section-title h3 {
    font-size: clamp(1.5rem, 5.8vw, 2rem);
  }

  .fit-package-head h4 {
    font-size: 1.02rem;
  }

  .fit-slider-nav {
    display: none;
  }

  .fit-difference-shell {
    padding: 18px 14px 10px;
  }

  .fit-difference-item {
    padding: 8px 2px 4px;
  }

  .fit-difference-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    margin-bottom: 10px;
  }

  .fit-difference-icon svg {
    width: 24px;
    height: 24px;
  }

  .fit-difference-content h4 {
    font-size: 0.9rem;
    margin-bottom: 6px;
  }

  .fit-difference-content p {
    font-size: 0.84rem;
    line-height: 1.52;
  }

  .fit-process-item {
    padding-top: 8px;
  }

  .fit-bevel-corner {
    width: 82px;
    height: 82px;
    padding: 10px;
  }

  .fit-process-node-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }

  .fit-process-node-icon svg {
    width: 17px;
    height: 17px;
  }

  .fit-process-caption {
    margin: 16px 0 6px;
    font-size: 0.9rem;
    max-width: 150px;
  }

  .fit-process-desc {
    font-size: 0.8rem;
    line-height: 1.45;
    max-width: 154px;
  }

  .banner-home .uk-position {
    padding-bottom: 0 !important;
    min-height: clamp(420px, 62vh, 680px) !important;
    height: clamp(420px, 62vh, 680px) !important;
  }

  .banner-home .uk-slideshow-items {
    min-height: 0 !important;
    height: 100% !important;
  }

  .banner-home .uk-slideshow-items > li > img {
    transform: scale(1.08);
  }

  .vision-content-panel {
    padding: 0;
  }

  .vision-content-title {
    margin-bottom: 12px;
  }

  .vision-content-title p {
    font-size: 1.1rem;
  }

  .vision-title-icon {
    width: 30px;
    height: 30px;
  }

  .vision-title-icon svg {
    width: 15px;
    height: 15px;
  }

  .vision-media-nav {
    grid-template-columns: repeat(2, minmax(112px, 136px));
    justify-content: center;
    max-width: 320px;
    row-gap: 12px;
    column-gap: 12px;
  }

  .vision-media-nav > li:nth-child(3),
  .vision-media-nav > li:nth-child(4) {
    transform: none;
  }

  .vision-media-nav > li > a {
    width: 132px;
    height: 132px;
    margin: 0 auto;
  }

  .vision-diamond-frame {
    border-width: 5px;
    border-radius: 14px;
  }

  .vision-diamond-overlay {
    left: 10px;
    right: 10px;
    bottom: 8px;
    padding: 5px 8px;
  }

  .vision-diamond-overlay strong {
    font-size: 0.72rem;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .homepage .section-title {
    margin-bottom: 28px;
  }

  .homepage .content-card,
  .homepage .service-card,
  .homepage .audience-card {
    border-radius: 16px;
  }

  .homepage .content-card,
  .homepage .service-card {
    padding: 20px;
  }

  .homepage .service-card h4 {
    min-height: 0;
    font-size: 1.06rem;
  }

  .heading-solutions {
    margin-bottom: 20px;
  }

  .solutions-controls {
    gap: 8px;
  }

  .solution-tabs {
    gap: 8px;
    flex: 1 1 auto;
  }

  .solution-tabs > li > a {
    font-size: 0.74rem;
    padding: 8px 12px;
  }

  .solution-panel {
    border-radius: 16px;
  }

  .solution-copy {
    padding: 20px;
  }

  .solution-copy h4 {
    font-size: 1.16rem;
  }

  .solution-kpi-grid {
    grid-template-columns: 1fr;
    margin-bottom: 14px;
  }

  .solution-media {
    min-height: 260px;
  }

  .solution-link {
    right: 12px;
    bottom: 12px;
    font-size: 0.7rem;
    padding: 8px 12px;
  }

  .card-label {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    margin-right: 10px;
  }

  .audience-card-index,
  .scope-index {
    width: 40px;
    height: 40px;
  }

  .card-label svg,
  .audience-card-index svg,
  .scope-index svg {
    width: 17px;
    height: 17px;
  }

  .compare-shell {
    padding: 10px;
    border-radius: 16px;
  }

  .compare-row {
    grid-template-columns: 1fr;
    gap: 6px;
    text-align: left;
  }

  .compare-row.compare-head {
    display: none;
  }

  .compare-row div:nth-child(2)::before,
  .compare-row div:nth-child(3)::before {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--richever-secondary);
    margin-bottom: 4px;
  }

  .compare-row div:nth-child(2)::before {
    content: 'Tự làm';
  }

  .compare-row div:nth-child(3)::before {
    content: 'RICHEVER';
  }

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

  .stat-grid {
    grid-template-columns: 1fr;
  }

  main section:not(.banner-home) {
    padding: 70px 0;
  }
}

@media (max-width: 1200px) {
  .homepage main {
    padding-top: 98px;
  }
}

@media (max-width: 1024px) {
  .homepage main {
    padding-top: 80px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .banner-home .uk-slideshow-items > li > img {
    animation: none;
    transform: none;
  }

  .fit-diamond-item,
  .fit-diamond-item:after {
    transition: none;
  }

  .fit-diamond-item:hover {
    transform: none;
  }

  .audience-card,
  .service-card,
  .btn-primary {
    transition: none;
  }
}

/* Mobile layout refinement: only affects <=768px to keep desktop unchanged */
@media (max-width: 768px) {
  html,
  body,
  #wrapper {
    overflow-x: hidden;
  }

  .uk-container {
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }

  main section:not(.banner-home) {
    padding: 56px 0;
  }

  .uk-section-large {
    padding: 64px 0;
  }

  .section-title {
    margin-bottom: 22px;
  }

  .section-title p {
    font-size: 0.74rem;
    letter-spacing: 0.09em;
  }

  .section-title h3 {
    font-size: clamp(1.42rem, 6.4vw, 1.9rem);
    line-height: 1.22;
  }

  .page-hero {
    padding: 96px 0 56px;
  }

  .page-hero .hero-content h1 {
    font-size: clamp(1.6rem, 8vw, 2.08rem);
    line-height: 1.2;
  }

  .page-hero .hero-content p {
    max-width: 100%;
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .banner-home .hero-content {
    max-width: 100%;
    padding-right: 4px;
  }

  .banner-home .hero-eyebrow {
    font-size: clamp(1.12rem, 5.2vw, 1.42rem);
    letter-spacing: 0.04em;
    white-space: normal;
  }

  .banner-home .hero-content h1 {
    font-size: clamp(1.24rem, 6.4vw, 1.84rem);
    line-height: 1.24;
  }

  .vision-showcase {
    row-gap: 20px;
  }

  .vision-content-body p,
  .vision-content-body .icon-list li {
    font-size: 0.94rem;
    line-height: 1.6;
  }

  .vision-media-nav {
    max-width: 100%;
    grid-template-columns: repeat(2, minmax(116px, 1fr));
    column-gap: 12px;
    row-gap: 12px;
  }

  .vision-media-nav > li > a {
    width: 100%;
    max-width: 148px;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .vision-diamond-overlay strong {
    font-size: 0.76rem;
  }

  .fit-maintenance-layout {
    gap: 22px;
  }

  .fit-diamond-cluster {
    --diamond-size: 118px;
    --diamond-gap-x: 12px;
    --diamond-gap-y: 10px;
    width: calc(var(--diamond-size) * 2.5 + var(--diamond-gap-x) * 1.5);
    height: calc(var(--diamond-size) * 1.5 + var(--diamond-gap-y));
  }

  .fit-diamond-inner {
    width: 74%;
    max-width: 92px;
  }

  .fit-diamond-inner p {
    font-size: 0.68rem;
    line-height: 1.22;
    max-width: 84px;
  }

  .fit-maintenance-panel h3 {
    white-space: normal;
    font-size: 1.18rem;
  }

  .fit-maintenance-panel p {
    font-size: 0.95rem;
    line-height: 1.62;
  }

  .fit-package-grid {
    gap: 12px;
  }

  .fit-package-card {
    border-radius: 14px;
    padding: 16px 14px 14px;
  }

  .fit-package-head h4 {
    font-size: 1rem;
    line-height: 1.4;
  }

  .fit-package-features li {
    margin-bottom: 8px;
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .service-intro-layout {
    row-gap: 18px;
  }

  .service-intro-main img {
    height: 230px;
  }

  .service-intro-float img {
    height: 150px;
  }

  .service-intro-tag {
    padding: 10px 12px;
  }

  .service-intro-lead,
  .service-intro-point p {
    font-size: 0.9rem;
  }

  .heading-solutions {
    margin-bottom: 16px;
    gap: 10px;
  }

  .solutions-controls {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .solution-tabs {
    width: 100%;
    max-width: 100%;
    gap: 8px;
    padding: 0 0 2px;
  }

  .solution-tabs > li > a {
    white-space: nowrap;
    font-size: 0.72rem;
    padding: 9px 10px;
  }

  .solution-arrows {
    justify-content: flex-end;
  }

  .solution-copy {
    padding: 16px 14px;
  }

  .solution-copy h4 {
    font-size: 1.02rem;
    line-height: 1.35;
  }

  .solution-points li {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .solution-media {
    min-height: 220px;
  }

  .solution-link {
    font-size: 0.68rem;
    padding: 7px 10px;
  }

  .fit-difference {
    background-position: 65% center;
  }

  .fit-difference-shell {
    padding: 16px 12px 8px;
    border-radius: 12px;
  }

  .fit-difference-grid {
    gap: 10px;
  }

  .fit-difference-item {
    padding: 8px 0;
  }

  .fit-difference-content h4 {
    font-size: 0.88rem;
  }

  .fit-difference-content p {
    font-size: 0.82rem;
  }

  .fit-process-intro {
    font-size: 0.94rem;
    margin-bottom: 14px;
  }

  .fit-process-list {
    gap: 12px;
  }

  .fit-process-item {
    padding-top: 6px;
  }

  .fit-process-caption {
    max-width: none;
    font-size: 0.88rem;
  }

  .fit-process-desc {
    max-width: none;
    font-size: 0.8rem;
  }

  .page-why .why-compare-intro {
    font-size: 0.92rem;
    margin-bottom: 14px;
  }

  .page-why .why-compare-overview-kicker {
    font-size: 0.66rem;
  }

  .page-why .why-compare-metric-value {
    font-size: 1rem;
  }

  .page-why .why-compare-metric-label {
    font-size: 0.78rem;
  }

  .page-why .why-compare-item {
    padding: 12px;
  }

  .page-why .why-compare-title h4 {
    font-size: 0.96rem;
  }

  .page-why .why-compare-card .why-compare-label {
    font-size: 0.63rem;
  }

  .page-why .why-compare-card p {
    font-size: 0.86rem;
    line-height: 1.5;
  }

  .page-contact .contact-ttc-shell {
    gap: 12px;
  }

  .page-contact .contact-ttc-intro {
    font-size: 0.9rem;
  }

  .page-contact .contact-ttc-contact-list a,
  .page-contact .contact-ttc-contact-list span {
    font-size: 0.85rem;
  }

  .page-contact .contact-ttc-company-block p {
    font-size: 0.82rem;
  }

  .site-footer {
    padding: 14px 0;
    margin-top: 12px;
  }

  .footer-logo {
    max-width: 162px;
    margin-bottom: 0;
  }

  .site-footer .uk-grid {
    row-gap: 7px;
  }

  .site-footer p {
    color: #2b5a4f;
    font-size: 0.82rem;
    line-height: 1.24;
  }

  .site-footer p + p {
    margin-top: 1px;
  }

  .site-footer strong {
    color: #0f3b31;
  }

  .footer-company {
    gap: 4px;
  }

  .footer-company-name {
    font-size: 0.9rem;
  }

  .footer-company-tax {
    font-size: 0.8rem;
  }

  .footer-contact-list {
    gap: 4px;
  }

  .footer-contact-item {
    gap: 7px;
    font-size: 0.82rem;
    line-height: 1.22;
  }

  .footer-contact-icon {
    width: 21px;
    height: 21px;
    border-radius: 6px;
    flex-basis: 21px;
  }

  .footer-contact-icon svg {
    width: 12px;
    height: 12px;
  }
}

@media (max-width: 480px) {
  .uk-container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .banner-home .uk-position {
    min-height: clamp(380px, 58vh, 540px) !important;
    height: clamp(380px, 58vh, 540px) !important;
  }

  .vision-media-nav {
    grid-template-columns: repeat(2, minmax(104px, 1fr));
    column-gap: 10px;
    row-gap: 10px;
  }

  .vision-media-nav > li > a {
    max-width: 132px;
  }

  .fit-diamond-cluster {
    --diamond-size: 106px;
    --diamond-gap-x: 10px;
    --diamond-gap-y: 8px;
    width: calc(var(--diamond-size) * 2.5 + var(--diamond-gap-x) * 1.5);
    height: calc(var(--diamond-size) * 1.5 + var(--diamond-gap-y));
  }

  .fit-package-head {
    gap: 10px;
  }

  .fit-package-icon {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    border-radius: 10px;
  }

  .fit-package-icon svg {
    width: 17px;
    height: 17px;
  }

  .solution-tabs > li > a {
    font-size: 0.69rem;
    padding: 8px 9px;
  }

  .page-contact .contact-ttc-form-card,
  .page-contact .contact-ttc-info-card {
    padding: 16px 12px;
  }
}

/* ===== Why Choose Redesign ===== */
.page-why .why-brand-session {
  background:
    linear-gradient(180deg, rgba(248, 252, 251, 0.94), rgba(240, 247, 245, 0.96)),
    url('/assets/images/pages/why-choose/brand/bg-main.jpg') center/cover no-repeat;
}

.page-why .why-brand-panel {
  border: 1px solid rgba(9, 93, 64, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 26px rgba(9, 93, 64, 0.08);
  padding: 24px 24px 22px;
}

.page-why .why-brand-panel p {
  margin: 0;
  color: #1f4f47;
  font-size: 1rem;
  line-height: 1.75;
}

.page-why .why-brand-media {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(9, 93, 64, 0.18);
  box-shadow: 0 16px 30px rgba(9, 93, 64, 0.14);
}

.page-why .why-brand-media img {
  width: 100%;
  height: 270px;
  object-fit: cover;
}

.page-why .why-brand-metrics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 12px;
}

.page-why .why-brand-metrics article {
  border-radius: 12px;
  border: 1px solid rgba(9, 93, 64, 0.16);
  background: #ffffff;
  padding: 10px 12px;
}

.page-why .why-brand-metrics strong {
  display: block;
  color: #0f6a56;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.page-why .why-brand-metrics span {
  color: #2e5e55;
  font-size: 0.9rem;
  line-height: 1.5;
}

.page-why .why-product-session {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbfa 100%);
}

.page-why .why-product-card {
  height: 100%;
  border-radius: 16px;
  border: 1px solid rgba(9, 93, 64, 0.14);
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(9, 93, 64, 0.08);
  padding: 20px 16px 18px;
  text-align: center;
}

.page-why .why-product-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(15, 106, 86, 0.1);
  color: #0f6a56;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.page-why .why-product-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-why .why-product-card p {
  margin: 0;
  color: #18483f;
  font-weight: 700;
  line-height: 1.55;
}

.page-why .why-compare-board {
  border: 1px solid rgba(9, 93, 64, 0.16);
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 14px 28px rgba(9, 93, 64, 0.1);
}

.page-why .why-compare-header,
.page-why .why-compare-row {
  display: grid;
  grid-template-columns: minmax(190px, 1fr) 1fr 1fr;
  column-gap: 14px;
  align-items: stretch;
}

.page-why .why-compare-header {
  padding: 12px 14px;
  background: linear-gradient(90deg, #0f6a56 0%, #18856d 100%);
}

.page-why .why-compare-header span {
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-why .why-compare-row {
  padding: 12px 14px;
  border-top: 1px solid rgba(9, 93, 64, 0.12);
}

.page-why .why-compare-row h4 {
  margin: 0;
  color: #0d4f40;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.4;
  align-self: center;
}

.page-why .why-compare-row p {
  margin: 0;
  border-radius: 12px;
  padding: 10px 12px;
  line-height: 1.5;
  font-size: 0.88rem;
  position: relative;
}

.page-why .why-compare-row p.is-self {
  background: #f4f7f9;
  border: 1px solid #d8e2e7;
  color: #4f6570;
}

.page-why .why-compare-row p.is-self:after {
  content: '';
  position: absolute;
  top: 50%;
  right: -11px;
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 11px solid #d8e2e7;
  transform: translateY(-50%);
}

.page-why .why-compare-row p.is-rich {
  background: linear-gradient(90deg, rgba(15, 106, 86, 0.1) 0%, rgba(15, 106, 86, 0.04) 100%);
  border: 1px solid rgba(15, 106, 86, 0.34);
  color: #0f5949;
  font-weight: 600;
}

.page-why .why-fit-target-section {
  background: linear-gradient(180deg, #f8fcfb 0%, #eef7f5 100%);
}

.page-why .why-fit-target-card {
  height: 100%;
  border-radius: 16px;
  border: 1px solid rgba(9, 93, 64, 0.14);
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(9, 93, 64, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 22px 14px;
}

.page-why .why-fit-target-card p {
  margin: 0;
  color: #0f5445;
  font-weight: 700;
  line-height: 1.5;
}

.page-why .why-issues-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 249, 248, 0.95)),
    url('/assets/images/pages/why-choose/fit-issues/bg-main.jpg') center/cover no-repeat;
}

.page-why .why-issue-card {
  height: 100%;
  border-radius: 14px;
  border: 1px solid rgba(9, 93, 64, 0.14);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 20px rgba(9, 93, 64, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px 12px;
}

.page-why .why-issue-card h4 {
  margin: 0;
  color: #0d4f40;
  font-size: 0.95rem;
  line-height: 1.45;
  font-weight: 700;
}

.page-why .why-solution-section {
  background: linear-gradient(180deg, #f4f8f7 0%, #eef4f3 100%);
}

.page-why .why-solution-step {
  height: 100%;
  border-radius: 16px;
  border: 1px solid rgba(9, 93, 64, 0.14);
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(9, 93, 64, 0.08);
  padding: 20px 14px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-why .why-solution-step strong {
  color: #0f5849;
  line-height: 1.55;
}

.page-why .why-scope-section {
  background: #ffffff;
}

.page-why .why-scope-card {
  height: 100%;
  border-radius: 16px;
  border: 1px solid rgba(9, 93, 64, 0.15);
  background: linear-gradient(180deg, #ffffff 0%, #f7fbfa 100%);
  box-shadow: 0 12px 24px rgba(9, 93, 64, 0.07);
  padding: 20px 16px;
}

.page-why .why-scope-card p {
  margin: 0;
  color: #1f4f47;
  line-height: 1.7;
}

/* ===== Solutions Redesign ===== */
.page-solutions .solutions-catalog-section {
  background:
    linear-gradient(180deg, rgba(252, 254, 253, 0.97), rgba(242, 248, 246, 0.97)),
    url('/assets/images/pages/solutions/catalog/bg-main.jpg') center/cover no-repeat;
}

.page-solutions .solution-session {
  border-radius: 20px;
  border: 1px solid rgba(9, 93, 64, 0.2);
  background: linear-gradient(150deg, #e5f5ef 0%, #d9eee7 100%);
  box-shadow: 0 14px 30px rgba(9, 93, 64, 0.1);
  overflow: hidden;
  margin-top: 22px;
}

.page-solutions .solution-session.is-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 250, 0.95));
}

.page-solutions .solution-session-media {
  margin: 0;
  height: 160px !important;
  min-height: 160px !important;
}

.page-solutions .solution-session-media img {
  width: 100%;
  height: 100%;
  min-height: 160px;
  object-fit: cover;
}

.page-solutions .solution-session-card {
  padding: 24px 24px 22px;
  height: 100%;
}

.page-solutions .solution-session-card--dark {
  background: linear-gradient(160deg, #0c5645 0%, #0b4034 100%);
}

.page-solutions .solution-session-layout {
  align-items: stretch;
}

.page-solutions .solution-session-head {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 12px;
}

.page-solutions .solution-session-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(15, 106, 86, 0.1);
  color: #0f6a56;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 46px;
}

.page-solutions .solution-session-card--dark .solution-session-icon {
  background: rgba(255, 255, 255, 0.14);
  color: #efd18b;
}

.page-solutions .solution-session-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-solutions .solution-session-kicker {
  margin: 0 0 4px;
  color: #1a7b65;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
  font-weight: 700;
}

.page-solutions .solution-session-card--dark .solution-session-kicker,
.page-solutions .solution-session-card--dark h4,
.page-solutions .solution-session-card--dark .solution-session-list li {
  color: #f3f6f5;
}

.page-solutions .solution-session-head h4 {
  margin: 0;
  color: #0d4f40;
  font-size: 1.22rem;
  line-height: 1.35;
}

.page-solutions .solution-session-card--dark .solution-session-head h4 {
  color: #ffffff;
}

.page-solutions .solution-session-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-solutions .solution-session-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  color: #285a52;
  line-height: 1.65;
}

.page-solutions .solution-session-list li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(15, 106, 86, 0.18);
  box-shadow: inset 0 0 0 3px rgba(15, 106, 86, 0.4);
}

.page-solutions .solution-session-card--dark .solution-session-list li:before {
  background: rgba(239, 209, 139, 0.24);
  box-shadow: inset 0 0 0 3px rgba(239, 209, 139, 0.68);
}

.page-solutions .solution-session-note {
  margin: 10px 0 0;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(9, 93, 64, 0.2);
  background: rgba(9, 93, 64, 0.07);
  color: #0f5f4d;
  font-weight: 700;
  line-height: 1.55;
}

.page-solutions .solution-session-card--dark .solution-session-note {
  border-color: rgba(239, 209, 139, 0.4);
  background: rgba(239, 209, 139, 0.14);
  color: #fff5df;
}

.page-solutions .solution-session-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-solutions .solution-album {
  position: relative;
  height: 100%;
  min-height: 412px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(10, 89, 68, 0.24);
  box-shadow: 0 18px 30px rgba(7, 69, 55, 0.16);
  background: #0f3d34;
}

.page-solutions .solution-album-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.page-solutions .solution-album-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 0.55s ease, transform 3s linear;
  pointer-events: none;
}

.page-solutions .solution-album-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-solutions .solution-album-slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.page-solutions .solution-album-controls {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  pointer-events: none;
  z-index: 3;
}

.page-solutions .solution-album-control {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  background: rgba(8, 57, 47, 0.48);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
  backdrop-filter: blur(4px);
}

.page-solutions .solution-album-control:hover,
.page-solutions .solution-album-control:focus-visible {
  background: rgba(12, 86, 69, 0.84);
  border-color: rgba(255, 255, 255, 0.96);
  transform: scale(1.04);
  outline: none;
}

.page-solutions .solution-album-control svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.15;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-solutions .solution-album-control[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
}

.page-solutions .solution-album:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 30%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.28));
  pointer-events: none;
  z-index: 2;
}

.page-solutions .solution-album .solution-album-track {
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .page-solutions .solution-album-slide {
    transform: none;
    transition: opacity 0.2s linear;
  }

  .page-solutions .solution-album-control {
    transition: none;
  }
}

@media (max-width: 1199px) {
  .page-why .why-compare-header,
  .page-why .why-compare-row {
    grid-template-columns: 170px 1fr 1fr;
  }

  .page-solutions .solution-album {
    min-height: 340px;
  }

  .page-solutions .solution-session-media img {
    min-height: 130px;
  }

  .page-solutions .solution-session-media {
    height: 130px !important;
    min-height: 130px !important;
  }
}

@media (max-width: 767px) {
  .page-why .why-brand-panel,
  .page-why .why-product-card,
  .page-why .why-fit-target-card,
  .page-why .why-issue-card,
  .page-why .why-solution-step,
  .page-why .why-scope-card {
    border-radius: 14px;
  }

  .page-why .why-brand-media img {
    height: 220px;
  }

  .page-why .why-compare-board {
    overflow-x: auto;
    overflow-y: hidden;
  }

  .page-why .why-compare-header,
  .page-why .why-compare-row {
    grid-template-columns: minmax(140px, 0.82fr) minmax(200px, 1fr) minmax(200px, 1fr);
    min-width: 560px;
    gap: 10px;
  }

  .page-why .why-compare-header {
    display: grid;
  }

  .page-why .why-compare-row {
    padding: 12px;
  }

  .page-why .why-compare-row p.is-self:after {
    display: none;
  }

  .page-solutions .solution-session {
    border-radius: 16px;
    margin-top: 16px;
  }

  .page-solutions .solution-session-card {
    padding: 16px 14px;
  }

  .page-solutions .solution-album {
    min-height: 238px;
  }

  .page-solutions .solution-album-controls {
    padding: 0 8px;
  }

  .page-solutions .solution-album-control {
    width: 36px;
    height: 36px;
  }

  .page-solutions .solution-session-head h4 {
    font-size: 1.05rem;
  }

  .page-solutions .solution-session-list li {
    font-size: 0.9rem;
    line-height: 1.55;
    padding-left: 22px;
  }

  .page-solutions .solution-session-list li:before {
    top: 8px;
  }
}

/* ===== Why Choose Premium Upgrade ===== */
.page-why .why-brand-session,
.page-why .why-product-session,
.page-why .why-compare-section,
.page-why .why-fit-target-section,
.page-why .why-issues-section,
.page-why .why-solution-section,
.page-why .why-scope-section {
  position: relative;
  overflow: hidden;
}

.page-why .why-brand-session:before,
.page-why .why-product-session:before,
.page-why .why-fit-target-section:before,
.page-why .why-issues-section:before,
.page-why .why-solution-section:before,
.page-why .why-scope-section:before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.9;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0) 38%),
    radial-gradient(circle at 88% 84%, rgba(15, 106, 86, 0.12), rgba(15, 106, 86, 0) 42%);
}

.page-why .why-brand-session .uk-container,
.page-why .why-product-session .uk-container,
.page-why .why-compare-section .uk-container,
.page-why .why-fit-target-section .uk-container,
.page-why .why-issues-section .uk-container,
.page-why .why-solution-section .uk-container,
.page-why .why-scope-section .uk-container {
  position: relative;
  z-index: 1;
}

.page-why .why-brand-shell {
  align-items: stretch;
}

.page-why .why-brand-shell > [class*='uk-width'] {
  display: flex;
}

.page-why .why-brand-panel {
  position: relative;
  border-radius: 24px;
  border: 1px solid rgba(10, 89, 67, 0.18);
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.96), rgba(244, 251, 248, 0.94)),
    url('/assets/images/pages/why-choose/brand/bg-panel.jpg') center/cover no-repeat;
  box-shadow: 0 24px 42px rgba(8, 72, 58, 0.14);
  padding: 26px 26px 24px;
  width: 100%;
  height: 100%;
}

.page-why .why-brand-side {
  width: 100%;
  height: 100%;
  display: block;
}

.page-why .why-brand-panel:after {
  content: '';
  position: absolute;
  right: -40px;
  top: -40px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 180, 108, 0.38), rgba(214, 180, 108, 0));
}

.page-why .why-brand-panel-icon {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0f6a56;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.96), rgba(233, 247, 242, 0.92));
  border: 1px solid rgba(15, 106, 86, 0.24);
  box-shadow: 0 14px 24px rgba(9, 93, 64, 0.14);
  margin-bottom: 14px;
}

.page-why .why-brand-panel-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-why .why-brand-panel p {
  margin: 0;
  color: #184c43;
  font-size: 1rem;
  line-height: 1.78;
}

.page-why .why-brand-definition {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(15, 106, 86, 0.18);
  background: rgba(255, 255, 255, 0.88);
}

.page-why .why-brand-definition h4 {
  margin: 0 0 4px;
  color: #0d5c4b;
  font-size: 1.03rem;
  line-height: 1.42;
}

.page-why .why-brand-definition p {
  margin: 0;
  color: #1e584d;
  font-size: 0.93rem;
  line-height: 1.6;
}

.page-why .why-brand-tags {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.page-why .why-brand-tags span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 7px 13px;
  color: #0d5b4b;
  border: 1px solid rgba(15, 106, 86, 0.22);
  background: rgba(255, 255, 255, 0.88);
  font-size: 0.77rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 700;
}

.page-why .why-brand-media {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(15, 106, 86, 0.2);
  box-shadow: 0 20px 34px rgba(9, 93, 64, 0.18);
  min-height: 0;
  height: 100%;
}

.page-why .why-brand-media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.page-why .why-brand-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.page-why .why-brand-metrics article {
  border-radius: 15px;
  border: 1px solid rgba(11, 92, 71, 0.16);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 20px rgba(9, 93, 64, 0.09);
  padding: 10px 10px 10px 40px;
  position: relative;
  min-height: 100%;
}

.page-why .why-metric-icon {
  position: absolute;
  left: 10px;
  top: 10px;
  width: 20px;
  height: 20px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0f6a56;
  background: rgba(15, 106, 86, 0.12);
}

.page-why .why-metric-icon svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-why .why-brand-metrics strong {
  display: block;
  color: #0f6754;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-why .why-brand-metrics span {
  color: #2d5f56;
  font-size: 0.8rem;
  line-height: 1.35;
}

.page-why .why-product-session {
  background:
    linear-gradient(160deg, rgba(245, 251, 249, 0.95), rgba(255, 255, 255, 0.97)),
    url('/assets/images/pages/why-choose/product/bg-main.jpg') center/cover no-repeat;
}

.page-why .why-product-card {
  position: relative;
  height: 100%;
  border-radius: 20px;
  border: 1px solid rgba(10, 87, 66, 0.14);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 32px rgba(8, 66, 53, 0.12);
  padding: 14px 16px 20px;
  text-align: center;
}

.page-why .why-product-card:before {
  content: '';
  position: absolute;
  right: -24px;
  top: -24px;
  width: 88px;
  height: 88px;
  border-radius: 28px;
  transform: rotate(20deg);
  background: linear-gradient(120deg, rgba(15, 106, 86, 0.16), rgba(15, 106, 86, 0));
}

.page-why .why-product-media {
  margin: -2px -2px 14px;
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid rgba(15, 106, 86, 0.14);
}

.page-why .why-product-media img {
  width: 100%;
  height: 145px;
  object-fit: cover;
}

.page-why .why-product-icon {
  width: 66px;
  height: 66px;
  border-radius: 18px;
  background: linear-gradient(140deg, rgba(15, 106, 86, 0.16), rgba(15, 106, 86, 0.06));
  color: #0f6a56;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  box-shadow: 0 10px 18px rgba(9, 93, 64, 0.12);
}

.page-why .why-product-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-why .why-product-card p {
  margin: 0;
  color: #104c3f;
  font-weight: 700;
  line-height: 1.6;
}

.page-why .why-compare-section {
  background:
    linear-gradient(176deg, rgba(248, 252, 251, 0.98), rgba(236, 245, 242, 0.94)),
    url('/assets/images/pages/why-choose/compare/bg-main.jpg') center/cover no-repeat;
}

.page-why .why-compare-board {
  border: 1px solid rgba(10, 89, 68, 0.2);
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 40px rgba(9, 93, 64, 0.14);
}

.page-why .why-compare-header,
.page-why .why-compare-row {
  display: grid;
  grid-template-columns: minmax(210px, 0.95fr) minmax(0, 1fr) minmax(0, 1fr);
  column-gap: 14px;
  align-items: stretch;
}

.page-why .why-compare-header > *,
.page-why .why-compare-row > * {
  min-width: 0;
}

.page-why .why-compare-header {
  padding: 14px 16px;
  background: linear-gradient(95deg, #0c5d4c 0%, #0f7a63 52%, #17a082 100%);
}

.page-why .why-compare-header span {
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.page-why .why-compare-row {
  padding: 12px 16px;
  border-top: 1px solid rgba(8, 79, 60, 0.1);
  overflow: hidden;
}

.page-why .why-compare-row:nth-child(odd) {
  background: rgba(247, 252, 250, 0.78);
}

.page-why .why-compare-row h4 {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #0b4f40;
  font-size: 0.92rem;
  line-height: 1.38;
  font-weight: 700;
}

.page-why .why-criterion-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  flex: 0 0 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0f6a56;
  background: linear-gradient(145deg, rgba(15, 106, 86, 0.16), rgba(15, 106, 86, 0.07));
  border: 1px solid rgba(15, 106, 86, 0.2);
}

.page-why .why-criterion-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-why .why-compare-row p {
  margin: 0;
  border-radius: 13px;
  padding: 10px 13px;
  line-height: 1.52;
  font-size: 0.87rem;
  min-height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  overflow-wrap: anywhere;
  word-break: break-word;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
}

.page-why .why-side-label {
  display: inline-flex;
  margin-bottom: 6px;
  border-radius: 999px;
  padding: 3px 10px;
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  font-weight: 800;
  text-transform: uppercase;
}

.page-why .why-compare-row p.is-self {
  background: linear-gradient(145deg, #f9f3f1, #fdf8f6);
  border: 1px solid rgba(191, 120, 99, 0.36);
  color: #6b5048;
  padding-right: 13px;
}

.page-why .why-compare-row p.is-self .why-side-label {
  color: #7b3f31;
  background: rgba(174, 76, 49, 0.14);
}

.page-why .why-compare-row p.is-self:after {
  display: none;
}

.page-why .why-compare-row p.is-rich {
  background: linear-gradient(145deg, rgba(231, 249, 243, 0.95), rgba(245, 254, 251, 0.95));
  border: 1px solid rgba(15, 106, 86, 0.42);
  color: #0f5b4b;
  font-weight: 600;
  box-shadow: none;
  animation: none;
  padding-left: 13px;
}

.page-why .why-compare-row p.is-rich .why-side-label {
  color: #ffffff;
  background: linear-gradient(120deg, #0e6f5a, #0f8a6f);
}

.page-why .why-compare-row p.is-rich:before {
  display: none;
}

.page-why .why-compare-row p.is-rich:after {
  display: none;
}

.page-why .why-fit-target-section {
  background:
    linear-gradient(180deg, rgba(243, 249, 247, 0.95), rgba(236, 246, 243, 0.92)),
    url('/assets/images/pages/why-choose/fit-target/bg-main.jpg') center/cover no-repeat;
}

.page-why .why-fit-target-card {
  position: relative;
  min-height: 214px;
  border-radius: 22px;
  border: 1px solid rgba(9, 93, 64, 0.22);
  box-shadow: 0 18px 30px rgba(7, 69, 55, 0.14);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  text-align: left;
  padding: 14px 14px 14px;
  overflow: hidden;
}

.page-why .why-fit-target-card:before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 58, 46, 0.1), rgba(7, 58, 46, 0.74)),
    var(--target-bg) center/cover no-repeat;
}

.page-why .why-fit-target-card:after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 82% 14%, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0) 42%);
}

.page-why .why-fit-target-section .uk-grid > div:nth-child(1) .why-fit-target-card {
  --target-bg: url('/assets/images/pages/why-choose/fit-target/card-01.jpg');
}

.page-why .why-fit-target-section .uk-grid > div:nth-child(2) .why-fit-target-card {
  --target-bg: url('/assets/images/pages/why-choose/fit-target/card-02.jpg');
}

.page-why .why-fit-target-section .uk-grid > div:nth-child(3) .why-fit-target-card {
  --target-bg: url('/assets/images/pages/why-choose/fit-target/card-03.jpg');
}

.page-why .why-fit-target-section .uk-grid > div:nth-child(4) .why-fit-target-card {
  --target-bg: url('/assets/images/pages/why-choose/fit-target/card-04.jpg');
}

.page-why .why-fit-target-icon,
.page-why .why-fit-target-card p {
  position: relative;
  z-index: 1;
}

.page-why .why-fit-target-icon {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
}

.page-why .why-fit-target-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-why .why-fit-target-card p {
  margin: 0;
  color: #ffffff;
  font-weight: 700;
  line-height: 1.46;
  font-size: 0.88rem;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.28);
}

.page-why .why-conclusion-section {
  padding-top: 50px;
  padding-bottom: 96px;
  background:
    radial-gradient(circle at 86% 16%, rgba(230, 192, 107, 0.28), rgba(230, 192, 107, 0) 42%),
    linear-gradient(160deg, #edf8f4 0%, #e4f3ec 54%, #f6fcf8 100%);
}

.page-why .why-conclusion-shell {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 132px) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  border-radius: 24px;
  border: 1px solid rgba(10, 98, 80, 0.34);
  background: linear-gradient(135deg, rgba(7, 84, 67, 0.97), rgba(13, 115, 92, 0.97));
  box-shadow: 0 24px 48px rgba(7, 66, 53, 0.24);
  padding: 24px 26px;
}

.page-why .why-conclusion-shell::before {
  content: "";
  position: absolute;
  inset: -40% -20%;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0));
  transform: translateX(-62%) rotate(6deg);
  animation: whyConclusionShine 5.6s ease-in-out infinite;
  pointer-events: none;
}

.page-why .why-conclusion-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
  pointer-events: none;
}

.page-why .why-conclusion-accent {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.page-why .why-conclusion-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #f3e1b4;
  border: 1px solid rgba(243, 225, 180, 0.58);
  background: radial-gradient(circle at 35% 28%, rgba(243, 225, 180, 0.36), rgba(243, 225, 180, 0.14));
  box-shadow: 0 10px 24px rgba(4, 49, 39, 0.3);
  flex: 0 0 58px;
}

.page-why .why-conclusion-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-why .why-conclusion-line {
  width: 102px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(243, 225, 180, 0.98) 0%, rgba(243, 225, 180, 0.28) 100%);
}

.page-why .why-conclusion-text {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #ffffff;
  font-family: 'Lexend', 'Segoe UI', Tahoma, sans-serif;
  font-size: clamp(1.08rem, 1.6vw, 1.34rem);
  line-height: 1.62;
  font-weight: 700;
  letter-spacing: 0.008em;
  text-shadow: 0 8px 16px rgba(4, 45, 36, 0.24);
}

.page-why .why-conclusion-text strong {
  color: #f3e1b4;
  text-shadow: 0 0 18px rgba(243, 225, 180, 0.35);
  animation: whyConclusionEmphasis 2.8s ease-in-out infinite;
}

@media (max-width: 1199px) {
  .page-why .why-conclusion-shell {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px 18px;
  }

  .page-why .why-conclusion-accent {
    align-items: center;
    gap: 10px;
  }

  .page-why .why-conclusion-line {
    width: 88px;
  }
}

@keyframes whyConclusionShine {
  0%,
  100% {
    transform: translateX(-62%) rotate(6deg);
    opacity: 0.24;
  }

  45% {
    transform: translateX(6%) rotate(6deg);
    opacity: 0.5;
  }

  70% {
    transform: translateX(20%) rotate(6deg);
    opacity: 0.14;
  }
}

@keyframes whyConclusionEmphasis {
  0%,
  100% {
    color: #f3e1b4;
  }

  50% {
    color: #fff1cf;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-why .why-conclusion-shell::before,
  .page-why .why-conclusion-text strong {
    animation: none;
  }
}

.page-contact .contact-ttc-social {
  margin-top: 14px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.page-contact .contact-ttc-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 12px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.14);
  transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.page-contact .contact-ttc-social-btn img {
  display: block;
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.page-contact .contact-ttc-social-btn:hover,
.page-contact .contact-ttc-social-btn:focus {
  transform: translateY(-1px);
  text-decoration: none;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.2);
}

.page-contact .contact-ttc-social-btn.is-facebook:hover {
  background: rgba(24, 119, 242, 0.25);
  border-color: rgba(24, 119, 242, 0.5);
}

.page-contact .contact-ttc-social-btn.is-tiktok:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.46);
}

.page-contact .contact-ttc-social-btn.is-zalo:hover {
  background: rgba(0, 134, 255, 0.24);
  border-color: rgba(0, 134, 255, 0.5);
}

.page-why .why-difference-section {
  min-height: 740px;
}

.page-why .why-difference-section .fit-difference-shell {
  max-width: 100%;
}

.page-why .why-difference-section .fit-difference-content h4 {
  text-transform: uppercase;
}

.page-why .why-difference-highlight {
  height: 100%;
  min-height: 360px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background:
    linear-gradient(170deg, rgba(11, 63, 52, 0.84), rgba(6, 41, 34, 0.9)),
    url('/assets/images/pages/why-choose/fit-issues/bg-highlight.jpg') center/cover no-repeat;
  box-shadow: 0 20px 36px rgba(4, 39, 31, 0.35);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 18px;
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
}

.page-why .why-difference-highlight:before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 84% 20%, rgba(221, 181, 100, 0.34), rgba(221, 181, 100, 0) 48%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.page-why .why-difference-highlight-icon,
.page-why .why-difference-highlight p {
  position: relative;
  z-index: 1;
}

.page-why .why-difference-highlight-icon {
  width: 66px;
  height: 66px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #f0d69c;
  border: 1px solid rgba(240, 214, 156, 0.5);
  background: rgba(255, 255, 255, 0.09);
}

.page-why .why-difference-highlight-icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-why .why-difference-highlight p {
  margin: 0;
  color: #ffffff;
  font-family: 'Lexend', 'Segoe UI', Tahoma, sans-serif;
  font-size: clamp(1.36rem, 2.2vw, 2rem);
  line-height: 1.34;
  font-weight: 700;
  max-width: 15ch;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.24);
}

.page-why .why-issues-section {
  background:
    linear-gradient(170deg, rgba(252, 254, 253, 0.97), rgba(242, 250, 248, 0.94)),
    url('/assets/images/pages/why-choose/fit-issues/bg-main.jpg') center/cover no-repeat;
}

.page-why .why-issue-card {
  height: 100%;
  border-radius: 20px;
  border: 1px solid rgba(9, 93, 64, 0.14);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 24px rgba(9, 93, 64, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  padding: 20px 14px 18px;
  position: relative;
}

.page-why .why-issue-card:before {
  content: '';
  position: absolute;
  inset: 10px;
  border-radius: 14px;
  border: 1px dashed rgba(15, 106, 86, 0.16);
  pointer-events: none;
}

.page-why .why-issue-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0f6a56;
  background: linear-gradient(145deg, rgba(15, 106, 86, 0.2), rgba(15, 106, 86, 0.07));
  border: 1px solid rgba(15, 106, 86, 0.26);
}

.page-why .why-issue-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-why .why-issue-card h4 {
  margin: 0;
  color: #114e42;
  font-size: 0.94rem;
  line-height: 1.48;
  font-weight: 700;
}

.page-why .why-solution-section {
  background:
    linear-gradient(170deg, rgba(245, 250, 248, 0.95), rgba(235, 244, 241, 0.95)),
    url('/assets/images/pages/why-choose/fit-solution/bg-main.jpg') center/cover no-repeat;
}

.page-why #fit-solution.fit-process {
  background:
    linear-gradient(180deg, rgba(244, 248, 247, 0.98) 0%, rgba(238, 244, 243, 0.98) 100%),
    url('/assets/images/pages/why-choose/fit-solution/bg-main.jpg') center/cover no-repeat;
}

.page-why #fit-solution .fit-process-track {
  margin-top: 18px;
}

.page-why #fit-solution .fit-process-caption {
  max-width: 208px;
}

.page-why #fit-solution .fit-process-desc {
  max-width: 210px;
}

.page-why #fit-solution .fit-process-highlight {
  margin: 18px auto 0;
  max-width: 760px;
  text-align: center;
  border-radius: 16px;
  border: 1px solid rgba(15, 106, 86, 0.24);
  background: linear-gradient(140deg, rgba(240, 251, 246, 0.96), rgba(224, 246, 238, 0.95));
  color: #0f5f4c;
  font-family: 'Lexend', 'Segoe UI', Tahoma, sans-serif;
  font-size: clamp(1.02rem, 1.6vw, 1.24rem);
  font-weight: 700;
  line-height: 1.5;
  padding: 13px 18px;
  box-shadow: 0 12px 24px rgba(9, 93, 64, 0.12);
}

.page-why .why-solution-step {
  position: relative;
  height: 100%;
  border-radius: 20px;
  border: 1px solid rgba(9, 93, 64, 0.18);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 25px rgba(9, 93, 64, 0.11);
  padding: 20px 14px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.page-why .why-solution-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(15, 106, 86, 0.2), rgba(15, 106, 86, 0.08));
  border: 1px solid rgba(15, 106, 86, 0.26);
  color: #0f6a56;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.page-why .why-solution-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-why .why-solution-step strong {
  color: #0e5647;
  line-height: 1.58;
  font-size: 0.95rem;
}

.page-why .why-scope-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f5faf8 100%),
    url('/assets/images/pages/why-choose/fit-scope/bg-main.jpg') center/cover no-repeat;
}

.page-why #fit-scope .fit-scope-title {
  white-space: nowrap;
  font-size: clamp(1.4rem, 2.05vw, 2rem);
}

.page-why .why-scope-card {
  height: 100%;
  border-radius: 22px;
  border: 1px solid rgba(8, 88, 67, 0.16);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 28px rgba(9, 93, 64, 0.11);
  padding: 0 18px 18px;
  overflow: hidden;
}

.page-why .why-scope-media {
  margin: 0 -18px 14px;
  height: 165px;
  overflow: hidden;
}

.page-why .why-scope-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-why .why-scope-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0f6a56;
  background: rgba(15, 106, 86, 0.14);
  border: 1px solid rgba(15, 106, 86, 0.24);
  margin: 0;
  flex: 0 0 54px;
}

.page-why .why-scope-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 959px) {
  .page-why #fit-scope .fit-scope-title {
    white-space: normal;
  }
}

.page-why .why-scope-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 10px;
}

.page-why .why-scope-head h4 {
  margin: 0;
  color: #0e5a49;
  font-size: 1.02rem;
  line-height: 1.35;
  font-weight: 700;
}

.page-why .why-scope-card p {
  margin: 0;
  color: #1f4f47;
  line-height: 1.72;
  font-size: 0.94rem;
  text-align: left;
}

@keyframes whyComparePulse {
  0%,
  100% {
    box-shadow: 0 10px 16px rgba(9, 93, 64, 0.1);
    filter: brightness(1);
  }
  50% {
    box-shadow: 0 14px 22px rgba(9, 93, 64, 0.15);
    filter: brightness(1.06);
  }
}

@keyframes whyCompareShine {
  0%,
  22% {
    transform: translateX(-135%);
  }
  56%,
  100% {
    transform: translateX(135%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-why .why-compare-row p.is-rich,
  .page-why .why-compare-row p.is-rich:before {
    animation: none;
  }
}

@media (max-width: 1199px) {
  .page-why .why-compare-header,
  .page-why .why-compare-row {
    grid-template-columns: minmax(160px, 0.9fr) minmax(0, 1fr) minmax(0, 1fr);
  }

  .page-why .why-fit-target-card {
    min-height: 220px;
  }

  .page-why .why-difference-section {
    min-height: 0;
  }

  .page-why .why-difference-highlight {
    min-height: 260px;
  }
}

@media (max-width: 767px) {
  .page-why .why-brand-panel,
  .page-why .why-product-card,
  .page-why .why-fit-target-card,
  .page-why .why-issue-card,
  .page-why .why-solution-step,
  .page-why .why-scope-card {
    border-radius: 16px;
  }

  .page-why .why-brand-panel {
    padding: 18px 16px;
    height: auto;
  }

  .page-why .why-brand-shell > [class*='uk-width'] {
    display: block;
  }

  .page-why .why-brand-side {
    height: auto;
    display: block;
  }

  .page-why .why-brand-panel-icon {
    width: 62px;
    height: 62px;
    border-radius: 18px;
  }

  .page-why .why-brand-panel-icon svg {
    width: 28px;
    height: 28px;
  }

  .page-why .why-brand-definition {
    margin-top: 12px;
    padding: 10px 11px;
  }

  .page-why .why-brand-definition h4 {
    font-size: 0.94rem;
    line-height: 1.38;
  }

  .page-why .why-brand-definition p {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .page-why .why-brand-media img {
    height: 220px;
    min-height: 220px;
  }

  .page-why .why-brand-metrics {
    grid-template-columns: 1fr;
    margin-top: 12px;
  }

  .page-why .why-product-media img {
    height: 130px;
  }

  .page-why .why-product-icon,
  .page-why .why-issue-icon,
  .page-why .why-solution-icon {
    width: 54px;
    height: 54px;
    border-radius: 15px;
  }

  .page-why .why-product-icon svg,
  .page-why .why-issue-icon svg,
  .page-why .why-solution-icon svg {
    width: 22px;
    height: 22px;
  }

  .page-why .why-compare-board {
    overflow-x: auto;
    overflow-y: hidden;
  }

  .page-why .why-compare-header,
  .page-why .why-compare-row {
    grid-template-columns: minmax(140px, 0.82fr) minmax(200px, 1fr) minmax(200px, 1fr);
    min-width: 560px;
    gap: 10px;
  }

  .page-why .why-compare-header {
    display: grid;
  }

  .page-why .why-compare-row {
    padding: 12px;
  }

  .page-why .why-compare-row p.is-self:after {
    display: none;
  }

  .page-why .why-compare-row p.is-rich:after {
    display: none;
  }

  .page-why .why-difference-highlight {
    min-height: 220px;
    padding: 20px 16px;
    border-radius: 18px;
  }

  .page-why .why-difference-highlight-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
  }

  .page-why .why-difference-highlight-icon svg {
    width: 24px;
    height: 24px;
  }

  .page-why .why-difference-highlight p {
    max-width: none;
    font-size: 1.22rem;
  }

  .page-why #fit-solution .fit-process-highlight {
    border-radius: 13px;
    padding: 11px 12px;
    font-size: 0.98rem;
    line-height: 1.45;
  }

  .page-why .why-criterion-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    flex-basis: 34px;
  }

  .page-why .why-criterion-icon svg {
    width: 16px;
    height: 16px;
  }

  .page-why .why-fit-target-card {
    min-height: 180px;
  }

  .page-why .why-scope-media {
    height: 150px;
  }

  .page-why .why-scope-head {
    align-items: flex-start;
    gap: 10px;
  }

  .page-why .why-scope-head h4 {
    font-size: 0.96rem;
    line-height: 1.35;
  }

  .page-why .why-scope-icon {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
    border-radius: 14px;
  }

  .page-why .why-scope-icon svg {
    width: 20px;
    height: 20px;
  }

  .page-why .why-conclusion-section {
    padding-top: 34px;
    padding-bottom: 64px;
  }

  .page-why .why-conclusion-shell {
    border-radius: 18px;
    padding: 16px 14px;
  }

  .page-why .why-conclusion-icon {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
    border-radius: 12px;
  }

  .page-why .why-conclusion-icon svg {
    width: 20px;
    height: 20px;
  }

  .page-why .why-conclusion-line {
    width: 70px;
  }

  .page-why .why-conclusion-text {
    font-size: 0.98rem;
    line-height: 1.58;
  }
}
