:root {
  --primary-color: #0b162c;
  --primary-light: #1a2a4a;
  --navbar-bg: #0b1a2f;
  --secondary-color: #007bff;
  --accent-color: #00d2ff;
  --bg-main: #fff;
  --surface-color: #f8fafc;
  --text-dark: #0b162c;
  --text-muted: #64748b;
  --text-subtle: #94a3b8;
  --text-light: #fff;
  --border-color: #e2e8f0;
  --error-color: #ef4444;
  --success-color: #10b981;
  --warning-color: #f59e0b;
  --outlook-stable: #059669;
  --outlook-positive: #007bff;
  --outlook-negative: #dc2626;
  --grade-aaa: #10b981;
  --grade-aa: #34d399;
  --grade-a: #84cc16;
  --grade-bbb: #facc15;
  --grade-bb: #fb923c;
  --grade-ccc: #f97316;
  --grade-d: #ef4444;
  --primary-rgb: 11, 22, 44;
  --secondary-rgb: 0, 123, 255;
  --accent-rgb: 0, 210, 255;
  --z-navbar: 1000;
  --z-modal: 10000;
  --z-modal-top: 10002;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -2px rgba(0, 0, 0, .1);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -4px rgba(0, 0, 0, .1);
  --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, .1), 0 8px 10px -6px rgba(0, 0, 0, .1);
  --font-main: "Inter", system-ui, -apple-system, sans-serif;
  --font-serif: "Lora", Georgia, serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1)
}

* {
  box-sizing: border-box;
  font-feature-settings: "lnum";
  margin: 0;
  padding: 0
}

body {
  background-color: var(--bg-main);
  color: var(--text-dark);
  font-family: var(--font-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100vh
}

a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: var(--transition)
}

a:hover {
  filter: brightness(1.2)
}

img {
  border-radius: var(--radius-sm);
  height: auto;
  max-width: 100%
}

main {
  flex: 1
}

.container {
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 24px
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--primary-color);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: .5em
}

h1 {
  font-size: 2.5rem
}

h2 {
  font-size: 1.8rem
}

h3 {
  font-size: 1.5rem
}

p {
  color: var(--text-dark);
  margin-bottom: 1rem
}

.navbar {
  background: var(--navbar-bg);
  border-bottom: 1px solid hsla(0, 0%, 100%, .06);
  padding: 0;
  transition: background .3s ease, padding .3s ease
}

#navbar-container,
.navbar {
  position: sticky;
  top: 0;
  z-index: var(--z-navbar)
}

.home-main .navbar,
body:has(.home-main) .navbar {
  background: transparent;
  border-bottom: none;
  box-shadow: none;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 100
}

.navbar.scrolled {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  background: var(--navbar-bg);
  border-bottom: 1px solid hsla(0, 0%, 100%, .06);
  box-shadow: 0 2px 10px rgba(0, 0, 0, .3)
}

.home-main .navbar.scrolled,
body:has(.home-main) .navbar.scrolled {
  background: var(--navbar-bg);
  border-bottom: 1px solid hsla(0, 0%, 100%, .06);
  box-shadow: 0 2px 10px rgba(0, 0, 0, .3);
  position: fixed
}

.navbar .container {
  align-items: center;
  display: flex;
  gap: 0
}

.navbar-brand {
  align-items: center;
  display: flex;
  margin-right: auto;
  padding: 20px 0;
  text-decoration: none;
  transition: padding .3s ease
}

.navbar.scrolled .navbar-brand {
  padding: 12px 0
}

.navbar-logo {
  height: 44px;
  transition: height .3s ease;
  width: auto
}

.navbar.scrolled .navbar-logo {
  height: 38px
}

.nav-links {
  display: flex;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0
}

.nav-item {
  position: relative
}

.nav-link {
  align-items: center;
  color: hsla(0, 0%, 100%, .85);
  display: flex;
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .01em;
  padding: 28px 18px;
  text-decoration: none;
  transition: color .2s, padding .3s ease;
  white-space: nowrap
}

.navbar.scrolled .nav-link {
  padding: 16px 18px
}

.nav-item.open .nav-link,
.nav-link:hover {
  color: var(--secondary-color)
}

.nav-dropdown {
  background: var(--navbar-bg);
  border: 1px solid hsla(0, 0%, 100%, .08);
  border-top: 2px solid var(--secondary-color);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .3);
  left: 0;
  list-style: none;
  margin: 0;
  min-width: 260px;
  opacity: 0;
  padding: 8px 0;
  position: absolute;
  top: 100%;
  transform: translateY(4px);
  transition: opacity .2s, transform .2s, visibility .2s;
  visibility: hidden
}

.nav-item.open .nav-dropdown {
  opacity: 1;
  transform: translateY(0);
  visibility: visible
}

.nav-dropdown li a {
  color: hsla(0, 0%, 100%, .7);
  display: block;
  font-size: .85rem;
  padding: 10px 20px;
  text-decoration: none;
  transition: background .15s, color .15s
}

.nav-dropdown li a:hover {
  background: hsla(0, 0%, 100%, .06);
  color: #fff
}

.nav-actions {
  gap: 4px;
  margin-left: auto;
  padding-left: 16px
}

.nav-actions,
.nav-icon-btn {
  align-items: center;
  display: flex
}

.nav-icon-btn {
  background: transparent;
  border: none;
  border-radius: 50%;
  color: hsla(0, 0%, 100%, .7);
  cursor: pointer;
  font-size: 0;
  height: 38px;
  justify-content: center;
  line-height: 0;
  padding: 0;
  text-decoration: none;
  transition: color .2s, background .2s;
  width: 38px
}

.nav-icon-btn svg {
  display: block;
  flex-shrink: 0;
  height: 18px;
  width: 18px
}

.nav-icon-btn:hover {
  background: hsla(0, 0%, 100%, .1);
  color: #fff
}

.nav-lang-wrapper {
  position: relative
}

.nav-lang-dropdown {
  background: var(--navbar-bg);
  border: 1px solid hsla(0, 0%, 100%, .1);
  border-radius: 0 0 6px 6px;
  border-top: 2px solid var(--secondary-color);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .3);
  min-width: 140px;
  opacity: 0;
  padding: 6px 0;
  position: absolute;
  right: 0;
  top: 100%;
  transform: translateY(4px);
  transition: opacity .2s, transform .2s, visibility .2s;
  visibility: hidden;
  z-index: 100
}

.nav-lang-wrapper.open .nav-lang-dropdown {
  opacity: 1;
  transform: translateY(0);
  visibility: visible
}

.nav-lang-option {
  color: hsla(0, 0%, 100%, .7);
  display: block;
  font-size: .85rem;
  padding: 10px 18px;
  text-decoration: none;
  transition: background .15s, color .15s
}

.nav-lang-option:hover {
  background: hsla(0, 0%, 100%, .06);
  color: #fff
}

.nav-lang-option.active {
  color: var(--secondary-color);
  font-weight: 600
}

.nav-search-wrapper {
  position: static
}

.nav-search-panel {
  background: var(--navbar-bg);
  border: none;
  border-bottom: 2px solid var(--secondary-color);
  border-radius: 0;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .4);
  left: 0;
  opacity: 0;
  padding: 32px 24px;
  position: fixed;
  right: 0;
  top: 0;
  transform: translateY(-100%);
  transition: opacity .3s, transform .3s, visibility .3s;
  visibility: hidden;
  width: 100%;
  z-index: 1001
}

.nav-search-wrapper.open .nav-search-panel {
  opacity: 1;
  transform: translateY(0);
  visibility: visible
}

.nav-search-inner {
  margin: 0 auto;
  max-width: 1200px
}

.nav-search-input-wrap {
  align-items: center;
  background: hsla(0, 0%, 100%, .07);
  border: 1px solid hsla(0, 0%, 100%, .15);
  border-radius: 14px;
  display: flex;
  margin: 8px 0;
  overflow: hidden;
  transition: border-color .25s, box-shadow .25s, background .25s
}

.nav-search-input-wrap:focus-within {
  background: hsla(0, 0%, 100%, .09);
  border-color: hsla(0, 0%, 100%, .32);
  box-shadow: 0 0 0 3px rgba(0, 120, 230, .2)
}

.nav-search-input {
  background: transparent;
  border: none;
  color: #fff;
  flex: 1;
  font-family: var(--font-main);
  font-size: 1rem;
  outline: none;
  padding: 18px 20px
}

.nav-search-input::placeholder {
  color: hsla(0, 0%, 100%, .3)
}

.nav-search-submit {
  align-items: center;
  align-self: stretch;
  background: none;
  border: none;
  color: hsla(0, 0%, 100%, .4);
  cursor: pointer;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  padding: 0 18px 0 4px;
  transition: color .2s
}

.nav-search-submit:hover {
  color: hsla(0, 0%, 100%, .85)
}

.nav-search-suggestions {
  margin: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  transition: max-height .3s, margin .3s, opacity .2s
}

.nav-search-suggestions.visible {
  margin-top: 16px;
  max-height: 680px;
  opacity: 1;
  overflow-y: auto
}

.nav-search-results-grid {
  background: hsla(0, 0%, 100%, .05);
  border: 1px solid hsla(0, 0%, 100%, .1);
  border-radius: 12px;
  column-gap: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  row-gap: 0
}

.nav-search-result-group {
  border-bottom: 1px solid hsla(0, 0%, 100%, .08);
  border-right: 1px solid hsla(0, 0%, 100%, .08);
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
  padding: 22px 20px
}

.nav-search-result-group:nth-child(3n) {
  border-right: none
}

.nav-search-result-group:nth-last-child(-n+3) {
  border-bottom: none
}

.nav-search-result-heading {
  align-items: center;
  border-bottom: 1px solid hsla(0, 0%, 100%, .1);
  color: hsla(0, 0%, 100%, .45);
  display: flex;
  font-size: .72rem;
  font-weight: 700;
  gap: 7px;
  letter-spacing: .1em;
  margin: 0;
  padding-bottom: 10px;
  text-transform: uppercase
}

.nav-search-result-heading svg {
  color: var(--secondary-color);
  flex-shrink: 0;
  height: 13px;
  width: 13px
}

.nav-search-result-list {
  display: flex;
  flex-direction: column;
  gap: 2px
}

.nav-search-result-item {
  border-radius: 7px;
  color: hsla(0, 0%, 100%, .85);
  display: block;
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.45;
  padding: 7px 8px;
  text-decoration: none;
  transition: background .15s, color .15s
}

.nav-search-result-item span {
  color: hsla(0, 0%, 100%, .35);
  display: block;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .05em;
  margin-top: 2px;
  text-transform: uppercase
}

.nav-search-result-item:hover {
  background: hsla(0, 0%, 100%, .08);
  color: #fff
}

.nav-search-results-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 14px
}

.nav-search-view-all {
  align-items: center;
  background: #1020b0;
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-size: .86rem;
  font-weight: 700;
  gap: 8px;
  padding: 10px 18px;
  text-decoration: none;
  transition: background .2s, transform .2s
}

.nav-search-view-all svg {
  height: 14px;
  width: 14px
}

.nav-search-view-all:hover {
  background: #1b2dcf;
  transform: translateY(-1px)
}

.nav-mobile-toggle {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  display: none;
  padding: 8px
}

.nav-mobile-overlay {
  background: rgba(0, 0, 0, .55);
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  transition: opacity .35s ease;
  z-index: 1099
}

.nav-mobile-overlay.active {
  opacity: 1;
  pointer-events: auto
}

.nav-mobile-drawer-header {
  align-items: center;
  border-bottom: 1px solid hsla(0, 0%, 100%, .1);
  display: none;
  flex-shrink: 0;
  justify-content: space-between;
  padding: 16px 20px
}

.nav-mobile-drawer-logo {
  height: 28px;
  width: auto
}

.nav-mobile-drawer-title {
  color: hsla(0, 0%, 100%, .45);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase
}

.nav-mobile-close {
  align-items: center;
  background: hsla(0, 0%, 100%, .08);
  border: none;
  border-radius: 8px;
  color: hsla(0, 0%, 100%, .7);
  cursor: pointer;
  display: flex;
  justify-content: center;
  padding: 7px;
  transition: background .2s, color .2s
}

.nav-mobile-close:hover {
  background: hsla(0, 0%, 100%, .15);
  color: #fff
}

.nav-mobile-drawer-footer {
  border-top: 1px solid hsla(0, 0%, 100%, .1);
  display: none;
  flex-direction: column;
  flex-shrink: 0;
  gap: 10px;
  margin-top: auto;
  padding: 20px
}

.nav-mobile-footer-label {
  color: hsla(0, 0%, 100%, .35);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  margin: 0 0 4px;
  text-transform: uppercase
}

.nav-mobile-footer-item {
  align-items: center;
  color: hsla(0, 0%, 100%, .65);
  display: flex;
  font-size: .875rem;
  gap: 10px;
  text-decoration: none;
  transition: color .2s
}

.nav-mobile-footer-item:hover {
  color: #fff
}

.nav-mobile-footer-item svg {
  flex-shrink: 0;
  opacity: .6
}

@media (max-width:1024px) {
  .nav-links {
    background: #0c1a3d;
    border-top: none;
    bottom: 0;
    box-shadow: -8px 0 32px rgba(0, 0, 0, .4);
    display: flex;
    flex-direction: column;
    height: 100dvh;
    list-style: none;
    margin: 0;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0;
    position: fixed;
    right: 0;
    top: 0;
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.4, 0, .2, 1);
    width: 300px;
    z-index: 1100
  }

  .nav-links.mobile-open {
    transform: translateX(0)
  }

  .nav-mobile-drawer-footer,
  .nav-mobile-drawer-header {
    display: flex
  }

  .nav-item {
    border-bottom: 1px solid hsla(0, 0%, 100%, .07)
  }

  .nav-link {
    align-items: center;
    display: flex;
    font-size: 1rem;
    justify-content: space-between;
    padding: 18px 24px;
    width: 100%
  }

  .nav-dropdown {
    background: rgba(0, 0, 0, .2);
    border: none;
    box-shadow: none;
    opacity: 1;
    padding-left: 0;
    position: static;
    transform: none;
    visibility: visible
  }

  .nav-item.has-dropdown .nav-dropdown {
    display: none
  }

  .nav-item.has-dropdown.open .nav-dropdown {
    display: block
  }

  .nav-item.has-dropdown>.nav-link:after {
    border-bottom: 2px solid hsla(0, 0%, 100%, .5);
    border-right: 2px solid hsla(0, 0%, 100%, .5);
    content: "";
    display: inline-block;
    flex-shrink: 0;
    height: 7px;
    margin-left: auto;
    transform: rotate(45deg);
    transition: transform .25s ease;
    width: 7px
  }

  .nav-item.has-dropdown.open>.nav-link:after {
    transform: rotate(-135deg)
  }

  .nav-dropdown li {
    border-bottom: none
  }

  .nav-dropdown li a {
    color: hsla(0, 0%, 100%, .65);
    display: block;
    font-size: .92rem;
    padding: 14px 24px 14px 32px;
    transition: color .2s, background .2s
  }

  .nav-dropdown li a:hover {
    background: hsla(0, 0%, 100%, .06);
    color: #fff
  }

  .nav-mobile-toggle {
    display: block
  }

  .nav-actions {
    margin-left: 0;
    padding-left: 0
  }

  .nav-search-panel {
    padding: 20px 16px
  }

  .nav-search-suggestions.visible {
    max-height: 70vh
  }
}

@media (max-width:480px) {
  .nav-links {
    width: 85vw
  }
}

@media (max-width:768px) {
  .nav-search-results-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .nav-search-result-group:nth-child(3n) {
    border-right: 1px solid hsla(0, 0%, 100%, .08)
  }

  .nav-search-result-group:nth-child(2n) {
    border-right: none
  }

  .nav-search-result-group:nth-last-child(-n+3) {
    border-bottom: 1px solid hsla(0, 0%, 100%, .08)
  }

  .nav-search-result-group:nth-last-child(-n+2) {
    border-bottom: none
  }

  .nav-search-result-group {
    padding: 16px 14px
  }
}

@media (max-width:480px) {
  .nav-search-results-grid {
    grid-template-columns: 1fr
  }

  .nav-search-result-group {
    border-bottom: 1px solid hsla(0, 0%, 100%, .08) !important;
    border-right: none !important;
    padding: 14px 12px
  }

  .nav-search-result-group:last-child {
    border-bottom: none !important
  }

  .nav-search-suggestions.visible {
    max-height: 75vh
  }
}

@media (max-width:576px) {
  .navbar-logo {
    height: 36px
  }

  .nav-contact-btn {
    font-size: .8rem;
    padding: 6px 14px
  }
}

.divider-dash {
  border: none;
  border-top: 1px dashed var(--border-color);
  margin: 0;
  opacity: .6
}

.tabs-nav {
  background: var(--bg-main);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
  position: sticky;
  top: calc(var(--nav-height, 69px) - 1px);
  transition: top .3s ease;
  z-index: 50
}

.tabs-list {
  display: flex;
  gap: 0;
  list-style: none;
  margin: 0;
  overflow-x: auto;
  padding: 0;
  -webkit-overflow-scrolling: touch
}

.tabs-list::-webkit-scrollbar {
  display: none
}

.tab-btn {
  align-items: center;
  background: transparent;
  border: none;
  border-radius: 0;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  font-family: var(--font-main);
  font-size: .88rem;
  font-weight: 600;
  gap: 8px;
  padding: 16px 24px;
  transition: background .2s ease, color .2s ease;
  white-space: nowrap
}

.tab-btn:hover {
  background: rgba(var(--secondary-rgb), .06);
  color: var(--primary-color)
}

.tab-btn.active {
  background: var(--primary-color);
  color: var(--text-light)
}

.tab-btn svg,
.tab-icon {
  flex-shrink: 0;
  height: 18px;
  opacity: .6;
  width: 18px
}

.tab-btn.active .tab-icon,
.tab-btn.active svg {
  opacity: 1
}

.tab-content {
  animation: tabFadeIn .4s ease;
  display: none
}

.tab-content.active {
  display: block
}

@keyframes tabFadeIn {
  0% {
    opacity: 0;
    transform: translateY(12px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@media (max-width:640px) {
  .tab-btn {
    font-size: .82rem;
    gap: 4px;
    padding: 14px 16px
  }
}

.sub-tabs {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  display: flex;
  gap: 4px;
  margin-bottom: 32px;
  padding: 4px
}

.sub-tab {
  background: transparent;
  border: none;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  cursor: pointer;
  font-family: var(--font-main);
  font-size: .85rem;
  font-weight: 600;
  padding: 10px 20px;
  transition: all .2s;
  white-space: nowrap
}

.sub-tab:hover {
  background: rgba(var(--secondary-rgb), .06);
  color: var(--primary-color)
}

.sub-tab.active {
  background: var(--secondary-color);
  color: #fff
}

.sub-tab-content {
  display: none
}

.sub-tab-content.active {
  animation: tabFadeIn .3s ease;
  display: block
}

@media (max-width:640px) {
  .sub-tab {
    font-size: .8rem;
    padding: 10px 14px
  }
}

@media (max-width:768px) {
  .sub-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch
  }

  .sub-tabs::-webkit-scrollbar {
    display: none
  }

  .sub-tab {
    flex-shrink: 0
  }
}

.process-nav {
  backdrop-filter: blur(8px);
  background: hsla(0, 0%, 100%, .94);
  border-bottom: 1px solid rgba(var(--primary-rgb), .08);
  border-top: 1px solid rgba(var(--primary-rgb), .06);
  overflow: visible;
  position: -webkit-sticky;
  position: sticky;
  top: calc(var(--nav-height, 69px) - 1px);
  z-index: 95
}

.process-progress {
  background: transparent;
  bottom: -1px;
  height: 3px;
  left: 0;
  pointer-events: none;
  position: absolute;
  width: 100%
}

.process-progress-fill {
  background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
  display: block;
  height: 100%;
  transition: width .1s ease;
  width: 0
}

.process-links {
  align-items: center;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 10px 0;
  scrollbar-width: none
}

.process-links::-webkit-scrollbar {
  display: none
}

.process-link {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 6px;
  color: var(--text-muted);
  display: inline-flex;
  flex: 0 0 auto;
  font-size: .74rem;
  font-weight: 700;
  justify-content: center;
  letter-spacing: .05em;
  padding: 7px 12px;
  text-transform: uppercase;
  transition: color .2s ease, border-color .2s ease, background-color .2s ease;
  white-space: nowrap
}

.process-link:hover {
  background: rgba(var(--secondary-rgb), .08);
  border-color: rgba(var(--secondary-rgb), .2);
  color: var(--secondary-color)
}

.process-link.active {
  background: var(--secondary-color);
  border-color: rgba(var(--secondary-rgb), .45);
  color: #fff
}

@media (max-width:960px) {
  .process-link {
    font-size: .7rem;
    padding: 6px 10px
  }
}

@media (max-width:768px) {
  .process-links {
    gap: 6px;
    padding: 8px 0
  }

  .process-link {
    font-size: .66rem;
    padding: 6px 10px
  }
}

.cta-section {
  padding: 80px 0
}

.cta-section.cta-surface {
  background: var(--surface-color)
}

.cta-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr 1fr
}

.cta-card {
  background: var(--bg-main);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  padding: 40px;
  transition: var(--transition)
}

.cta-card:hover {
  border-color: rgba(var(--secondary-rgb), .15);
  box-shadow: var(--shadow-md)
}

.cta-card-icon {
  align-items: center;
  background: rgba(var(--secondary-rgb), .08);
  border-radius: 14px;
  color: var(--secondary-color);
  display: flex;
  height: 56px;
  justify-content: center;
  margin-bottom: 20px;
  width: 56px
}

.cta-card-icon svg {
  height: 28px;
  width: 28px
}

.cta-card h3,
.cta-title {
  color: var(--text-dark);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 12px
}

.cta-card p,
.cta-desc {
  color: var(--text-muted);
  flex: 1;
  font-size: .9rem;
  line-height: 1.65;
  margin-bottom: 24px
}

.cta-card .btn {
  align-items: center;
  align-self: flex-start;
  display: inline-flex;
  gap: 8px;
  margin-top: auto;
  text-decoration: none
}

@media (max-width:768px) {
  .cta-section {
    padding: 56px 0
  }

  .cta-grid {
    gap: 20px;
    grid-template-columns: 1fr
  }

  .cta-card {
    padding: 28px
  }
}

.pagination {
  flex-wrap: wrap;
  gap: 6px
}

.page-btn,
.pagination {
  align-items: center;
  display: flex;
  justify-content: center
}

.page-btn {
  background: var(--bg-main);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  color: var(--text-muted);
  cursor: pointer;
  flex-shrink: 0;
  font-family: var(--font-main);
  font-size: .85rem;
  font-weight: 500;
  height: 38px;
  min-width: 38px;
  padding: 0;
  text-decoration: none;
  transition: var(--transition);
  user-select: none;
  width: 38px
}

.page-btn:hover:not(:disabled):not(.disabled) {
  border-color: var(--secondary-color);
  color: var(--secondary-color)
}

.page-btn.active {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  color: #fff;
  font-weight: 600
}

.page-btn.disabled,
.page-btn:disabled {
  cursor: not-allowed;
  opacity: .35;
  pointer-events: none
}

.page-btn svg {
  display: block;
  flex-shrink: 0;
  height: 16px;
  width: 16px
}

.page-btn-nav {
  background: var(--surface-color)
}

.btn,
button {
  align-items: center;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  box-sizing: border-box;
  cursor: pointer;
  display: inline-flex;
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 600;
  justify-content: center;
  line-height: 1.5;
  padding: 10px 24px;
  transition: var(--transition)
}

.btn-primary {
  background: var(--secondary-color);
  box-shadow: 0 4px 14px 0 rgba(0, 132, 255, .39);
  color: var(--surface-color)
}

.btn-primary:hover {
  background: #0073e6;
  box-shadow: 0 6px 20px rgba(0, 132, 255, .4);
  transform: translateY(-2px)
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color)
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: var(--surface-color)
}

.page-hero {
  background: linear-gradient(135deg, var(--primary-color) 0, var(--primary-light) 50%, var(--primary-color) 100%);
  color: #fff;
  overflow: hidden;
  padding: 100px 0 60px;
  position: relative
}

.page-hero:before {
  background: radial-gradient(ellipse 600px 400px at 20% 50%, rgba(var(--secondary-rgb), .15), transparent), radial-gradient(ellipse 500px 300px at 80% 30%, rgba(var(--accent-rgb), .1), transparent);
  bottom: 0;
  content: "";
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0
}

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

.page-hero-breadcrumbs {
  align-items: center;
  color: hsla(0, 0%, 100%, .5);
  display: flex;
  font-size: .82rem;
  gap: 8px;
  margin-bottom: 24px
}

.page-hero-breadcrumbs a {
  color: hsla(0, 0%, 100%, .5);
  text-decoration: none;
  transition: color .2s
}

.page-hero-breadcrumbs a:hover {
  color: #fff
}

.page-hero-bc-sep {
  font-size: .7rem
}

.page-hero-badge {
  align-items: center;
  background: rgba(var(--secondary-rgb), .15);
  border: 1px solid rgba(var(--secondary-rgb), .3);
  border-radius: 100px;
  color: var(--accent-color);
  display: inline-flex;
  font-size: .8rem;
  font-weight: 600;
  gap: 8px;
  letter-spacing: .5px;
  margin-bottom: 20px;
  padding: 6px 16px;
  text-transform: uppercase
}

.page-hero-badge svg {
  flex-shrink: 0;
  height: 16px;
  width: 16px
}

.page-hero h1 {
  color: #fff;
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px
}

.page-hero-desc {
  color: hsla(0, 0%, 100%, .75);
  font-size: 1.05rem;
  line-height: 1.7
}

.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px
}

.page-hero-actions .btn {
  font-size: .92rem;
  font-weight: 600;
  padding: 14px 32px
}

.page-hero-actions .btn-outline-light {
  background: transparent;
  border: 2px solid hsla(0, 0%, 100%, .3);
  color: #fff
}

.page-hero-actions .btn-outline-light:hover {
  background: hsla(0, 0%, 100%, .1);
  border-color: hsla(0, 0%, 100%, .5)
}

.page-hero-stats {
  border-top: 1px solid hsla(0, 0%, 100%, .1);
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 36px;
  padding-top: 28px;
  position: relative;
  z-index: 2
}

.page-hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.page-hero-stat-value {
  background: linear-gradient(135deg, #fff, var(--accent-color));
  -webkit-background-clip: text;
  background-clip: text;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  -webkit-text-fill-color: transparent;
  line-height: 1.2
}

.page-hero-stat-label {
  color: hsla(0, 0%, 100%, .5);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .5px;
  text-transform: uppercase
}

.page-header {
  background: linear-gradient(135deg, var(--primary-color) 0, var(--primary-light) 100%);
  color: var(--text-light);
  margin-bottom: 40px;
  padding: 60px 0;
  text-align: center
}

.page-header h1 {
  color: var(--text-light);
  margin-bottom: 0
}

@media (max-width:1024px) {
  .page-hero {
    padding: 90px 0 48px
  }

  .page-hero h1 {
    font-size: 2.4rem
  }
}

@media (max-width:768px) {
  .page-hero {
    padding: 80px 0 40px
  }

  .page-hero h1 {
    font-size: 2rem
  }

  .page-hero-desc {
    font-size: .95rem
  }

  .page-hero-stats {
    gap: 24px
  }

  .page-hero-stat-value {
    font-size: 1.5rem
  }

  .page-hero-actions {
    flex-direction: column
  }

  .page-hero-actions .btn {
    justify-content: center;
    text-align: center;
    width: 100%
  }
}

@media (max-width:480px) {
  .page-hero {
    padding: 72px 0 32px
  }

  .page-hero h1 {
    font-size: 1.7rem
  }

  .page-hero-badge {
    font-size: .72rem;
    padding: 5px 12px
  }

  .page-hero-desc {
    font-size: .9rem
  }

  .page-hero-stats {
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
    padding-top: 20px
  }

  .page-hero-stat-value {
    font-size: 1.3rem
  }

  .page-hero-stat-label {
    font-size: .7rem
  }
}

.content-container {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  padding-bottom: 80px
}

.card {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  height: 100%;
  padding: 32px;
  transition: var(--transition)
}

.card:hover {
  border-color: var(--secondary-color);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px)
}

.card h2 {
  border-bottom: 2px solid var(--bg-main);
  color: var(--primary-color);
  font-size: 1.25rem;
  margin-bottom: 16px;
  padding-bottom: 12px
}

.section-body {
  color: var(--text-muted)
}

.glass {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: hsla(0, 0%, 100%, .7);
  border: 1px solid hsla(0, 0%, 100%, .3)
}

footer {
  background: #fbfdff;
  color: #4a5568;
  margin-top: auto;
  overflow: hidden;
  padding: 120px 0 30px;
  position: relative
}

footer .container {
  position: relative;
  z-index: 1
}

.footer-wave {
  /* background-image: url(../img/bg-footer.png); */
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
  transition: opacity 0.8s ease-in-out;
}

.footer-wave.lazy-bg {
  opacity: 0;
}

.footer-wave.lazy-bg.loaded {
  opacity: 0.4;
}

.footer-top {
  display: block
}

.footer-top-r1 {
  align-items: end;
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 24px
}

.footer-dashed-line {
  border-top: 1px dashed #d1d9e6;
  grid-column: span 2;
  width: 100%
}

.footer-top-r2 {
  align-items: flex-start;
  border-bottom: 1px solid rgba(148, 163, 184, .3);
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 40px;
  padding-bottom: 40px
}

.footer-logo {
  align-self: flex-start;
  filter: brightness(0) saturate(100%) invert(10%) sepia(50%) saturate(2000%) hue-rotate(200deg);
  height: 48px;
  width: auto
}

.footer-social {
  display: flex;
  gap: 12px
}

.footer-social-icon {
  align-items: center;
  background: rgba(var(--secondary-rgb), .05);
  border: 1px solid rgba(var(--secondary-rgb), .1);
  border-radius: 50%;
  color: var(--secondary-color);
  display: flex;
  height: 40px;
  justify-content: center;
  transition: all .3s ease;
  width: 40px
}

.footer-social-icon:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  box-shadow: 0 4px 12px rgba(var(--secondary-rgb), .2);
  color: #fff;
  transform: translateY(-3px)
}

.footer-col-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  grid-column: span 2;
  text-align: left
}

.footer-address-text {
  align-items: flex-start;
  color: #4a5568;
  display: flex;
  font-size: .95rem;
  gap: 8px;
  line-height: 1.6;
  margin: 0
}

.footer-contact-inline {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px
}

.footer-inline-item {
  align-items: center;
  color: #4a5568;
  display: flex;
  font-size: .95rem;
  gap: 6px;
  margin: 0
}

.f-icon {
  color: var(--secondary-color);
  flex-shrink: 0;
  margin-top: 2px
}

.footer-inline-item .f-icon {
  margin-top: 0
}

.f-divider {
  color: #cbd5e1;
  font-size: .9rem
}

.footer-heading {
  color: var(--primary-color);
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 20px
}

.footer-links-row {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 48px;
  padding: 0
}

.footer-links-row:last-of-type {
  margin-bottom: 0
}

.footer-col-subscribe {
  flex: 1
}

.footer-text {
  color: #4a5568;
  font-size: .9rem;
  line-height: 1.6;
  margin-bottom: 6px
}

.footer-subscribe {
  margin-bottom: 8px
}

.footer-email-input {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--text-subtle);
  color: var(--text-dark);
  font-family: var(--font-main);
  font-size: .9rem;
  max-width: 100%;
  outline: none;
  padding: 8px 0;
  width: 300px
}

.footer-email-input::placeholder {
  color: var(--text-subtle)
}

.footer-email-input:focus {
  border-color: var(--secondary-color)
}

.footer-disclaimer {
  color: var(--text-subtle);
  font-size: .75rem;
  line-height: 1.5
}

.footer-disclaimer a {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: underline
}

.footer-links {
  list-style: none
}

.footer-links li {
  margin-bottom: 12px
}

.footer-links a {
  color: #4a5568;
  font-size: .88rem;
  transition: color .2s
}

.footer-links a:hover {
  color: var(--secondary-color)
}

.footer-bottom {
  border-top: 1px dashed #d1d9e6;
  color: var(--text-subtle);
  font-size: .82rem;
  padding-top: 30px;
  text-align: left
}

.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap
}

.home-main {
  padding-bottom: 0
}

.hero-section {
  background-color: var(--primary-color);
  color: var(--text-light);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  overflow: hidden;
  position: relative
}

.hero-bg {
  background: var(--navbar-bg);
  background-size: cover;
  z-index: 0;
  height: 100%;
  transition: opacity 0.8s ease-in-out;
}

.hero-bg.lazy-bg {
  opacity: 0;
}

.hero-bg.lazy-bg.loaded {
  opacity: 1;
}

.hero-bg,
.hero-overlay {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%
}

.hero-overlay {
  background: linear-gradient(135deg, rgba(var(--primary-rgb), .9) 0, rgba(var(--primary-rgb), .6) 50%, rgba(var(--primary-rgb), .3) 100%);
  z-index: 1
}

.hero-section #navbar-container {
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 30
}

.hero-content {
  align-items: center;
  display: flex;
  flex: 1;
  gap: 60px;
  margin-top: -10%;
  padding-bottom: 40px;
  padding-top: 100px;
  position: relative;
  width: 100%;
  z-index: 2
}

.hero-left {
  flex: 0 0 58%;
  max-width: 58%
}

.hero-right {
  align-items: center;
  display: flex;
  flex: 1;
  justify-content: center
}

.hero-title {
  color: var(--text-light);
  font-family: var(--font-serif);
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px
}

.hero-tagline {
  color: var(--text-light);
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 520px;
  opacity: .9;
  text-wrap: pretty
}

.hero-cta-group {
  align-items: center;
  display: flex;
  gap: 16px
}

.hero-cta.btn-primary {
  background: var(--secondary-color);
  border: 2px solid var(--secondary-color);
  border-radius: 6px;
  color: #fff;
  font-size: .95rem;
  font-weight: 600;
  padding: 14px 32px;
  text-decoration: none;
  transition: background .2s
}

.hero-cta.btn-primary:hover {
  background: #0073e6;
  border-color: #0073e6
}

.hero-cta.btn-outline {
  background: transparent;
  border: 2px solid hsla(0, 0%, 100%, .4);
  border-radius: 6px;
  color: #fff;
  font-size: .95rem;
  font-weight: 600;
  padding: 14px 32px;
  text-decoration: none;
  transition: border-color .2s, background .2s
}

.hero-cta.btn-outline:hover {
  background: hsla(0, 0%, 100%, .08);
  border-color: #fff
}

.hero-visual {
  height: 442px;
  position: relative;
  width: 442px
}

.hv-ring {
  animation: hv-pulse 7s ease-in-out infinite;
  border-radius: 50%;
  left: 50%;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%)
}

.hv-ring--1 {
  animation-delay: 0s;
  animation-duration: 9s;
  border: 1px solid rgba(var(--accent-rgb), .1);
  height: 442px;
  width: 442px
}

.hv-ring--2 {
  animation-delay: -2.5s;
  animation-duration: 7.5s;
  border: 1px solid rgba(var(--secondary-rgb), .18);
  height: 328px;
  width: 328px
}

.hv-ring--3 {
  animation-delay: -4s;
  animation-duration: 6s;
  border: 1px solid rgba(var(--accent-rgb), .28);
  height: 218px;
  width: 218px
}

.hv-ring--4 {
  animation-delay: -1s;
  animation-duration: 5s;
  border: 1.5px solid rgba(var(--accent-rgb), .5);
  height: 117px;
  width: 117px
}

.hv-sweep {
  animation: hv-sweep 14s linear infinite;
  background: conic-gradient(from 0deg, rgba(var(--accent-rgb), .07) 0deg, rgba(var(--accent-rgb), .03) 45deg, transparent 90deg, transparent 1turn);
  border-radius: 50%;
  height: 442px;
  transform: translate(-50%, -50%);
  width: 442px
}

.hv-orbit,
.hv-sweep {
  left: 50%;
  pointer-events: none;
  position: absolute;
  top: 50%
}

.hv-orbit {
  height: 0;
  width: 0
}

.hv-orbit--a {
  animation: hv-orbit-ccw 18s linear infinite
}

.hv-orbit--b {
  animation: hv-orbit-cw 12s linear infinite
}

.hv-orbit--c {
  animation: hv-orbit-ccw 9s linear infinite
}

.hv-orbit__dot {
  background: var(--accent-color);
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(var(--accent-rgb), .8);
  position: absolute
}

.hv-orbit--a .hv-orbit__dot {
  height: 7px;
  transform: translateX(192px) translateY(-3.5px);
  width: 7px
}

.hv-orbit--b .hv-orbit__dot {
  background: var(--secondary-color);
  box-shadow: 0 0 5px rgba(var(--secondary-rgb), .7);
  height: 6px;
  transform: translateX(-140px) translateY(-3px);
  width: 6px
}

.hv-orbit--c .hv-orbit__dot {
  height: 5px;
  transform: translateX(83px) translateY(-2.5px);
  width: 5px
}

.hv-dot {
  animation: hv-float 4s ease-in-out infinite;
  background: var(--accent-color);
  border-radius: 50%;
  pointer-events: none;
  position: absolute
}

.hv-dot--1 {
  animation-delay: 0s;
  animation-duration: 4.2s;
  height: 5px;
  left: 21%;
  opacity: .6;
  top: 11%;
  width: 5px
}

.hv-dot--2 {
  animation-delay: -1s;
  animation-duration: 3.5s;
  background: var(--secondary-color);
  height: 3px;
  opacity: .7;
  right: 13%;
  top: 27%;
  width: 3px
}

.hv-dot--3 {
  animation-delay: -2s;
  animation-duration: 5s;
  bottom: 17%;
  height: 4px;
  left: 14%;
  opacity: .55;
  width: 4px
}

.hv-dot--4 {
  animation-delay: -.5s;
  animation-duration: 3.8s;
  bottom: 24%;
  height: 3px;
  opacity: .65;
  right: 9%;
  width: 3px
}

.hv-dot--5 {
  animation-delay: -1.8s;
  animation-duration: 4.5s;
  background: hsla(0, 0%, 100%, .4);
  height: 5px;
  left: 7%;
  opacity: .45;
  top: 61%;
  width: 5px
}

.hv-dot--6 {
  animation-delay: -3s;
  animation-duration: 3.2s;
  height: 3px;
  opacity: .6;
  right: 24%;
  top: 17%;
  width: 3px
}

.hv-core {
  align-items: center;
  display: flex;
  height: 72px;
  justify-content: center;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 72px
}

.hv-lotus {
  animation: hv-lotus-breathe 5s ease-in-out infinite;
  height: 100%;
  object-fit: contain;
  width: 100%
}

@keyframes hv-pulse {

  0%,
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1)
  }

  50% {
    opacity: .4;
    transform: translate(-50%, -50%) scale(1.04)
  }
}

@keyframes hv-orbit-cw {
  0% {
    transform: rotate(0deg)
  }

  to {
    transform: rotate(1turn)
  }
}

@keyframes hv-orbit-ccw {
  0% {
    transform: rotate(0deg)
  }

  to {
    transform: rotate(-1turn)
  }
}

@keyframes hv-float {

  0%,
  to {
    transform: translate(0)
  }

  30% {
    transform: translate(3px, -7px)
  }

  70% {
    transform: translate(-2px, 4px)
  }
}

@keyframes hv-lotus-breathe {

  0%,
  to {
    filter: drop-shadow(0 0 8px rgba(var(--accent-rgb), .4));
    opacity: .85
  }

  50% {
    filter: drop-shadow(0 0 18px rgba(var(--accent-rgb), .7));
    opacity: 1
  }
}

@keyframes hv-sweep {
  0% {
    transform: translate(-50%, -50%) rotate(0deg)
  }

  to {
    transform: translate(-50%, -50%) rotate(1turn)
  }
}

.hv-value {
  align-items: center;
  cursor: pointer;
  display: flex;
  height: 32px;
  justify-content: center;
  position: absolute;
  width: 32px;
  z-index: 5
}

.hv-value--top {
  animation: hv-node-a 7s ease-in-out infinite;
  left: 205px;
  top: 62px
}

.hv-value--right {
  animation: hv-node-b 9s ease-in-out infinite;
  animation-delay: -3s;
  left: 348px;
  top: 205px
}

.hv-value--bottom {
  animation: hv-node-c 6s ease-in-out infinite;
  animation-delay: -5s;
  left: 205px;
  top: 348px
}

.hv-value--left {
  animation: hv-node-d 8s ease-in-out infinite;
  animation-delay: -1.5s;
  left: 62px;
  top: 205px
}

.hv-value__ping {
  animation: hv-value-ping 2.8s ease-out infinite;
  background: rgba(var(--accent-rgb), .45);
  border-radius: 50%;
  height: 10px;
  pointer-events: none;
  position: absolute;
  width: 10px
}

.hv-value--left .hv-value__ping,
.hv-value--right .hv-value__ping {
  animation-delay: -1.4s
}

.hv-value__dot {
  background: var(--accent-color);
  border-radius: 50%;
  box-shadow: 0 0 7px rgba(var(--accent-rgb), .65);
  height: 9px;
  position: relative;
  transition: transform .25s cubic-bezier(.16, 1, .3, 1), box-shadow .25s ease;
  width: 9px;
  z-index: 1
}

.hv-value:hover .hv-value__dot {
  box-shadow: 0 0 12px rgba(var(--accent-rgb), 1);
  transform: scale(1.6)
}

.hv-value__label {
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  background: rgba(var(--primary-rgb), .88);
  border: 1px solid rgba(var(--accent-rgb), .35);
  border-radius: 4px;
  color: hsla(0, 0%, 100%, .92);
  font-family: var(--font-main);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .04em;
  opacity: 0;
  padding: 5px 11px;
  pointer-events: none;
  position: absolute;
  text-transform: uppercase;
  transition: opacity .22s ease, transform .22s cubic-bezier(.16, 1, .3, 1);
  white-space: nowrap
}

.hv-value--top .hv-value__label {
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(6px)
}

.hv-value--top:hover .hv-value__label {
  opacity: 1;
  transform: translateX(-50%) translateY(0)
}

.hv-value--right .hv-value__label {
  left: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%) translateX(-6px)
}

.hv-value--right:hover .hv-value__label {
  opacity: 1;
  transform: translateY(-50%) translateX(0)
}

.hv-value--bottom .hv-value__label {
  left: 50%;
  top: calc(100% + 10px);
  transform: translateX(-50%) translateY(-6px)
}

.hv-value--bottom:hover .hv-value__label {
  opacity: 1;
  transform: translateX(-50%) translateY(0)
}

.hv-value--left .hv-value__label {
  right: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%) translateX(6px)
}

.hv-value--left:hover .hv-value__label {
  opacity: 1;
  transform: translateY(-50%) translateX(0)
}

@keyframes hv-value-ping {
  0% {
    opacity: .55;
    transform: scale(1)
  }

  70% {
    opacity: 0;
    transform: scale(3)
  }

  to {
    opacity: 0;
    transform: scale(3)
  }
}

@keyframes hv-node-a {
  0% {
    transform: translate(0)
  }

  20% {
    transform: translate(9px, -13px)
  }

  45% {
    transform: translate(-7px, -15px)
  }

  70% {
    transform: translate(12px, -6px)
  }

  to {
    transform: translate(0)
  }
}

@keyframes hv-node-b {
  0% {
    transform: translate(0)
  }

  25% {
    transform: translate(11px, 9px)
  }

  55% {
    transform: translate(7px, -12px)
  }

  80% {
    transform: translate(14px, 5px)
  }

  to {
    transform: translate(0)
  }
}

@keyframes hv-node-c {
  0% {
    transform: translate(0)
  }

  30% {
    transform: translate(-9px, 13px)
  }

  60% {
    transform: translate(11px, 9px)
  }

  85% {
    transform: translate(-5px, 15px)
  }

  to {
    transform: translate(0)
  }
}

@keyframes hv-node-d {
  0% {
    transform: translate(0)
  }

  15% {
    transform: translate(-13px, -7px)
  }

  50% {
    transform: translate(-9px, 11px)
  }

  75% {
    transform: translate(-15px, 3px)
  }

  to {
    transform: translate(0)
  }
}

.rating-slider {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(var(--primary-rgb), .3);
  border-top: 1px solid hsla(0, 0%, 100%, .1);
  bottom: 0;
  color: #fff;
  left: 0;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 100%;
  z-index: 20
}

.slider-track {
  animation: scroll-slider 120s linear infinite;
  display: inline-flex;
  gap: 0
}

.slider-track:hover {
  animation-play-state: paused
}

@keyframes scroll-slider {
  0% {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

.slider-card {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 300px;
  padding: 16px 28px;
  position: relative;
  transition: background .3s ease
}

.slider-card:after {
  background: hsla(0, 0%, 100%, .12);
  content: "";
  height: 60%;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px
}

.slider-card:hover {
  background: hsla(0, 0%, 100%, .06)
}

.slider-tag {
  color: hsla(0, 0%, 100%, .6);
  display: inline-block;
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .06em;
  margin-bottom: 4px;
  text-transform: uppercase;
  white-space: nowrap
}

.slider-meta {
  align-items: center;
  display: flex;
  gap: 6px
}

.slider-date {
  color: hsla(0, 0%, 100%, .6);
  font-size: .75rem;
  font-weight: 500
}

.slider-meta-divider {
  color: hsla(0, 0%, 100%, .3);
  font-size: .7rem
}

.slider-action {
  color: hsla(0, 0%, 100%, .4);
  font-size: .75rem;
  font-weight: 400
}

.slider-entity {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin: 2px 0
}

.slider-bond {
  color: hsla(0, 0%, 100%, .55);
  font-family: monospace;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .03em
}

.slider-bottom {
  align-items: baseline;
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 6px
}

.slider-outlook {
  color: hsla(0, 0%, 100%, .5);
  font-size: .78rem;
  font-weight: 400
}

.slider-grade {
  font-size: 1rem;
  font-weight: 800;
  line-height: 1
}

.slider-card .slider-grade {
  background: var(--secondary-color);
  border-radius: 4px;
  color: #fff;
  font-weight: 600;
  padding: 2px 8px
}

.grade-aaa {
  color: var(--grade-aaa)
}

.grade-aa {
  color: var(--grade-aa)
}

.grade-a {
  color: var(--grade-a)
}

.grade-ccc {
  color: var(--grade-ccc)
}

.research-story {
  background: var(--bg-main);
  padding: 60px 0;
  position: relative
}

.research-story-layout {
  align-items: flex-start;
  display: flex;
  gap: 24px
}

.research-sticky-col {
  flex: 1;
  height: fit-content;
  position: sticky;
  top: 80px
}

.research-scroll-col {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 16px
}

.research-grid-layout {
  align-items: stretch;
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 1fr
}

.research-card-v2.featured-large {
  display: flex;
  flex-direction: column;
  grid-row: 1/2
}

.research-card-v2.featured-large .research-card-image {
  flex-shrink: 0;
  height: 260px
}

.research-card-v2.featured-large .research-card-body {
  flex: 1;
  padding: 24px
}

.research-card-v2.featured-large .research-card-title {
  font-size: 1.4rem
}

.research-side-col {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.research-card-v2.compact {
  flex: 1
}

.research-card-v2.compact .research-card-body {
  padding: 16px 20px
}

.research-card-v2.compact .research-card-title {
  font-size: 1rem;
  margin-bottom: 4px
}

.research-card-v2.compact .research-card-date {
  margin-top: auto
}

.section-header {
  align-items: baseline;
  border-bottom: 2px solid var(--primary-color);
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  padding-bottom: 16px
}

.section-title {
  color: var(--primary-color);
  font-family: var(--font-serif);
  font-size: 2.5rem;
  margin: 0
}

.find-out-more {
  color: var(--secondary-color);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .5px
}

.research-card-v2 {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  text-decoration: none;
  transition: transform .4s cubic-bezier(.16, 1, .3, 1), box-shadow .4s ease, border-color .4s ease
}

.research-card-v2:hover {
  border-color: rgba(var(--secondary-rgb), .3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
  transform: translateY(-8px)
}

.research-card-image {
  height: 200px;
  overflow: hidden;
  position: relative;
  width: 100%
}

.research-card-image img {
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
  width: 100%
}

.research-card-v2:hover .research-card-image img {
  transform: scale(1.05)
}

.research-card-image-overlay {
  background: linear-gradient(to top, rgba(var(--primary-rgb), .6), transparent);
  bottom: 0;
  height: 60%;
  left: 0;
  position: absolute;
  right: 0
}

.research-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 16px 20px
}

.research-card-meta {
  align-items: center;
  display: flex;
  gap: 8px;
  margin-bottom: 12px
}

.research-card-tag {
  color: var(--secondary-color);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase
}

.research-card-sector {
  color: var(--text-muted);
  font-size: .75rem;
  font-weight: 500
}

.research-card-sector:before {
  color: var(--border-color);
  content: "•";
  margin-right: 8px
}

.research-card-title {
  color: var(--primary-color);
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 8px
}

.research-card-v2.featured .research-card-title {
  font-size: 1.35rem
}

.research-card-excerpt {
  color: var(--text-muted);
  display: -webkit-box;
  font-size: .95rem;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  line-height: 1.6;
  -webkit-box-orient: vertical;
  overflow: hidden
}

.research-card-date {
  color: var(--text-muted);
  font-size: .8rem;
  font-weight: 500;
  margin-top: 20px
}

.stats-section-dark {
  background: var(--surface-color);
  padding: 48px 0
}

.stats-inner-box {
  background: linear-gradient(135deg, rgba(var(--secondary-rgb), .12) 0, rgba(var(--secondary-rgb), .06) 50%, rgba(var(--accent-rgb), .08) 100%);
  border: 1px solid rgba(var(--secondary-rgb), .2);
  border-radius: 20px;
  box-shadow: 0 4px 32px rgba(var(--secondary-rgb), .08);
  overflow: hidden;
  padding: 56px 48px;
  position: relative
}

.stats-inner-box:before {
  animation: stats-shimmer 4s ease-in-out infinite;
  background: linear-gradient(110deg, transparent 20%, rgba(var(--secondary-rgb), .07) 50%, transparent 80%);
  background-size: 200% 100%;
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1
}

@keyframes stats-shimmer {
  0% {
    background-position: -100% 0
  }

  to {
    background-position: 200% 0
  }
}

.stats-bg-glow {
  animation: stats-glow-float 6s ease-in-out infinite;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .5;
  pointer-events: none;
  position: absolute;
  z-index: 1
}

.glow-1 {
  animation-delay: 0s;
  background: rgba(var(--secondary-rgb), .4);
  height: 300px;
  left: -40px;
  top: -60px;
  width: 300px
}

.glow-2 {
  animation-delay: 3s;
  background: rgba(var(--accent-rgb), .35);
  bottom: -60px;
  height: 320px;
  right: -40px;
  width: 320px
}

@keyframes stats-glow-float {

  0%,
  to {
    transform: translate(0) scale(1)
  }

  50% {
    transform: translate(20px, -20px) scale(1.1)
  }
}

.stats-section-header {
  margin-bottom: 48px;
  position: relative;
  text-align: center;
  z-index: 2
}

.stats-heading-dark {
  color: var(--primary-color);
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
  text-align: center
}

.stats-subheading-dark {
  color: var(--text-muted);
  font-size: .95rem;
  line-height: 1.7;
  margin: 0 auto;
  max-width: 520px
}

.stats-grid-cinematic {
  align-items: start;
  display: grid;
  gap: 0 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: auto;
  position: relative;
  z-index: 2
}

.stat-cinematic-card {
  align-items: center;
  border-left: 1px solid rgba(var(--secondary-rgb), .15);
  display: flex;
  flex-direction: column;
  gap: 10px;
  grid-row: auto;
  justify-content: flex-start;
  padding: 0 24px;
  text-align: center
}

.stat-cinematic-card:first-child {
  border-left: none
}

.stat-number-cinematic {
  background: linear-gradient(135deg, var(--secondary-color) 0, var(--accent-color) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 700;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
  margin-bottom: 8px
}

.stat-prelabel-cinematic {
  color: var(--text-muted);
  font-size: .85rem;
  line-height: 1.4;
  margin-bottom: 8px
}

.stat-desc-cinematic {
  color: var(--text-muted);
  font-size: .9rem;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 250px
}

.stat-unit-cinematic {
  display: block;
  font-family: var(--font-main);
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 2px
}

.solutions-scroll-section {
  background: var(--surface-color);
  padding: 60px 0;
  position: relative
}

.solutions-split-layout {
  align-items: flex-start;
  display: flex;
  gap: 32px
}

.solutions-sticky-sidebar {
  flex: 0 0 35%;
  position: sticky;
  top: 120px
}

.solutions-intro {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-top: 2rem
}

.solutions-scroll-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 32px
}

.solutions-group-glass {
  display: flex;
  flex-direction: column;
  gap: 20px
}

.solutions-group-label-glass {
  border-bottom: 2px solid rgba(var(--secondary-rgb), .1);
  color: var(--text-muted);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding-bottom: 12px;
  text-transform: uppercase
}

.solutions-cards-vertical {
  display: flex;
  flex-direction: column;
  gap: 20px
}

.solution-card-glass {
  align-items: flex-start;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: hsla(0, 0%, 100%, .6);
  border: 1px solid hsla(0, 0%, 100%, .8);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 20px rgba(0, 0, 0, .03);
  display: flex;
  gap: 16px;
  overflow: hidden;
  padding: 24px;
  position: relative;
  text-decoration: none;
  transition: all .4s ease
}

.solution-card-glass:hover {
  background: hsla(0, 0%, 100%, .9);
  border-color: var(--secondary-color);
  box-shadow: 0 12px 30px rgba(var(--secondary-rgb), .08);
  transform: translateX(8px)
}

.solution-card-glass.highlighted {
  border-left: 4px solid var(--secondary-color)
}

.solutions-group-featured {
  background: linear-gradient(135deg, var(--primary-color) 0, var(--primary-light) 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 32px;
  position: relative
}

.solutions-group-featured:before {
  background: radial-gradient(circle, rgba(var(--accent-rgb), .15), transparent 70%);
  content: "";
  height: 200px;
  pointer-events: none;
  position: absolute;
  right: -50px;
  top: -50px;
  width: 200px
}

.solutions-group-featured .solutions-group-label-glass {
  border-bottom-color: rgba(var(--accent-rgb), .25);
  color: var(--accent-color);
  font-size: .95rem;
  letter-spacing: 1.5px
}

.solutions-group-featured .solution-card-glass {
  backdrop-filter: blur(12px);
  background: hsla(0, 0%, 100%, .08);
  border-color: hsla(0, 0%, 100%, .12)
}

.solutions-group-featured .solution-card-glass:hover {
  background: hsla(0, 0%, 100%, .14);
  border-color: var(--accent-color);
  box-shadow: 0 12px 30px rgba(var(--accent-rgb), .1)
}

.solutions-group-featured .solution-card-icon {
  background: rgba(var(--accent-rgb), .15);
  box-shadow: none;
  color: var(--accent-color)
}

.solutions-group-featured .solution-card-title {
  color: #fff
}

.solutions-group-featured .solution-card-desc {
  color: hsla(0, 0%, 100%, .7)
}

.solutions-group-featured .solution-card-arrow-glass {
  color: var(--accent-color)
}

.solution-card-icon {
  align-items: center;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .05);
  color: var(--secondary-color);
  display: flex;
  flex-shrink: 0;
  height: 48px;
  justify-content: center;
  width: 48px
}

.solution-card-content {
  flex: 1
}

.solution-card-title {
  color: var(--primary-color);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 6px
}

.solution-card-desc {
  color: var(--text-muted);
  font-size: .95rem;
  line-height: 1.6;
  margin: 0
}

.solution-card-arrow-glass {
  align-self: center;
  color: var(--secondary-color);
  font-size: 1.5rem;
  opacity: 0;
  transform: translateX(-10px);
  transition: all .3s ease
}

.solution-card-glass:hover .solution-card-arrow-glass {
  opacity: 1;
  transform: translateX(0)
}

.contact-elevated-section {
  background: var(--surface-color);
  padding: 60px 0 80px
}

.contact-banner-wrapper {
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .1);
  margin-bottom: 32px;
  overflow: hidden;
  padding: 48px 24px;
  position: relative;
  text-align: center
}

.contact-banner-bg {
  background: linear-gradient(135deg, var(--primary-color) 0, var(--primary-light) 100%);
  z-index: 1
}

.contact-banner-bg,
.contact-banner-bg:after {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0
}

.contact-banner-bg:after {
  content: "";
  mix-blend-mode: overlay;
}

.contact-banner-bg.lazy-bg:after {
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.contact-banner-bg.lazy-bg.loaded:after {
  background-image: var(--contact-bg);
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
  opacity: .15;
}

.contact-banner-content {
  color: #fff;
  margin: 0 auto;
  position: relative;
  z-index: 2
}

.contact-banner-heading {
  color: #fff;
  font-family: var(--font-serif);
  font-size: 2rem;
  margin-bottom: 12px
}

.contact-banner-text {
  color: hsla(0, 0%, 100%, .8);
  font-size: 1rem;
  margin-bottom: 24px
}

.btn-glow {
  box-shadow: 0 0 20px rgba(var(--accent-rgb), .4)
}

.contact-secondary-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr 1fr
}

.contact-glass-panel {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  padding: 24px;
  transition: transform .3s ease, box-shadow .3s ease
}

.contact-glass-panel:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, .05);
  transform: translateY(-4px)
}

.cgp-header {
  gap: 16px;
  margin-bottom: 16px
}

.cgp-header,
.cgp-icon {
  align-items: center;
  display: flex
}

.cgp-icon {
  background: rgba(var(--secondary-rgb), .08);
  border-radius: 12px;
  color: var(--secondary-color);
  height: 48px;
  justify-content: center;
  width: 48px
}

.cgp-header h3 {
  color: var(--primary-color);
  font-size: 1.3rem;
  margin: 0
}

.cgp-text {
  color: var(--text-muted);
  flex: 1;
  font-size: 1rem;
  margin-bottom: 24px
}

.cgp-action {
  margin-top: auto
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px
}

.form-group.full-width {
  grid-column: 1/-1
}

.form-label {
  color: var(--primary-color);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .02em;
  text-transform: uppercase
}

.form-label .required {
  color: var(--error-color)
}

.form-input {
  background: #fff;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-dark);
  font-family: var(--font-main);
  font-size: .95rem;
  outline: none;
  padding: 12px 14px;
  transition: border-color .2s ease, box-shadow .2s ease;
  width: 100%
}

.form-input::placeholder {
  color: var(--text-subtle)
}

.form-input:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(var(--secondary-rgb), .1)
}

.form-input.error {
  border-color: var(--error-color);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, .1)
}

.form-input.success {
  border-color: var(--grade-aaa);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, .1)
}

.form-textarea {
  min-height: unset;
  resize: vertical
}

.form-helper {
  color: var(--text-muted);
  font-size: .75rem
}

.form-helper.error {
  color: var(--error-color)
}

.form-helper.success {
  color: #22c55e
}

.form-row {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr
}

.checkbox-label {
  align-items: center;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  font-size: .88rem;
  gap: 10px;
  user-select: none
}

.checkbox-label input[type=checkbox] {
  accent-color: var(--secondary-color);
  cursor: pointer;
  flex-shrink: 0;
  height: 18px;
  width: 18px
}

.cgp-form {
  display: flex;
  gap: 12px
}

.cgp-form input {
  flex: 1;
  width: auto
}

.cgp-form button {
  font-size: 1.2rem;
  padding: 0 20px
}

@keyframes form-toast-in {
  0% {
    opacity: 0;
    transform: translateY(-6px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.form-success-toast {
  align-items: center;
  animation: form-toast-in .3s cubic-bezier(.16, 1, .3, 1);
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-sm);
  color: #16a34a;
  display: flex;
  font-size: .875rem;
  font-weight: 600;
  gap: 10px;
  margin-top: 12px;
  padding: 12px 16px
}

.form-success-toast svg {
  flex-shrink: 0;
  height: 18px;
  width: 18px
}

.subscribe-success {
  align-items: center;
  animation: form-toast-in .3s cubic-bezier(.16, 1, .3, 1);
  color: #16a34a;
  display: flex;
  font-size: .9rem;
  font-weight: 600;
  gap: 8px;
  padding: 10px 0
}

.subscribe-success svg {
  flex-shrink: 0;
  height: 18px;
  width: 18px
}

.contact-modal-overlay {
  align-items: center;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  background: rgba(var(--primary-rgb), .6);
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  opacity: 0;
  padding: 24px;
  pointer-events: none;
  position: fixed;
  right: 0;
  top: 0;
  transition: opacity .35s ease, visibility .35s ease;
  visibility: hidden;
  z-index: var(--z-modal)
}

.contact-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
  visibility: visible
}

.media-modal-overlay {
  z-index: 10001
}

.nav-icon-btn.active {
  background: rgba(var(--secondary-rgb), .28);
  color: #fff
}

.auth-modal-overlay {
  align-items: center;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  background: rgba(var(--primary-rgb), .64);
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  opacity: 0;
  padding: 24px;
  pointer-events: none;
  position: fixed;
  right: 0;
  top: 0;
  transition: opacity .35s ease, visibility .35s ease;
  visibility: hidden;
  z-index: var(--z-modal-top)
}

.auth-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
  visibility: visible
}

.auth-modal-overlay[aria-hidden=true] {
  opacity: 0 !important;
  pointer-events: none !important;
  visibility: hidden !important
}

.auth-modal {
  background: #fff;
  border: 1px solid rgba(var(--secondary-rgb), .14);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px rgba(var(--primary-rgb), .24), inset 0 1px 0 hsla(0, 0%, 100%, .6);
  display: flex;
  flex-direction: column;
  max-height: min(88vh, 760px);
  max-width: 500px;
  overflow: hidden;
  position: relative;
  transform: translateY(24px) scale(.97);
  transition: transform .4s cubic-bezier(.16, 1, .3, 1);
  width: 100%
}

.auth-modal>.auth-modal-header,
.auth-modal>.auth-tabs {
  flex-shrink: 0;
  padding-left: 26px;
  padding-right: 26px
}

.auth-modal>.auth-modal-header {
  padding-top: 26px
}

.auth-modal>.auth-tabs {
  padding-bottom: 0
}

.auth-modal>.auth-panels {
  flex: 1;
  overflow-y: auto;
  padding: 0 26px 26px
}

.auth-modal-overlay.active .auth-modal {
  transform: translateY(0) scale(1)
}

.auth-modal-close {
  align-items: center;
  background: var(--surface-color);
  border: none;
  border-radius: 50%;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  height: 36px;
  justify-content: center;
  padding: 0;
  position: absolute;
  right: 16px;
  top: 16px;
  transition: var(--transition);
  width: 36px
}

.auth-modal-close:hover {
  background: #e2e8f0;
  color: var(--primary-color)
}

.auth-modal-header {
  margin-bottom: 22px;
  padding-right: 34px
}

.auth-modal-badge {
  background: rgba(var(--secondary-rgb), .12);
  border-radius: 999px;
  color: var(--secondary-color);
  display: inline-block;
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .08em;
  margin-bottom: 10px;
  padding: 5px 12px;
  text-transform: uppercase
}

.auth-modal-title {
  color: var(--primary-color);
  font-family: var(--font-serif);
  font-size: 1.6rem;
  margin: 0 0 8px
}

.auth-modal-subtitle {
  color: var(--text-muted);
  font-size: .92rem;
  line-height: 1.6;
  margin: 0
}

.auth-tabs {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 20px
}

.auth-panels {
  align-items: start;
  display: grid;
  margin-top: 2px;
  position: relative
}

.auth-tab-btn {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  color: var(--text-muted);
  cursor: pointer;
  font-size: .92rem;
  font-weight: 700;
  padding: 12px 10px;
  transition: var(--transition)
}

.auth-tab-btn:hover {
  border-color: var(--secondary-color);
  color: var(--primary-color)
}

.auth-tab-btn.active {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  box-shadow: 0 8px 18px rgba(var(--secondary-rgb), .25);
  color: #fff
}

.auth-tab-panel {
  display: block;
  grid-area: 1/1;
  inset: 0;
  opacity: 0;
  overflow: visible;
  pointer-events: none;
  position: absolute;
  transform: translateY(6px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  visibility: hidden
}

.auth-tab-panel.active {
  inset: auto;
  opacity: 1;
  pointer-events: auto;
  position: relative;
  transform: translateY(0);
  visibility: visible
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 14px
}

.auth-form-row {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr
}

.auth-form-helper {
  display: flex;
  justify-content: flex-end;
  margin-top: -4px
}

.auth-forgot-link {
  color: var(--secondary-color);
  font-size: .82rem;
  font-weight: 600;
  text-decoration: none
}

.auth-forgot-link:hover {
  text-decoration: underline
}

.auth-back-btn {
  align-items: center;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  display: inline-flex;
  font-size: .85rem;
  font-weight: 600;
  gap: 6px;
  margin-bottom: 16px;
  padding: 0;
  transition: color .15s ease
}

.auth-back-btn:hover {
  color: var(--primary-color)
}

.auth-forgot-desc {
  color: var(--text-muted);
  font-size: .9rem;
  line-height: 1.55;
  margin-bottom: 20px
}

.auth-forgot-success {
  padding: 16px 0 8px;
  text-align: center
}

.auth-forgot-success-icon {
  align-items: center;
  background: rgba(var(--secondary-rgb), .1);
  border-radius: 50%;
  color: var(--secondary-color);
  display: flex;
  height: 64px;
  justify-content: center;
  margin: 0 auto 20px;
  width: 64px
}

.auth-forgot-success-title {
  color: var(--primary-color);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px
}

.auth-forgot-success-desc {
  color: var(--text-muted);
  font-size: .9rem;
  line-height: 1.6;
  margin-bottom: 24px
}

.auth-form-error {
  color: #dc2626;
  font-size: .82rem;
  margin: -2px 0 0;
  min-height: 16px
}

.auth-captcha-block {
  line-height: 0;
  margin-top: 2px
}

.auth-captcha-block .cf-turnstile,
.contact-form-captcha .cf-turnstile {
  display: block;
  max-width: 300px
}

.auth-captcha-block iframe,
.contact-form-captcha iframe {
  display: block
}

.auth-recaptcha-demo {
  align-items: center;
  background: #f9f9f9;
  border: 1px solid #d3d3d3;
  border-radius: 4px;
  display: flex;
  gap: 14px;
  justify-content: space-between;
  padding: 10px 12px
}

.auth-recaptcha-check {
  align-items: center;
  color: #4a4a4a;
  cursor: pointer;
  display: inline-flex;
  font-size: .88rem;
  gap: 10px
}

.auth-recaptcha-check input {
  opacity: 0;
  pointer-events: none;
  position: absolute
}

.auth-recaptcha-box {
  background: #fff;
  border: 2px solid #c1c1c1;
  border-radius: 3px;
  flex-shrink: 0;
  height: 24px;
  position: relative;
  transition: border-color .2s ease, background .2s ease;
  width: 24px
}

.auth-recaptcha-check:hover .auth-recaptcha-box {
  border-color: #9aa0a6
}

.auth-recaptcha-check input:checked+.auth-recaptcha-box {
  background: #34a853;
  border-color: #34a853
}

.auth-recaptcha-check input:checked+.auth-recaptcha-box:after {
  border: solid #fff;
  border-width: 0 2px 2px 0;
  content: "";
  height: 11px;
  left: 7px;
  position: absolute;
  top: 3px;
  transform: rotate(45deg);
  width: 6px
}

.auth-recaptcha-brand {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.2
}

.auth-recaptcha-logo {
  color: #555;
  font-size: .72rem;
  font-weight: 700
}

.auth-recaptcha-terms {
  color: #7a7a7a;
  font-size: .62rem
}

.auth-captcha-error {
  color: #dc2626;
  font-size: .82rem;
  margin: 4px 0 0;
  min-height: 16px
}

.auth-submit-btn {
  background: var(--primary-color);
  border: 2px solid var(--primary-color);
  border-radius: var(--radius-sm);
  color: #fff;
  cursor: pointer;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .08em;
  margin-top: 6px;
  padding: 13px 18px;
  text-transform: uppercase;
  transition: all .25s ease;
  width: 100%
}

.auth-submit-btn:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  box-shadow: 0 10px 22px rgba(var(--secondary-rgb), .24);
  transform: translateY(-1px)
}

.contact-modal {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 32px 64px rgba(0, 0, 0, .2), 0 0 0 1px rgba(0, 0, 0, .04);
  display: flex;
  flex-direction: column;
  max-height: min(88vh, 820px);
  max-width: 640px;
  min-height: 0;
  overflow: hidden;
  position: relative;
  touch-action: pan-y;
  transform: translateY(24px) scale(.97);
  transition: transform .4s cubic-bezier(.16, 1, .3, 1);
  width: 100%
}

.contact-modal-header {
  flex-shrink: 0;
  padding: 40px 36px 0
}

.contact-modal-form {
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  flex: 1;
  overscroll-behavior: contain;
  padding: 0 36px 36px;
  touch-action: pan-y
}

.contact-media-contact {
  flex-shrink: 0;
  padding: 0 36px 36px
}

.contact-modal-overlay.active .contact-modal {
  transform: translateY(0) scale(1)
}

.contact-modal-close {
  align-items: center;
  background: var(--surface-color);
  border: none;
  border-radius: 50%;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  height: 36px;
  justify-content: center;
  padding: 0;
  position: absolute;
  right: 16px;
  top: 16px;
  transition: var(--transition);
  width: 36px
}

.contact-modal-close:hover {
  background: #e2e8f0;
  color: var(--primary-color)
}

.contact-modal-header {
  margin-bottom: 28px;
  text-align: center
}

.contact-modal-icon {
  align-items: center;
  background: linear-gradient(135deg, rgba(var(--secondary-rgb), .08), rgba(var(--accent-rgb), .08));
  border-radius: 16px;
  color: var(--secondary-color);
  display: flex;
  height: 56px;
  justify-content: center;
  margin: 0 auto 16px;
  width: 56px
}

.contact-modal-title {
  color: var(--primary-color);
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 8px
}

.contact-modal-subtitle {
  color: var(--text-muted);
  font-size: .9rem;
  line-height: 1.5;
  margin: 0
}

.contact-modal-form {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.contact-form-row {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr
}

.contact-form-agreement {
  align-items: center;
  display: flex
}

.contact-policy-link {
  color: var(--secondary-color);
  font-weight: 600;
  text-decoration: underline
}

.contact-form-captcha {
  margin: 4px 0
}

.cf-turnstile-demo {
  align-items: center;
  background: #fafafa;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .06);
  display: inline-flex;
  gap: 16px;
  justify-content: space-between;
  padding: 10px 14px;
  width: 300px
}

.cf-turnstile-demo-left {
  align-items: center;
  color: #444;
  display: flex;
  font-size: .88rem;
  gap: 10px
}

.cf-turnstile-demo-checkbox {
  background: #fff;
  border: 2px solid #bbb;
  border-radius: 3px;
  flex-shrink: 0;
  height: 22px;
  width: 22px
}

.cf-turnstile-demo-right {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  gap: 6px
}

.cf-turnstile-demo-brand {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
  gap: 1px
}

.cf-turnstile-demo-brand span:first-child {
  color: #f38020;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .01em
}

.cf-turnstile-demo-brand span:last-child {
  color: #999;
  font-size: .58rem
}

.svc-select {
  position: relative
}

.svc-select-trigger {
  align-items: center;
  background: #fff;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-subtle);
  cursor: pointer;
  display: flex;
  font-family: var(--font-main);
  font-size: .95rem;
  gap: 8px;
  justify-content: space-between;
  outline: none;
  padding: 12px 14px;
  text-align: left;
  transition: border-color .2s ease, box-shadow .2s ease;
  width: 100%
}

.svc-select-trigger:hover,
.svc-select-trigger[aria-expanded=true] {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(var(--secondary-rgb), .1)
}

.svc-select-text {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap
}

.svc-select-text.has-value {
  color: var(--text-dark)
}

.svc-select-arrow {
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform .2s ease
}

.svc-select-trigger[aria-expanded=true] .svc-select-arrow {
  transform: rotate(180deg)
}

.svc-select-dropdown {
  background: #fff;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
  display: none;
  left: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: calc(100% + 4px);
  z-index: 200
}

.svc-select-dropdown.open {
  display: block
}

.svc-option {
  align-items: center;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  font-size: .92rem;
  gap: 10px;
  padding: 11px 14px;
  transition: background .15s ease;
  user-select: none
}

.svc-option:hover {
  background: var(--bg-light, #f8f9fa)
}

.svc-option input[type=checkbox] {
  height: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  width: 0
}

.svc-option-check {
  align-items: center;
  border: 1.5px solid var(--border-color);
  border-radius: 4px;
  color: transparent;
  display: flex;
  flex-shrink: 0;
  height: 18px;
  justify-content: center;
  transition: background .15s ease, border-color .15s ease;
  width: 18px
}

.svc-option input[type=checkbox]:checked~.svc-option-check {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  color: #fff
}

.svc-option+.svc-option {
  border-top: 1px solid var(--border-color)
}

.contact-modal-submit {
  align-items: center;
  background: var(--primary-color);
  border: 2px solid var(--primary-color);
  border-radius: var(--radius-sm);
  color: #fff;
  cursor: pointer;
  display: flex;
  font-family: var(--font-main);
  font-size: .9rem;
  font-weight: 700;
  gap: 10px;
  justify-content: center;
  letter-spacing: .12em;
  padding: 14px 24px;
  text-transform: uppercase;
  transition: all .3s ease;
  width: 100%
}

.contact-modal-submit:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  box-shadow: 0 8px 24px rgba(var(--secondary-rgb), .25);
  transform: translateY(-1px)
}

.contact-modal-submit:active {
  transform: translateY(0)
}

.contact-modal-submit:disabled {
  cursor: not-allowed;
  opacity: .7;
  transform: none
}

.contact-modal-submit.success {
  background: var(--success-color);
  border-color: var(--grade-aaa)
}

.contact-modal-hotline {
  color: var(--text-muted);
  font-size: .88rem;
  font-style: italic;
  margin: 0;
  text-align: center
}

.contact-modal-hotline a {
  color: var(--secondary-color);
  font-style: normal;
  font-weight: 700
}

.contact-modal::-webkit-scrollbar {
  width: 6px
}

.contact-modal::-webkit-scrollbar-track {
  background: transparent
}

.contact-modal::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 3px
}

.contact-media-note {
  color: var(--text-muted);
  font-size: .9rem;
  line-height: 1.6;
  margin: 0 0 16px;
  text-align: center
}

.contact-media-contact {
  border-top: 1px dashed var(--border-color);
  color: var(--text-muted);
  font-size: .85rem;
  margin-top: 12px;
  padding-top: 12px
}

.contact-media-contact p {
  margin: 0
}

.contact-media-contact a {
  color: var(--secondary-color);
  font-weight: 600
}

.contact-media-link {
  align-items: center;
  display: inline-flex;
  gap: 4px
}

.contact-media-link svg {
  flex-shrink: 0;
  opacity: .8
}

.contact-media-sep {
  margin: 0 6px;
  opacity: .4
}

@media (max-width:640px) {

  .auth-modal-overlay,
  .contact-modal-overlay {
    padding: 18px 14px
  }

  .auth-modal {
    border-radius: var(--radius-md);
    width: min(100%, 440px)
  }

  .auth-modal-title {
    font-size: 1.35rem
  }

  .auth-modal-subtitle {
    font-size: .88rem
  }

  .auth-tab-btn {
    font-size: .86rem
  }

  .auth-recaptcha-demo {
    padding: 9px 10px
  }

  .auth-recaptcha-check {
    font-size: .82rem;
    gap: 8px
  }

  .auth-recaptcha-brand {
    display: none
  }

  .auth-form-row {
    gap: 12px;
    grid-template-columns: 1fr
  }

  .contact-modal {
    border-radius: var(--radius-md);
    max-height: calc(100dvh - 56px);
    width: min(100%, 560px)
  }

  .contact-modal .contact-modal-header {
    padding: 22px 14px 0
  }

  .contact-modal .contact-media-contact,
  .contact-modal .contact-modal-form {
    padding: 0 14px 18px
  }

  .contact-form-row {
    gap: 12px;
    grid-template-columns: 1fr
  }

  .contact-modal-title {
    font-size: 1.3rem
  }

  .recaptcha-placeholder {
    max-width: 100%;
    width: 100%
  }
}

.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s cubic-bezier(.16, 1, .3, 1), transform .8s cubic-bezier(.16, 1, .3, 1)
}

.reveal-up.active {
  opacity: 1;
  transform: translateY(0)
}

@media (max-width:992px) {
  .hero-content {
    flex-direction: column;
    text-align: center
  }

  .hero-left {
    flex: none
  }

  .hero-left,
  .hero-tagline {
    max-width: 100%
  }

  .hero-cta-group {
    justify-content: center
  }

  .hero-visual {
    height: 325px;
    width: 325px
  }

  .hv-value--top {
    left: 147px;
    top: 43px
  }

  .hv-value--right {
    left: 251px;
    top: 147px
  }

  .hv-value--bottom {
    left: 147px;
    top: 251px
  }

  .hv-value--left {
    left: 43px;
    top: 147px
  }

  .hero-title {
    font-size: 3rem
  }

  .research-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .research-card-v2.featured {
    grid-column: 1/-1;
    grid-row: auto
  }

  .research-card-v2.featured .research-card-image {
    height: 200px
  }

  .stats-grid-v2 {
    gap: 20px;
    grid-template-columns: repeat(3, 1fr)
  }

  .contact-cards,
  .solutions-cards {
    grid-template-columns: 1fr
  }

  .footer-links-row {
    gap: 24px
  }

  .footer-info-row {
    gap: 40px
  }
}

@media (max-width:768px) {
  .container {
    padding: 0 20px
  }

  .hero-title {
    font-size: 2.4rem
  }

  .hero-tagline {
    font-size: .95rem;
    margin-bottom: 32px
  }

  .hero-content {
    justify-content: center;
    margin-top: 0;
    padding-bottom: 80px;
    padding-top: 80px
  }

  .hero-cta-group {
    flex-direction: column;
    gap: 12px
  }

  .hero-right {
    display: none
  }

  .slider-card {
    min-width: 200px;
    padding: 12px 20px
  }

  .slider-entity {
    font-size: 1rem
  }

  .slider-grade {
    font-size: 1.2rem
  }

  .research-section {
    padding: 48px 0
  }

  .section-title {
    font-size: 2rem
  }

  .research-grid {
    grid-template-columns: 1fr
  }

  .research-card-v2.featured .research-card-image {
    height: 180px
  }

  .stats-section {
    padding: 56px 0
  }

  .stats-heading {
    font-size: 1.8rem;
    margin-bottom: 36px
  }

  .stats-grid-v2 {
    gap: 16px;
    grid-template-columns: 1fr
  }

  .stat-card {
    padding: 28px 20px
  }

  .stat-number-v2 {
    font-size: 2.8rem
  }

  .solutions-section {
    padding: 56px 0
  }

  .solutions-intro {
    font-size: 1rem
  }

  .contact-section {
    padding: 56px 0
  }

  .contact-card {
    padding: 28px 24px
  }

  .footer-top {
    padding: 0 0 24px
  }

  .footer-links-row {
    gap: 24px;
    grid-template-columns: repeat(2, 1fr);
    padding: 24px 0
  }

  .footer-info-row {
    flex-direction: column;
    gap: 24px
  }

  .footer-email-input {
    width: 100%
  }

  .footer-bottom {
    font-size: .75rem
  }
}

@media (max-width:480px) {
  .hero-title {
    font-size: 2rem
  }

  .hero-tagline {
    font-size: .9rem;
    margin-bottom: 28px;
    max-width: 100%
  }

  .hero-content {
    padding-top: 80px
  }

  .section-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px
  }

  .research-card-title {
    font-size: 1rem
  }

  .stat-number-v2 {
    font-size: 2.2rem
  }

  .subscribe-form {
    flex-direction: column
  }

  .footer-links-row {
    gap: 20px;
    grid-template-columns: 1fr;
    padding: 20px 0
  }

  .footer-logo {
    height: 36px
  }

  .footer-brand {
    gap: 16px
  }

  .footer-wave {
    height: 50px
  }
}

@media (max-width:360px) {
  .hero-title {
    font-size: 1.75rem
  }

  .navbar-logo {
    height: 30px
  }
}

@media (max-width:768px) {
  .nav-mobile-toggle {
    padding: 8px
  }

  .hero-section {
    min-height: 100vh;
    min-height: 100dvh
  }

  .hero-content {
    gap: 24px;
    justify-content: center;
    margin-top: 0;
    padding-bottom: 80px;
    padding-top: 72px
  }

  .hero-title {
    font-size: 2rem;
    margin-bottom: 16px
  }

  .hero-tagline {
    font-size: .9rem;
    line-height: 1.6;
    margin-bottom: 24px
  }

  .hero-cta-group {
    align-items: stretch;
    flex-direction: column;
    gap: 8px
  }

  .hero-cta.btn-outline,
  .hero-cta.btn-primary {
    border-radius: 8px;
    font-size: .9rem;
    padding: 12px 24px;
    text-align: center;
    width: 100%
  }

  .slider-card {
    border-radius: 0;
    min-width: 240px;
    padding: 12px 16px
  }

  .slider-entity {
    font-size: .9rem;
    min-height: auto
  }

  .slider-grade {
    font-size: 1.1rem
  }

  .research-story {
    padding: 40px 0
  }

  .research-grid-layout {
    gap: 16px;
    grid-template-columns: 1fr
  }

  .research-card-v2 {
    border-radius: 16px
  }

  .research-card-v2.featured-large .research-card-image {
    border-radius: 16px 16px 0 0;
    height: 180px
  }

  .research-card-v2.featured-large .research-card-body {
    padding: 16px
  }

  .research-card-v2.featured-large .research-card-title {
    font-size: 1.15rem
  }

  .research-card-v2.compact .research-card-body {
    padding: 16px
  }

  .research-card-v2.compact .research-card-title {
    font-size: .95rem
  }

  .section-header {
    margin-bottom: 24px;
    padding-bottom: 12px
  }

  .section-title {
    font-size: 1.75rem
  }

  .stats-section-dark {
    padding: 24px 0
  }

  .stats-inner-box {
    border-radius: 16px;
    padding: 36px 24px
  }

  .stats-heading-dark {
    font-size: 1.75rem;
    margin-bottom: 8px
  }

  .stats-subheading-dark {
    font-size: .9rem;
    line-height: 1.6
  }

  .stats-section-header {
    margin-bottom: 32px
  }

  .stats-grid-cinematic {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 24px
  }

  .stat-cinematic-card {
    border-left: none;
    border-radius: 0;
    border-top: 1px solid hsla(0, 0%, 100%, .08);
    display: block;
    padding: 24px 16px;
    width: 100%
  }

  .stat-cinematic-card:first-child {
    border-top: none
  }

  .stat-number-cinematic {
    font-size: 2.5rem
  }

  .stat-unit-cinematic {
    font-size: 1rem
  }

  .stat-desc-cinematic {
    font-size: .88rem;
    max-width: 100%
  }

  .solutions-scroll-section {
    padding: 40px 0
  }

  .solutions-split-layout {
    flex-direction: column;
    gap: 24px
  }

  .solutions-sticky-sidebar {
    flex: none;
    position: static;
    width: 100%
  }

  .solutions-title {
    font-size: 1.75rem
  }

  .solutions-intro {
    font-size: .95rem
  }

  .solutions-scroll-content {
    gap: 24px
  }

  .solutions-group-glass {
    gap: 16px
  }

  .solutions-group-featured {
    border-radius: 16px;
    padding: 24px 16px
  }

  .solutions-group-label-glass {
    font-size: .8rem;
    padding-bottom: 8px
  }

  .solutions-cards-vertical {
    gap: 16px
  }

  .solution-card-glass {
    align-items: flex-start;
    border-radius: 16px;
    flex-direction: row;
    gap: 12px;
    padding: 16px
  }

  .solution-card-icon {
    border-radius: 8px;
    flex-shrink: 0;
    height: 40px;
    width: 40px
  }

  .solution-card-title {
    font-size: 1rem
  }

  .solution-card-desc {
    font-size: .88rem;
    line-height: 1.5
  }

  .solution-card-arrow-glass {
    display: none
  }

  .contact-elevated-section {
    padding: 40px 0 56px
  }

  .contact-banner-wrapper {
    border-radius: 16px;
    margin-bottom: 16px;
    padding: 32px 16px
  }

  .contact-banner-heading {
    font-size: 1.5rem
  }

  .contact-banner-text {
    font-size: .9rem;
    margin-bottom: 16px
  }

  .contact-banner-wrapper .btn {
    border-radius: 8px;
    font-size: .9rem;
    padding: 12px 24px;
    width: 100%
  }

  .contact-secondary-grid {
    gap: 16px;
    grid-template-columns: 1fr
  }

  .contact-glass-panel {
    border-radius: 16px;
    padding: 16px
  }

  .cgp-header {
    gap: 12px;
    margin-bottom: 8px
  }

  .cgp-icon {
    border-radius: 8px;
    height: 40px;
    width: 40px
  }

  .cgp-header h3 {
    font-size: 1.1rem
  }

  .cgp-text {
    font-size: .88rem;
    margin-bottom: 16px
  }

  .cgp-form {
    gap: 8px
  }

  .cgp-form input {
    border-radius: 8px;
    font-size: .9rem;
    padding: 10px 16px
  }

  .cgp-form button {
    border-radius: 8px;
    padding: 0 16px
  }

  footer {
    padding: 72px 0 20px
  }

  .footer-top-r1 {
    gap: 12px;
    grid-template-columns: 1fr;
    margin-bottom: 12px
  }

  .footer-dashed-line {
    grid-column: auto
  }

  .footer-top-r2 {
    gap: 12px;
    grid-template-columns: 1fr;
    margin-bottom: 18px;
    padding-bottom: 18px
  }

  .footer-col-info {
    grid-column: auto
  }

  .footer-logo {
    height: 40px
  }

  .footer-address-text {
    font-size: .88rem
  }

  .footer-contact-inline {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px
  }

  .f-divider {
    display: none
  }

  .footer-inline-item {
    font-size: .88rem
  }

  .footer-links-row {
    gap: 18px 14px;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 18px
  }

  .footer-heading {
    font-size: .88rem;
    margin-bottom: 8px
  }

  .footer-links a {
    font-size: .82rem
  }

  .footer-links li {
    margin-bottom: 6px
  }

  .footer-bottom {
    font-size: .75rem;
    padding-top: 12px
  }

  .auth-modal-overlay,
  .contact-modal-overlay {
    padding: 16px
  }

  .auth-modal-overlay,
  .contact-modal-overlay {
    align-items: flex-start;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch
  }

  .contact-modal-overlay {
    touch-action: pan-y
  }

  .auth-modal {
    margin: auto;
    max-height: none;
    width: min(100%, 460px)
  }

  .auth-modal>.auth-modal-header,
  .auth-modal>.auth-panels,
  .auth-modal>.auth-tabs {
    padding-left: 16px;
    padding-right: 16px
  }

  .auth-modal>.auth-modal-header {
    padding-top: 22px
  }

  .auth-modal>.auth-panels {
    overflow: visible;
    padding-bottom: 20px
  }

  .auth-modal-header {
    margin-bottom: 18px;
    padding-right: 42px
  }

  .auth-modal-close {
    right: 10px;
    top: 10px
  }

  .contact-modal {
    border-radius: 16px;
    margin: auto;
    max-height: none;
    overflow: visible;
    width: min(100%, 560px)
  }

  .contact-modal .contact-modal-header {
    padding: 24px 16px 0
  }

  .contact-modal .contact-media-contact,
  .contact-modal .contact-modal-form {
    padding: 0 16px 20px
  }

  .contact-modal .contact-modal-form {
    overflow: visible
  }
}

@media (max-width:480px) {
  .container {
    padding: 0 16px
  }

  .hero-title {
    font-size: 1.75rem
  }

  .hero-content {
    padding-bottom: 72px;
    padding-top: 64px
  }

  .hero-tagline {
    line-height: 1.65;
    margin-left: auto;
    margin-right: auto;
    max-width: 32ch;
    text-wrap: balance
  }

  .section-title,
  .stats-heading-dark {
    font-size: 1.5rem
  }

  .stat-cinematic-card {
    padding: 16px
  }

  .stat-number-cinematic {
    font-size: 2rem
  }

  .solutions-group-featured {
    border-radius: 16px;
    padding: 16px
  }

  .solution-card-glass {
    padding: 16px
  }

  .research-card-v2.featured-large .research-card-image {
    height: 160px
  }

  .footer-links-row {
    gap: 16px;
    grid-template-columns: 1fr
  }

  .footer-logo {
    height: 42px
  }

  .footer-wave {
    height: 84px;
    opacity: .5
  }
}

@media (max-width:360px) {
  .container {
    padding: 0 12px
  }

  .hero-title {
    font-size: 1.5rem
  }

  .section-title {
    font-size: 1.35rem
  }

  .contact-banner-heading {
    font-size: 1.25rem
  }
}

@media (max-width:1024px) and (max-height:600px) and (orientation:landscape) {
  .container {
    padding: 0 16px
  }

  .navbar-brand {
    padding: 10px 0
  }

  .navbar.scrolled .navbar-brand {
    padding: 8px 0
  }

  .navbar-logo {
    height: 34px
  }

  .navbar.scrolled .navbar-logo {
    height: 30px
  }

  .nav-actions {
    gap: 2px
  }

  .nav-icon-btn {
    height: 34px;
    width: 34px
  }

  .nav-icon-btn svg {
    height: 16px;
    width: 16px
  }

  .nav-mobile-toggle {
    padding: 6px
  }

  .hero-section {
    min-height: auto
  }

  .hero-content {
    align-items: flex-start;
    gap: 24px;
    justify-content: flex-start;
    margin-top: 0;
    padding-bottom: 48px;
    padding-top: 108px;
    text-align: left
  }

  .hero-left {
    flex: none;
    max-width: 100%
  }

  .hero-right {
    display: none
  }

  .hero-title {
    font-size: clamp(2rem, 5vw, 2.8rem);
    line-height: 1.1;
    margin-bottom: 14px
  }

  .hero-tagline br {
    display: none
  }

  .hero-tagline {
    font-size: .98rem;
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 100%
  }

  .hero-cta-group {
    align-items: stretch;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-start
  }

  .hero-cta.btn-outline,
  .hero-cta.btn-primary {
    font-size: .88rem;
    min-width: 210px;
    padding: 12px 18px;
    width: auto
  }

  .rating-slider {
    border-top-width: 1px;
    bottom: auto;
    left: auto;
    margin-top: 8px;
    position: static
  }

  .slider-track {
    animation-duration: 95s
  }

  .slider-card {
    gap: 1px;
    min-width: 190px;
    padding: 7px 12px
  }

  .slider-card:after {
    height: 52%
  }

  .slider-tag {
    font-size: .48rem;
    letter-spacing: .045em;
    margin-bottom: 2px
  }

  .slider-meta {
    gap: 4px
  }

  .slider-action,
  .slider-date {
    font-size: .64rem
  }

  .slider-meta-divider {
    font-size: .6rem
  }

  .slider-entity {
    font-size: .95rem;
    line-height: 1.15;
    margin: 1px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
  }

  .slider-bond {
    font-size: .62rem
  }

  .slider-bottom {
    gap: 8px;
    padding-top: 3px
  }

  .slider-outlook {
    font-size: .68rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
  }

  .slider-grade {
    font-size: .82rem
  }

  .slider-card .slider-grade {
    border-radius: 3px;
    padding: 1px 6px
  }

  .stats-section-dark {
    padding: 20px 0
  }

  .stats-inner-box {
    border-radius: 14px;
    padding: 24px 16px
  }

  .stats-section-header {
    margin-bottom: 18px
  }

  .stats-heading-dark {
    font-size: 1.35rem;
    margin-bottom: 6px
  }

  .stats-subheading-dark {
    font-size: .84rem;
    line-height: 1.45;
    max-width: 100%
  }

  .stats-grid-cinematic {
    gap: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto
  }

  .stat-cinematic-card,
  .stats-grid-cinematic {
    border-top: 1px solid rgba(var(--secondary-rgb), .12)
  }

  .stat-cinematic-card {
    align-items: center;
    border-left: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
    grid-row: auto;
    justify-content: flex-start;
    padding: 14px 10px
  }

  .stat-cinematic-card:first-child,
  .stat-cinematic-card:nth-child(2) {
    border-top: none
  }

  .stat-cinematic-card:nth-child(odd) {
    border-right: 1px solid rgba(var(--secondary-rgb), .12)
  }

  .stat-cinematic-card:last-child {
    border-right: none;
    grid-column: 1/-1
  }

  .stat-number-cinematic {
    font-size: clamp(1.9rem, 4.3vw, 2.4rem);
    margin-bottom: 4px
  }

  .stat-prelabel-cinematic {
    font-size: .76rem;
    margin-bottom: 0
  }

  .stat-unit-cinematic {
    font-size: .9rem
  }

  .stat-desc-cinematic {
    font-size: .82rem;
    line-height: 1.4;
    margin: 0;
    max-width: 100%
  }

  .stat-desc-cinematic br {
    display: none
  }
}

.scroll-to-top {
  align-items: center;
  background: var(--primary-color);
  border: 1px solid hsla(0, 0%, 100%, .1);
  border-radius: 50%;
  bottom: 40px;
  box-shadow: 0 4px 12px rgba(var(--primary-rgb), .15);
  color: #fff;
  cursor: pointer;
  display: flex;
  height: 48px;
  justify-content: center;
  opacity: 0;
  padding: 0;
  position: fixed;
  right: 40px;
  transform: translateY(20px);
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
  visibility: hidden;
  width: 48px;
  z-index: 999
}

.scroll-to-top:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  box-shadow: 0 8px 24px rgba(var(--secondary-rgb), .3);
  color: #fff;
  transform: translateY(-5px)
}

.scroll-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  visibility: visible
}

.scroll-to-top svg {
  display: block;
  fill: none !important;
  height: 24px !important;
  stroke: #fff !important;
  width: 24px !important
}

.mobile-toc-toggle {
  align-items: center;
  background: var(--secondary-color);
  border: 1px solid hsla(0, 0%, 100%, .1);
  border-radius: 50%;
  bottom: 100px;
  box-shadow: 0 8px 20px rgba(var(--secondary-rgb), .25);
  color: #fff;
  cursor: pointer;
  display: none;
  height: 48px;
  justify-content: center;
  opacity: 0;
  padding: 0;
  position: fixed;
  right: 40px;
  transform: translateY(20px);
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
  visibility: hidden;
  width: 48px;
  z-index: 999
}

.mobile-toc-toggle:hover {
  background: #0073e6;
  border-color: #0073e6;
  transform: translateY(-5px)
}

.mobile-toc-toggle.visible {
  opacity: 1;
  transform: translateY(0);
  visibility: visible
}

.mobile-toc-toggle svg {
  display: block;
  height: 22px;
  stroke: #fff;
  width: 22px
}

.mobile-toc-overlay {
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  background: rgba(var(--primary-rgb), .46);
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  transition: opacity .25s ease, visibility .25s ease;
  visibility: hidden;
  z-index: 1150
}

.mobile-toc-overlay.active {
  opacity: 1;
  pointer-events: auto;
  visibility: visible
}

.mobile-toc-panel {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  bottom: 136px;
  box-shadow: 0 22px 44px rgba(var(--primary-rgb), .26);
  max-height: min(60vh, 460px);
  overflow-y: auto;
  position: absolute;
  right: 16px;
  transform: translateY(8px) scale(.98);
  transition: transform .25s ease;
  width: min(360px, calc(100vw - 32px))
}

.mobile-toc-overlay.active .mobile-toc-panel {
  transform: translateY(0) scale(1)
}

.mobile-toc-header {
  align-items: center;
  border-bottom: 1px solid var(--border-color);
  color: var(--primary-color);
  display: flex;
  font-size: .88rem;
  font-weight: 700;
  gap: 12px;
  justify-content: space-between;
  padding: 12px 14px
}

.mobile-toc-close {
  align-items: center;
  background: var(--surface-color);
  border: none;
  border-radius: 50%;
  color: var(--text-muted);
  cursor: pointer;
  display: inline-flex;
  height: 30px;
  justify-content: center;
  width: 30px
}

.mobile-toc-close svg {
  height: 16px;
  stroke: currentColor;
  width: 16px
}

.mobile-toc-list {
  list-style: none;
  margin: 0;
  padding: 6px 14px 14px
}

.mobile-toc-list li+li {
  border-top: 1px solid rgba(var(--primary-rgb), .08)
}

.mobile-toc-list a {
  color: #334155;
  display: block;
  font-size: .84rem;
  line-height: 1.45;
  padding: 11px 2px;
  text-decoration: none;
  transition: color .2s ease
}

.mobile-toc-list a.active,
.mobile-toc-list a:hover {
  color: var(--secondary-color)
}

@media (max-width:768px) {
  .scroll-to-top {
    bottom: 24px;
    height: 44px;
    right: 24px;
    width: 44px
  }

  .mobile-toc-toggle {
    bottom: 80px;
    display: flex;
    height: 44px;
    right: 24px;
    width: 44px
  }

  .mobile-toc-panel {
    bottom: 136px;
    max-height: min(64vh, 480px);
    right: 12px;
    width: min(360px, calc(100vw - 24px))
  }
}

@media (max-width:1024px) and (max-height:600px) and (orientation:landscape) {
  .scroll-to-top {
    bottom: 12px;
    height: 40px;
    right: 12px;
    width: 40px
  }

  .scroll-to-top svg {
    height: 20px !important;
    width: 20px !important
  }

  .mobile-toc-toggle {
    bottom: 58px;
    height: 40px;
    right: 12px;
    width: 40px
  }

  .mobile-toc-panel {
    bottom: 108px;
    right: 10px
  }
}

.cookie-consent-overlay {
  align-items: center;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  background: rgba(var(--primary-rgb), .5);
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  opacity: 0;
  overflow-y: auto;
  padding: 16px;
  position: fixed;
  right: 0;
  top: 0;
  transition: opacity .35s ease, visibility .35s ease;
  visibility: hidden;
  z-index: 10001;
  -webkit-overflow-scrolling: touch
}

.cookie-consent-overlay.active {
  opacity: 1;
  visibility: visible
}

.cookie-consent-popup {
  background: #fff;
  border-radius: 16px;
  max-height: 90vh;
  max-width: 440px;
  overflow-y: auto;
  width: 100%;
  -webkit-overflow-scrolling: touch;
  box-shadow: 0 32px 64px rgba(0, 0, 0, .2), 0 0 0 1px rgba(0, 0, 0, .04);
  overscroll-behavior: contain;
  padding: 32px;
  position: relative;
  touch-action: pan-y;
  transform: translateY(24px) scale(.97);
  transition: transform .4s cubic-bezier(.16, 1, .3, 1)
}

.cookie-consent-overlay.active .cookie-consent-popup {
  transform: translateY(0) scale(1)
}

.cookie-popup-header {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px
}

.cookie-setting-badge {
  background: var(--primary-color);
  border-radius: 4px;
  color: #fff;
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .5px;
  padding: 4px 12px;
  text-transform: uppercase
}

.cookie-close-btn {
  align-items: center;
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  height: 36px;
  justify-content: center;
  padding: 0;
  transition: all .2s ease;
  width: 36px
}

.cookie-close-btn:hover {
  background: var(--border-color);
  color: var(--primary-color)
}

.cookie-popup-title {
  color: var(--primary-color);
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px
}

.cookie-popup-desc {
  color: var(--text-muted);
  font-size: .88rem;
  line-height: 1.7;
  margin-bottom: 12px
}

.cookie-notice-link {
  color: var(--secondary-color);
  display: inline-block;
  font-size: .88rem;
  font-weight: 600;
  margin-bottom: 24px;
  text-decoration: none
}

.cookie-notice-link:hover {
  text-decoration: underline
}

.cookie-manage-title {
  color: var(--primary-color);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 16px
}

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 24px
}

.cookie-option {
  align-items: center;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  padding: 16px 0
}

.cookie-option:last-child {
  border-bottom: 1px solid var(--border-color)
}

.cookie-option-label {
  color: var(--primary-color);
  font-size: .95rem;
  font-weight: 600
}

.cookie-toggle {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: none;
  cursor: pointer;
  display: inline-block;
  flex-shrink: 0;
  height: 26px;
  padding: 0;
  position: relative;
  width: 48px
}

.cookie-toggle-slider {
  background: #cbd5e1;
  border-radius: 26px;
  bottom: 0;
  cursor: pointer;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  touch-action: manipulation;
  transition: background .3s ease
}

.cookie-toggle-slider:before {
  background: #fff;
  border-radius: 50%;
  bottom: 3px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .15);
  content: "";
  height: 20px;
  left: 3px;
  position: absolute;
  transition: transform .3s ease;
  width: 20px
}

.cookie-toggle.checked .cookie-toggle-slider {
  background: var(--primary-color)
}

.cookie-toggle.checked .cookie-toggle-slider:before {
  transform: translateX(22px)
}

.cookie-toggle.always-on .cookie-toggle-slider {
  background: var(--primary-color);
  cursor: not-allowed;
  opacity: .7
}

.cookie-toggle:disabled {
  cursor: not-allowed
}

.cookie-toggle.always-on .cookie-toggle-slider:before {
  transform: translateX(22px)
}

.cookie-confirm-btn {
  background: #fff;
  border: 2px solid var(--primary-color);
  border-radius: 8px;
  color: var(--primary-color);
  cursor: pointer;
  display: block;
  font-family: var(--font-main);
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin: 0 auto;
  max-width: 280px;
  padding: 14px 32px;
  text-align: center;
  transition: all .2s ease;
  width: 100%
}

.cookie-confirm-btn:hover {
  background: var(--primary-color);
  color: #fff
}

.cookie-consent-popup::-webkit-scrollbar {
  width: 4px
}

.cookie-consent-popup::-webkit-scrollbar-track {
  background: transparent
}

.cookie-consent-popup::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 2px
}

@media (max-width:480px) {
  .cookie-consent-overlay {
    align-items: center;
    padding: 16px
  }

  .cookie-consent-popup {
    border-radius: 16px;
    max-height: 80vh;
    max-height: 80dvh;
    overflow-y: auto;
    padding: 20px 16px;
    -webkit-overflow-scrolling: touch
  }

  .cookie-popup-header {
    margin-bottom: 12px
  }

  .cookie-popup-title {
    font-size: 1.15rem;
    margin-bottom: 8px
  }

  .cookie-popup-desc {
    line-height: 1.5
  }

  .cookie-notice-link,
  .cookie-popup-desc {
    font-size: .8rem;
    margin-bottom: 8px
  }

  .cookie-manage-title {
    font-size: .95rem;
    margin-bottom: 8px
  }

  .cookie-option {
    padding: 10px 0
  }

  .cookie-option-label {
    font-size: .85rem
  }

  .cookie-confirm-btn {
    margin-top: 12px;
    max-width: 100%;
    padding: 12px 24px
  }
}

.cp-rh-wrap {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  margin-top: 32px;
  overflow: hidden
}

.cp-rh-header {
  align-items: flex-start;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  padding: 14px 20px 12px
}

.cp-rh-title {
  color: var(--primary-color);
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 2px
}

.cp-rh-source {
  color: var(--text-muted);
  font-size: .75rem
}

.cp-rh-source a {
  color: var(--secondary-color);
  text-decoration: none
}

.cp-rh-export-btn {
  align-items: center;
  background: none;
  border: none;
  border-radius: 6px;
  color: var(--secondary-color);
  cursor: pointer;
  display: inline-flex;
  font-size: .82rem;
  font-weight: 500;
  gap: 5px;
  padding: 4px 8px;
  white-space: nowrap
}

.cp-rh-export-btn:hover {
  background: rgba(0, 123, 255, .07)
}

.cp-rh-controls {
  background: var(--surface-color);
  border-bottom: 1px solid var(--border-color);
  gap: 12px;
  justify-content: space-between;
  padding: 10px 16px
}

.cp-rh-controls,
.cp-rh-controls-left {
  align-items: center;
  display: flex;
  flex-wrap: wrap
}

.cp-rh-controls-left {
  gap: 10px
}

.cp-rh-select-wrap {
  align-items: center;
  display: inline-flex;
  position: relative
}

.cp-rh-select {
  appearance: none;
  -webkit-appearance: none;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  color: var(--primary-color);
  cursor: pointer;
  font-family: var(--font-main);
  font-size: .82rem;
  font-weight: 500;
  padding: 5px 30px 5px 10px
}

.cp-rh-select-caret {
  color: var(--text-muted);
  pointer-events: none;
  position: absolute;
  right: 8px
}

.cp-rh-periods {
  display: flex;
  gap: 2px
}

.cp-rh-period-btn {
  background: none;
  border: 1px solid transparent;
  border-radius: 4px;
  color: var(--text-muted);
  cursor: pointer;
  font-family: var(--font-main);
  font-size: .78rem;
  font-weight: 500;
  padding: 4px 10px;
  transition: all .15s ease
}

.cp-rh-period-btn:hover {
  background: rgba(0, 123, 255, .07);
  color: var(--secondary-color)
}

.cp-rh-period-btn.active {
  background: var(--primary-color);
  color: #fff
}

.cp-rh-period-btn.disabled,
.cp-rh-period-btn:disabled {
  cursor: not-allowed;
  opacity: .35;
  pointer-events: none
}

.cp-rh-controls-right {
  align-items: center;
  display: flex;
  gap: 8px
}

.cp-rh-unit-note {
  align-self: center;
  color: var(--text-muted);
  font-size: .73rem;
  font-style: italic;
  white-space: nowrap
}

.cp-rh-view-btns {
  border: 1px solid var(--border-color);
  border-radius: 6px;
  display: flex;
  overflow: hidden
}

.cp-rh-view-btn {
  align-items: center;
  background: #fff;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  justify-content: center;
  padding: 5px 9px;
  transition: all .15s ease
}

.cp-rh-view-btn+.cp-rh-view-btn {
  border-left: 1px solid var(--border-color)
}

.cp-rh-view-btn.active {
  background: var(--primary-color);
  color: #fff
}

.cp-rh-svg-wrap {
  overflow-x: auto;
  overflow-y: hidden;
  padding: 12px 16px 10px
}

.cp-rh-svg {
  display: block;
  height: auto;
  min-width: 560px;
  width: 100%
}

.cp-rh-yaxis {
  font-size: 11px
}

.cp-rh-xaxis,
.cp-rh-yaxis {
  fill: #6b7280;
  font-family: var(--font-main, "Inter", sans-serif)
}

.cp-rh-xaxis {
  font-size: 9px
}

.cp-rh-legend {
  align-items: center;
  border-top: 1px solid var(--border-color);
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  padding: 10px 20px 14px
}

.cp-rh-legend-item {
  align-items: center;
  color: var(--text-muted);
  display: inline-flex;
  font-size: .78rem;
  gap: 6px
}

.cp-rh-legend-line {
  background: #007bff;
  border-radius: 1px;
  display: inline-block;
  height: 2px;
  width: 22px
}

.cp-rh-table-wrap {
  min-height: 320px;
  overflow-x: auto;
  overflow-y: visible
}

.cp-rh-table-wrap .cp-rating-table {
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none
}

.cp-rh-table-wrap .cp-rt-head {
  background: var(--surface-color);
  border-bottom: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .3px;
  padding: 10px 20px;
  text-transform: uppercase
}

.cp-rh-table-wrap .cp-rt-row {
  border-bottom: 1px solid var(--border-color);
  font-size: .875rem;
  padding: 12px 20px
}

.cp-rh-table-wrap .cp-rt-row:last-child {
  border-bottom: none
}

.cp-rh-table-wrap .cp-rt-row:hover {
  background: rgba(0, 123, 255, .03)
}

.rr-keyfactors {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  margin: 32px 0;
  padding: 28px
}

.rd-article .rr-keyfactors-title,
.rr-keyfactors-title {
  color: var(--text-dark);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .3px;
  margin: 0 0 20px
}

.rr-keyfactors-scale {
  margin-bottom: 20px
}

.rr-keyfactors-scale:last-of-type {
  margin-bottom: 0
}

.rr-keyfactors-scale--separated {
  border-top: 1px solid var(--border-color);
  padding-top: 16px
}

.rr-keyfactors-table {
  border-collapse: separate;
  border-spacing: 3px;
  width: 100%
}

.rr-keyfactors-table th {
  color: var(--text-muted);
  font-size: .68rem;
  font-weight: 400;
  line-height: 1.3;
  padding: 0 2px 6px;
  text-align: center
}

.rr-keyfactors-table th:first-child {
  min-width: 180px;
  text-align: left;
  width: 180px
}

.rr-kf-label {
  color: #334155;
  font-size: .82rem;
  min-width: 180px;
  padding-right: 12px;
  vertical-align: middle;
  width: 180px
}

.rr-kf-label--bold {
  color: var(--text-dark);
  font-weight: 600
}

.rr-kf-cell {
  border-radius: 3px;
  color: #1a1a2e;
  font-size: .7rem;
  height: 28px;
  text-align: center;
  vertical-align: middle
}

.rr-kf-cell--risk-1 {
  background: #c0392b
}

.rr-kf-cell--risk-2 {
  background: #e74c3c
}

.rr-kf-cell--risk-3 {
  background: #f1948a
}

.rr-kf-cell--risk-4 {
  background: #f5b7b1
}

.rr-kf-cell--risk-5 {
  background: #fadbd8
}

.rr-kf-cell--risk-6 {
  background: #d5f5e3
}

.rr-kf-cell--risk-7 {
  background: #82e0aa
}

.rr-kf-cell--risk-8 {
  background: #27ae60
}

.rr-kf-cell--support-1 {
  background: #c0392b
}

.rr-kf-cell--support-2 {
  background: #f5b7b1
}

.rr-kf-cell--support-3 {
  background: #d5f5e3
}

.rr-kf-cell--support-4 {
  background: #82e0aa
}

.rr-kf-cell--support-5 {
  background: #27ae60
}

.rr-kf-section-label {
  color: var(--text-dark);
  font-size: .82rem;
  font-weight: 600;
  padding: 2px 0 8px
}

.rr-kf-cell--other-negative {
  background: #f5b7b1
}

.rr-kf-cell--other-stable {
  background: #bfbfbf
}

.rr-kf-cell--other-positive {
  background: #82e0aa
}

.rr-keyfactors-source {
  color: var(--text-muted);
  font-size: .75rem;
  font-style: italic;
  margin-top: 16px
}

@media (max-width:768px) {
  .rr-keyfactors {
    overflow-x: auto;
    padding: 16px;
    -webkit-overflow-scrolling: touch
  }

  .rr-keyfactors-table {
    min-width: 600px
  }

  .rr-keyfactors-table th:first-child,
  .rr-kf-label {
    font-size: .75rem;
    min-width: 130px;
    width: 130px
  }
}

.rr-rating-drivers {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 32px 0
}

.rr-rating-driver {
  background: var(--rr-driver-bg, #fff);
  border: 1px solid var(--rr-driver-border, var(--border-color));
  border-radius: var(--radius-sm);
  padding: 20px
}

.rr-rating-driver--upgrade {
  --rr-driver-bg: #f2fbf7;
  --rr-driver-border: #bfead5;
  --rr-driver-icon-bg: #d8f5e8;
  --rr-driver-icon-color: #059669
}

.rr-rating-driver--downgrade {
  --rr-driver-bg: #fff7f7;
  --rr-driver-border: #facaca;
  --rr-driver-icon-bg: #fee2e2;
  --rr-driver-icon-color: #dc2626
}

.rd-article .rr-rating-driver-heading,
.rr-rating-driver-heading {
  align-items: center;
  border: 0;
  color: var(--text-dark);
  display: flex;
  font-family: var(--font-main);
  font-size: .95rem;
  font-weight: 700;
  gap: 10px;
  line-height: 1.35;
  margin: 0 0 14px;
  padding: 0
}

.rr-rating-driver-icon {
  align-items: center;
  background: var(--rr-driver-icon-bg);
  border-radius: 8px;
  color: var(--rr-driver-icon-color);
  display: inline-flex;
  flex-shrink: 0;
  height: 32px;
  justify-content: center;
  width: 32px
}

.rr-rating-driver-icon svg {
  height: 18px;
  width: 18px
}

.rd-article .rr-rating-driver-text,
.rr-rating-driver-text {
  color: #475569;
  font-size: .92rem;
  line-height: 1.75;
  margin: 0
}

.rr-dynamic-disclosure {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  display: grid;
  gap: 10px;
  margin: 20px 0;
  padding: 16px 18px
}

.rd-article .rr-dynamic-disclosure p,
.rr-dynamic-disclosure p {
  color: #475569;
  font-size: .92rem;
  line-height: 1.65;
  margin: 0
}

.rr-dynamic-disclosure strong {
  color: var(--text-dark);
  font-weight: 600
}

.rr-rating-people {
  margin: 32px 0
}

.rr-rating-people-group+.rr-rating-people-group {
  margin-top: 28px
}

.rd-article .rr-rating-people-group-title,
.rr-rating-people-group-title {
  color: var(--primary-color);
  font-family: var(--font-main);
  font-size: .95rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 14px
}

.rr-rating-people .rd-authors-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr))
}

.rr-rating-people .rd-author-card-bio a {
  color: var(--secondary-color);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px
}

.rr-report-closing {
  border-top: 1px solid var(--border-color);
  margin: 32px 0;
  padding-top: 24px
}

.rr-report-closing-inner {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  scroll-margin-top: 100px
}

.rd-article .rr-report-closing-title,
.rr-report-closing-title {
  color: var(--primary-color);
  font-family: var(--font-main);
  font-size: .95rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 4px
}

.rd-article .rr-report-closing-text,
.rr-report-closing-text {
  color: #475569;
  font-size: .95rem;
  line-height: 1.6;
  margin: 0
}

.rr-report-closing-number {
  color: var(--secondary-color);
  font-weight: 700
}

@media (max-width:768px) {
  .rr-rating-drivers {
    gap: 16px;
    grid-template-columns: 1fr
  }

  .rr-rating-driver {
    padding: 18px
  }
}

.spo-opinion-panel {
  background: #f4f5f4;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-dark);
  margin: 32px 0;
  padding: 24px
}

.spo-opinion-header {
  align-items: center;
  column-gap: 12px;
  display: grid;
  grid-template-columns: minmax(180px, 220px) minmax(340px, 1fr);
  margin-bottom: 22px
}

.rd-article .spo-opinion-title,
.spo-opinion-title {
  color: var(--text-dark);
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.25;
  margin: 0;
  text-transform: uppercase;
  white-space: nowrap
}

.spo-binary-table {
  border-collapse: separate;
  border-spacing: 3px;
  table-layout: fixed;
  width: 100%
}

.spo-binary-table td,
.spo-binary-table th {
  width: 50%
}

.spo-binary-table th {
  color: #475569;
  font-size: .82rem;
  font-weight: 600;
  line-height: 1.25;
  padding: 0 4px 4px;
  text-align: center
}

.spo-binary-cell {
  border-radius: 4px;
  color: #1a1a2e;
  font-size: .7rem;
  height: 28px;
  text-align: center;
  vertical-align: middle
}

.spo-binary-cell--none {
  background: #c7cac7
}

.spo-binary-cell--suitable {
  background: #35ab60
}

.spo-opinion-legend-labels {
  color: #475569;
  display: grid;
  font-size: .82rem;
  font-weight: 600;
  line-height: 1.25;
  text-align: center
}

.spo-opinion-track {
  background: #c7cac7;
  border-radius: 4px;
  display: grid;
  min-height: 28px;
  overflow: hidden;
  position: relative
}

.spo-opinion-track--legend {
  grid-template-columns: repeat(4, 1fr)
}

.spo-opinion-segment--none {
  background: #c7cac7
}

.spo-opinion-segment--partial {
  background: #91ee91
}

.spo-opinion-segment--suitable {
  background: #35ab60
}

.spo-opinion-segment--best {
  background: #1c7d3c
}

.spo-opinion-marker {
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 11px solid #fff;
  filter: drop-shadow(0 1px 2px rgba(11, 22, 44, .22));
  height: 0;
  left: var(--marker, 50%);
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  z-index: 2
}

.rd-article .spo-opinion-desc,
.spo-opinion-desc {
  color: #475569;
  font-size: .9rem;
  line-height: 1.7;
  margin: 0 0 8px
}

.rd-article .spo-opinion-standards,
.spo-opinion-standards {
  color: #475569;
  display: grid;
  font-size: .88rem;
  gap: 3px;
  line-height: 1.5;
  list-style: none;
  margin: 0 0 28px;
  padding: 0
}

.rd-article .spo-opinion-standards li,
.spo-opinion-standards li {
  margin: 0;
  padding-left: 18px;
  position: relative
}

.spo-opinion-standards li:before {
  color: #4b5563;
  content: "✓";
  font-weight: 700;
  left: 0;
  position: absolute;
  top: 0
}

.spo-kf-table {
  border-collapse: separate;
  border-spacing: 3px 6px;
  width: 100%
}

.spo-kf-table th {
  color: #475569;
  font-size: .82rem;
  font-weight: 600;
  line-height: 1.25;
  padding: 0 4px 6px;
  text-align: center
}

.spo-kf-table th:first-child {
  min-width: 200px;
  text-align: left;
  width: 200px
}

.spo-kf-axis-title {
  font-weight: 700;
  min-width: 200px;
  width: 200px
}

.spo-kf-axis-title,
.spo-kf-row-title {
  color: #475569;
  font-size: .88rem;
  padding-right: 12px;
  vertical-align: middle
}

.spo-kf-row-title {
  font-weight: 500
}

.spo-kf-cell {
  border-radius: 4px;
  color: #1a1a2e;
  font-size: .7rem;
  height: 28px;
  text-align: center;
  vertical-align: middle
}

.spo-kf-cell--none {
  background: #c7cac7
}

.spo-kf-cell--partial {
  background: #91ee91
}

.spo-kf-cell--suitable {
  background: #35ab60
}

.spo-kf-cell--best {
  background: #1c7d3c
}

.spo-opinion-source {
  color: #64748b;
  font-size: .78rem;
  font-style: italic;
  margin-top: 8px
}

.spo-opinion-legend {
  background: #f4f5f4;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  margin: 20px 0 32px;
  padding: 14px 18px 18px
}

.spo-opinion-legend .spo-opinion-track {
  margin-bottom: 9px;
  min-height: 20px
}

.spo-opinion-legend-labels {
  color: var(--text-dark);
  font-size: .9rem;
  grid-template-columns: repeat(4, 1fr)
}

.rr-lang-separator {
  background-color: var(--border-light);
  height: 16px;
  margin: 0 8px 0 4px;
  width: 1px
}

@media (max-width:768px) {
  .spo-opinion-panel {
    padding: 18px
  }

  .spo-opinion-header {
    column-gap: 0;
    grid-template-columns: 1fr;
    row-gap: 10px
  }

  .rd-article .spo-opinion-title,
  .spo-opinion-title {
    font-size: 1.05rem;
    white-space: normal
  }

  .spo-opinion-matrix-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 -18px;
    padding: 0 18px 4px
  }

  .spo-kf-table {
    min-width: 480px
  }

  .spo-opinion-legend {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch
  }

  .spo-opinion-legend-inner {
    min-width: 560px
  }
}

.spo-rating-bar-wrap {
  background: #f4f5f4;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  margin: 16px 0 24px;
  padding: 16px 20px 20px
}

.spo-rating-bar-table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%
}

.spo-rating-bar-cell {
  color: #1a1a2e;
  font-size: .85rem;
  height: 28px;
  padding: 0;
  text-align: center;
  vertical-align: middle;
  width: 25%
}

.spo-rating-bar-row .spo-rating-bar-cell:first-child {
  border-radius: 4px 0 0 4px
}

.spo-rating-bar-row .spo-rating-bar-cell:last-child {
  border-radius: 0 4px 4px 0
}

.spo-rating-bar-cell--none {
  background: #c7cac7
}

.spo-rating-bar-cell--partial {
  background: #91ee91
}

.spo-rating-bar-cell--suitable {
  background: #35ab60;
  color: #fff
}

.spo-rating-bar-cell--best {
  background: #1c7d3c;
  color: #fff
}

.spo-rating-bar-labels-row td {
  color: #475569;
  font-size: .82rem;
  font-weight: 600;
  line-height: 1.25;
  padding: 6px 4px 0;
  text-align: center;
  width: 25%
}

@media (max-width:768px) {
  .spo-rating-bar-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 14px 14px 16px
  }

  .spo-rating-bar-table {
    min-width: 480px
  }
}

.intro-layout {
  align-items: start;
  display: grid;
  gap: 64px;
  grid-template-columns: 1fr 1fr
}

.intro-layout-text .section-title {
  margin-bottom: 20px
}

.intro-layout-lead {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 0
}

.intro-layout-cards {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr
}

.intro-layout-card {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  padding: 28px 24px;
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease
}

.intro-layout-card:before {
  background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
  content: "";
  height: 3px;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: opacity .3s ease
}

.intro-layout-card:hover {
  border-color: var(--secondary-color);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px)
}

.intro-layout-card:hover:before {
  opacity: 1
}

.intro-layout-card-icon {
  align-items: center;
  background: rgba(var(--secondary-rgb), .08);
  border-radius: 12px;
  color: var(--secondary-color);
  display: flex;
  height: 44px;
  justify-content: center;
  margin-bottom: 14px;
  width: 44px
}

.intro-layout-card h3,
.intro-layout-card h4 {
  color: var(--primary-color);
  font-size: .95rem;
  font-weight: 600;
  margin-bottom: 8px
}

.intro-layout-card p {
  color: var(--text-muted);
  font-size: .88rem;
  line-height: 1.7;
  margin: 0
}

.intro-layout-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0
}

.intro-layout-points li {
  align-items: flex-start;
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  display: flex;
  gap: 16px;
  padding: 24px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease
}

.intro-layout-points li:hover {
  border-color: var(--secondary-color);
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px)
}

.intro-point-icon {
  align-items: center;
  background: rgba(var(--secondary-rgb), .08);
  border-radius: 12px;
  color: var(--secondary-color);
  display: flex;
  flex-shrink: 0;
  height: 44px;
  justify-content: center;
  width: 44px
}

.intro-point-text h3,
.intro-point-text h4 {
  color: var(--primary-color);
  font-size: .95rem;
  font-weight: 600;
  margin-bottom: 6px
}

.intro-point-text p {
  color: var(--text-muted);
  font-size: .88rem;
  line-height: 1.7;
  margin: 0
}

.intro-layout-label {
  border-bottom: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  margin-bottom: 16px;
  padding-bottom: 12px;
  text-transform: uppercase
}

.intro-layout--featured .intro-layout-cards,
.intro-layout--featured .intro-layout-points {
  background: linear-gradient(135deg, var(--primary-color) 0, var(--primary-light) 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 28px;
  position: relative
}

.intro-layout--featured .intro-layout-label {
  border-bottom-color: rgba(var(--accent-rgb), .25);
  color: var(--accent-color)
}

.intro-layout--featured .intro-layout-card {
  background: hsla(0, 0%, 100%, .08);
  border-color: hsla(0, 0%, 100%, .12)
}

.intro-layout--featured .intro-layout-card:hover {
  background: hsla(0, 0%, 100%, .14);
  border-color: var(--accent-color);
  box-shadow: none;
  transform: none
}

.intro-layout--featured .intro-layout-card:before {
  display: none
}

.intro-layout--featured .intro-layout-card h3,
.intro-layout--featured .intro-layout-card h4 {
  color: #fff
}

.intro-layout--featured .intro-layout-card p {
  color: hsla(0, 0%, 100%, .7)
}

.intro-layout--featured .intro-layout-card-icon {
  background: rgba(var(--accent-rgb), .15);
  color: var(--accent-color)
}

.intro-layout--featured .intro-layout-card.highlighted {
  background: hsla(0, 0%, 100%, .14);
  border-color: var(--accent-color);
  box-shadow: 0 0 0 1px rgba(var(--accent-rgb), .4), 0 8px 24px rgba(0, 0, 0, .2)
}

.intro-layout--featured .intro-layout-points li {
  background: hsla(0, 0%, 100%, .08);
  border-color: hsla(0, 0%, 100%, .12)
}

.intro-layout--featured .intro-layout-points li:hover {
  background: hsla(0, 0%, 100%, .14);
  border-color: var(--accent-color);
  box-shadow: none;
  transform: none
}

.intro-layout--featured .intro-layout-points li.highlighted {
  background: hsla(0, 0%, 100%, .14);
  border-color: var(--accent-color);
  box-shadow: 0 0 0 1px rgba(var(--accent-rgb), .4), 0 8px 24px rgba(0, 0, 0, .2)
}

.intro-layout--featured .intro-point-text h3,
.intro-layout--featured .intro-point-text h4 {
  color: #fff
}

.intro-layout--featured .intro-point-text p {
  color: hsla(0, 0%, 100%, .7)
}

.intro-layout--featured .intro-point-icon {
  background: rgba(var(--accent-rgb), .15);
  color: var(--accent-color)
}

@media (max-width:992px) {
  .intro-layout {
    gap: 40px;
    grid-template-columns: 1fr
  }

  .intro-layout--featured .intro-layout-cards,
  .intro-layout--featured .intro-layout-points {
    border-radius: var(--radius-md);
    padding: 20px
  }
}

@media (max-width:768px) {
  .intro-layout-cards {
    gap: 16px;
    grid-template-columns: 1fr
  }

  .intro-layout-card {
    border-radius: 16px;
    padding: 24px 16px
  }
}

@media (max-width:480px) {
  .intro-layout-lead {
    font-size: .95rem
  }
}

.post-content {
  color: var(--text-dark);
  font-size: 1.02rem;
  line-height: 1.78
}

.post-content>:first-child {
  margin-top: 0
}

.post-content p {
  margin: 0 0 16px
}

.post-content h2 {
  color: var(--primary-color);
  font-family: var(--font-serif);
  font-size: 1.32rem;
  line-height: 1.4;
  margin: 28px 0 10px
}

.post-content h3 {
  color: var(--primary-color);
  font-size: 1.12rem;
  font-weight: 600;
  margin: 24px 0 8px
}

.post-content ol,
.post-content ul {
  margin: 0 0 16px;
  padding-left: 22px
}

.post-content li {
  margin-bottom: 7px
}

.post-content a {
  border-bottom: 1px solid rgba(var(--secondary-rgb), .3);
  color: var(--secondary-color);
  text-decoration: none;
  transition: border-color .2s
}

.post-content a:hover {
  border-bottom-color: currentColor
}

.post-content strong {
  color: var(--primary-color);
  font-weight: 700
}

.post-content blockquote {
  background: rgba(var(--secondary-rgb), .05);
  border-left: 3px solid var(--secondary-color);
  border-radius: 0 6px 6px 0;
  font-style: italic;
  margin: 24px 0;
  padding: 14px 20px
}

.post-content blockquote p:last-child {
  margin-bottom: 0
}

.post-content img {
  border-radius: 8px;
  display: block;
  height: auto;
  margin: 24px 0;
  max-width: 100%
}

.post-content figure {
  margin: 24px 0
}

.post-content figcaption {
  color: var(--text-muted);
  font-size: .85rem;
  font-style: italic;
  margin-top: 8px;
  text-align: center
}

.post-content table:not(.rd-data-table) {
  border-collapse: collapse;
  font-size: .92rem;
  margin: 20px 0;
  width: 100%
}

.post-content table:not(.rd-data-table) td,
.post-content table:not(.rd-data-table) th {
  border: 1px solid var(--border-color);
  padding: 10px 14px;
  text-align: left;
  vertical-align: top
}

.post-content table:not(.rd-data-table) th {
  background: var(--surface-color);
  color: var(--primary-color);
  font-weight: 600
}

.post-content .table-wrap {
  margin: 20px 0;
  overflow-x: auto
}

.post-content .table-wrap table {
  margin: 0
}

@media (max-width:768px) {
  .post-content {
    font-size: .96rem;
    line-height: 1.7
  }

  .post-content h2 {
    font-size: 1.18rem
  }
}

.rd-print-credit-footer,
.rd-print-credit-header,
.rd-print-toc {
  display: none !important
}

/* --- VvvebJs / Bootstrap Tabs Compatibility Styles --- */
[data-component-tabs] {
  margin-bottom: 1.5rem;
}
[data-component-tabs] nav .nav-tabs {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #dee2e6;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  gap: 4px;
}
[data-component-tabs] nav .nav-tabs .nav-link {
  background: none;
  border: 1px solid transparent;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  color: var(--text-dark, #0b162c);
  padding: 10px 16px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-bottom: -1px;
}
[data-component-tabs] nav .nav-tabs .nav-link:hover {
  border-color: #e9ecef #e9ecef #dee2e6;
  background-color: #f8f9fa;
  color: var(--primary-color, #007bff);
}
[data-component-tabs] nav .nav-tabs .nav-link.active {
  color: var(--primary-color, #007bff);
  background-color: #fff;
  border-color: #dee2e6 #dee2e6 #fff;
  font-weight: 700;
}
/* Override custom tab-content display: none for Vvveb tabs */
[data-component-tabs] .tab-content {
  display: block !important;
  animation: none !important;
  border: 1px solid #dee2e6;
  border-top: none;
  background: #fff;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
[data-component-tabs] .tab-pane {
  display: none !important;
}
[data-component-tabs] .tab-pane.active, 
[data-component-tabs] .tab-pane.show {
  display: block !important;
}