:root {
  --blue: #145998;
  --blue-dark: #0f4172;
  --blue-soft: #eaf4fb;
  --pink: #e94f8d;
  --ink: #142235;
  --text: #5c6b79;
  --line: #e5edf5;
  --white: #ffffff;
  --max: 1066px;
  --topbar-height: 29px;
  --navbar-height: 80px;
  --benefits-height: 69px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Poppins", sans-serif;
  background: var(--white);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--max), calc(100% - 88px));
  margin: 0 auto;
}

.topbar {
  height: var(--topbar-height);
  display: flex;
  align-items: center;
  background: #124879;
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  font-weight: 700;
}

.topbar .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
}

.topbar .muted {
  color: #8bc0e3;
}

.topbar .divider {
  color: rgba(255, 255, 255, 0.48);
  font-weight: 600;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 20;
  height: var(--navbar-height);
  background: var(--white);
  border-bottom: 1px solid #e4edf7;
}

.navbar .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.logo {
  width: 178px;
  height: 98px;
  display: block;
  object-fit: contain;
  flex: 0 0 auto;
}

.nav-toggle {
  width: 42px;
  height: 38px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid #dce6ef;
  border-radius: 8px;
  background: var(--white);
  color: #0d4c84;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.menu {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 25px;
  color: #0d4c84;
  font-size: 16px;
  font-weight: 700;
  flex: 1;
  margin-left: 10px;
}

.menu > a,
.menu-item > a {
  position: relative;
  height: 100%;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.menu > a.active::after,
.menu-item > a.active::after {
  content: "";
  position: absolute;
  left: -9px;
  right: -9px;
  bottom: 0;
  height: 3px;
  background: #1b6bb4;
}

.menu-item {
  position: relative;
  height: 100%;
  display: inline-flex;
  align-items: center;
}

.submenu {
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  z-index: 30;
  width: 185px;
  display: grid;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  border: 1px solid #dce6ef;
  background: var(--white);
  box-shadow: 0 16px 28px rgba(16, 31, 49, 0.12);
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
}

.submenu.compact {
  width: 178px;
}

.submenu-group {
  position: relative;
  display: block;
}

.submenu a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 29px;
  padding: 5px 8px;
  border-bottom: 1px solid #dce6ef;
  color: #0c365f;
  background: var(--white);
  text-align: center;
  font-size: 13px;
  line-height: 1.12;
  font-weight: 500;
}

.submenu .submenu-parent {
  position: relative;
  padding-right: 24px;
}

.submenu .submenu-parent::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-50%) rotate(-45deg);
}

.submenu-nested {
  position: absolute;
  top: -8px;
  left: calc(100% + 8px);
  z-index: 35;
  width: 170px;
  display: grid;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-6px);
  border: 1px solid #dce6ef;
  background: var(--white);
  box-shadow: 0 18px 34px rgba(16, 31, 49, 0.14);
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
}

.submenu-nested::before {
  content: "";
  position: absolute;
  top: 0;
  right: 100%;
  bottom: 0;
  width: 10px;
}

.submenu-nested a {
  justify-content: flex-start;
  min-height: 32px;
  padding: 7px 10px;
  text-align: left;
  font-weight: 700;
}

.submenu-group:hover .submenu-nested,
.submenu-group:focus-within .submenu-nested {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

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

.submenu a:hover,
.submenu a:focus-visible {
  color: #0d4c84;
  background: #edf6fc;
  outline: none;
}

.menu-item:hover .submenu,
.menu-item:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.menu-item.is-closing .submenu,
.menu-item.is-closing:hover .submenu,
.menu-item.is-closing:focus-within .submenu {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 8px);
}

.caret {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  margin-top: 3px;
}

.quote-btn {
  min-width: 95px;
  height: 33px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  background: #1462a7;
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.hero {
  min-height: calc(104vh - var(--topbar-height) - var(--navbar-height) - var(--benefits-height));
  border-top: 1px solid #e6edf6;
  border-bottom: 1px solid #e6edf6;
  background:
    linear-gradient(100deg, rgba(247, 251, 255, 0) 0 56%, rgba(255, 255, 255, 0.38) 56% 68%, rgba(247, 251, 255, 0) 68%),
    linear-gradient(90deg, #f4faff 0%, #edf7fe 46%, #eef0f8 100%);
  overflow: hidden;
}

.hero .container {
  min-height: calc(100vh - var(--topbar-height) - var(--navbar-height) - var(--benefits-height));
  position: relative;
  padding-top: 31px;
}

.hero .container::after {
  content: "";
  position: absolute;
  top: 0;
  right: -116px;
  width: 340px;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.02));
  transform: skewX(-8deg);
  transform-origin: top;
}

.hero-ribbon {
  position: absolute;
  right: -34px;
  top: 48%;
  z-index: 2;
  width: min(39vw, 490px);
  aspect-ratio: 1200 / 1240;
  transform: translateY(-50%);
  perspective: 900px;
  overflow: visible;
  pointer-events: none;
}

.hero-ribbon::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 8%;
  bottom: -28px;
  height: 44px;
  border-radius: 50%;
  background: rgba(10, 31, 49, 0.22);
  filter: blur(22px);
  transform: rotate(-3deg);
  animation: ribbonShadow 5.2s ease-in-out infinite;
}

.ribbon-slide {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: translate3d(28px, 10px, 0) scale(0.95);
  transition: opacity 0.72s ease, transform 0.72s ease;
}

.ribbon-slide.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.ribbon-slide img {
  position: relative;
  width: 100%;
  max-height: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 34px 34px rgba(11, 38, 67, 0.22));
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.ribbon-slide-wide img {
  width: 122%;
  max-width: 122%;
}

.ribbon-slide.is-active img {
  animation: ribbonFloat 5.2s ease-in-out infinite;
}

@keyframes ribbonFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -18px, 0);
  }
}

@keyframes ribbonShadow {
  0%,
  100% {
    opacity: 0.78;
    transform: translateY(0) scale(1) rotate(-3deg);
  }

  50% {
    opacity: 0.5;
    transform: translateY(10px) scale(0.9) rotate(-3deg);
  }
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 25px 10px;
  color: #155f99;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #0e8ccd;
}

h1 {
  margin: 0;
  max-width: 540px;
  color: #102034;
  font-size: 43px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: 0;
}

h1 .blue {
  color: #1568ad;
}

h1 .pink {
  color: var(--pink);
}

.hero-copy {
  width: 505px;
  margin: 22px 0 0;
  color: #5d6d7c;
  font-size: 17px;
  line-height: 1.72;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 35px;
}

.action {
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
}

.action-primary {
  width: 234px;
  color: var(--white);
  background: #e94f8d;
}

.action-secondary {
  width: 198px;
  color: #216399;
  background: var(--white);
  border: 2px solid #216399;
}

.action svg {
  width: 16px;
  height: 16px;
  stroke-width: 2.6;
}

.benefits {
  height: var(--benefits-height);
  border-bottom: 1px solid #dfe9f3;
  background: var(--white);
}

.benefits-grid {
  height: var(--benefits-height);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.benefit {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
  padding: 0 18px 0 42px;
  border-right: 1px solid #e7eef5;
}

.benefit:last-child {
  border-right: 0;
}

.benefit-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  color: #2a78ac;
  background: #eaf5fb;
  flex: 0 0 auto;
}

.benefit-icon svg {
  width: 17px;
  height: 17px;
  stroke-width: 2;
}

.benefit strong {
  display: block;
  margin-bottom: 2px;
  color: #233040;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
}

.benefit span {
  display: block;
  color: #8a96a5;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
}

.industries {
  scroll-margin-top: var(--navbar-height);
  padding: 26px 0 14px;
  background: #f4f8fb;
  border-top: 1px solid #e4edf7;
}

.industries .container {
  max-width: 1160px;
  text-align: center;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 22px;
  margin: 0 0 13px;
  padding: 0 15px;
  border-radius: 999px;
  color: #2b6f9c;
  background: #e9f3f9;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.industries h2 {
  margin: 0;
  color: #101f31;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0;
}

.section-copy {
  width: 520px;
  max-width: 100%;
  margin: 17px auto 47px;
  color: #66737f;
  font-size: 14px;
  line-height: 1.65;
  font-weight: 500;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.industry-card {
  min-height: 232px;
  padding: 26px 22px 22px;
  border: 1px solid #e1e8f0;
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 2px 9px rgba(16, 31, 49, 0.04);
}

.industry-icon {
  width: 49px;
  height: 49px;
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
  border-radius: 10px;
}

.industry-icon svg {
  width: 26px;
  height: 26px;
  stroke-width: 2;
}

.icon-pink {
  color: #db4e88;
  background: #fde9f2;
}

.icon-green {
  color: #45a862;
  background: #edf8ee;
}

.icon-mint {
  color: #e05062;
  background: #e7faf4;
}

.icon-yellow {
  color: #a8783f;
  background: #fff4cc;
}

.icon-lavender {
  color: #9a88b6;
  background: #f1edfb;
}

.industry-card h3 {
  min-height: 40px;
  margin: 0 0 8px;
  color: #1b2a3a;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0;
}

.industry-card p {
  min-height: 58px;
  margin: 0 0 16px;
  color: #6f7d8b;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 500;
}

.industry-card a {
  color: #2870a3;
  font-size: 12px;
  font-weight: 800;
}

.formulation-finder {
  scroll-margin-top: var(--navbar-height);
  padding: 34px 0 42px;
  background:
    radial-gradient(circle at 16% 24%, rgba(233, 79, 141, 0.08), transparent 210px),
    linear-gradient(180deg, #f8fbfe 0%, #eef6fb 100%);
  border-top: 1px solid #e4edf7;
}

.formulation-finder .container {
  max-width: 1040px;
}

.formulation-heading {
  margin: 0 0 24px;
  color: #101f31;
  font-size: 34px;
  line-height: 1.15;
  font-weight: 800;
  text-align: center;
}

.formulation-shell {
  width: 100%;
  min-width: 0;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  align-items: stretch;
  filter: drop-shadow(0 18px 32px rgba(20, 89, 152, 0.12));
}

.formulation-tabs {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: start;
  padding-top: 8px;
}

.formulation-tab {
  min-height: 74px;
  display: flex;
  align-items: center;
  padding: 0 24px;
  border: 1px solid #d7e4f2;
  border-right: 0;
  border-radius: 18px 0 0 18px;
  background: var(--white);
  color: #104a82;
  font-family: inherit;
  font-size: 24px;
  line-height: 1.1;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.formulation-tab + .formulation-tab,
.formulation-back + .formulation-tab {
  margin-top: 6px;
}

.formulation-tab:hover,
.formulation-tab:focus-visible {
  color: var(--blue);
  background: #f6fbff;
  outline: none;
}

.formulation-tab.is-active {
  border-color: var(--blue);
  background: linear-gradient(135deg, var(--blue) 0%, #1d6fba 100%);
  color: var(--white);
  transform: translateX(4px);
}

.formulation-tab.is-active[data-category="cera"] {
  border-color: #6f7d8b;
  background: linear-gradient(135deg, #6f7d8b 0%, #93a0ad 100%);
}

.formulation-tab.is-active[data-category="cera-resina"] {
  border-color: #6d3fa1;
  background: linear-gradient(135deg, #6d3fa1 0%, #8d58c5 100%);
}

.formulation-tab.is-active[data-category="resina"] {
  border-color: #b92f3a;
  background: linear-gradient(135deg, #b92f3a 0%, #dc4a55 100%);
}

.formulation-tab.is-formula {
  min-height: 64px;
  font-size: 18px;
}

.formulation-tab::before {
  content: "";
  width: 13px;
  height: 22px;
  margin-right: 12px;
  border-right: 6px solid currentColor;
  border-bottom: 6px solid currentColor;
  transform: rotate(42deg) translateY(-2px);
  flex: 0 0 auto;
}

.formulation-back {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 18px;
  border: 1px solid #d7e4f2;
  border-right: 0;
  border-radius: 14px 0 0 14px;
  background: #f7fbff;
  color: #104a82;
  font-family: inherit;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  cursor: pointer;
}

.formulation-back:hover,
.formulation-back:focus-visible {
  color: var(--blue);
  background: var(--white);
  outline: none;
}

.formulation-panel {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 330px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 24px;
  overflow: hidden;
  padding: 34px 30px 30px;
  border-radius: 0 22px 22px 0;
  background:
    radial-gradient(circle at 86% 18%, rgba(255, 255, 255, 0.18), transparent 170px),
    linear-gradient(135deg, var(--blue) 0%, #1769b1 100%);
  color: var(--white);
}

.formulation-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, transparent 0 52%, rgba(255, 255, 255, 0.08) 52% 64%, transparent 64%),
    radial-gradient(circle at 25% 100%, rgba(233, 79, 141, 0.12), transparent 210px);
  pointer-events: none;
}

.formulation-content,
.formulation-photo {
  position: relative;
  min-width: 0;
  z-index: 2;
}

.formulation-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  margin: 0 0 15px;
  padding: 0 13px;
  border-radius: 999px;
  color: #cde8fb;
  background: rgba(255, 255, 255, 0.12);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.formulation-panel h2 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 42px;
  line-height: 1.05;
  font-weight: 800;
}

.formulation-panel p {
  width: 100%;
  max-width: 430px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 500;
}

.formulation-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.26);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.formulation-link span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--blue);
  background: var(--white);
}

.pdf-open {
  overflow: hidden;
}

.contact-open {
  overflow: hidden;
}

.floating-contact {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 180;
  display: grid;
  gap: 12px;
  pointer-events: none;
}

.floating-contact-btn {
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  box-shadow: 0 18px 34px rgba(11, 35, 55, 0.2);
  overflow: hidden;
  pointer-events: auto;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-contact-btn span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.floating-contact-btn img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.floating-contact-btn:hover,
.floating-contact-btn:focus-visible {
  outline: none;
  transform: translateY(-3px);
  box-shadow: 0 24px 44px rgba(11, 35, 55, 0.26);
}

.pdf-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.pdf-modal.is-open {
  display: flex;
}

.pdf-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 27, 42, 0.72);
  backdrop-filter: blur(8px);
}

.pdf-modal-dialog {
  position: relative;
  z-index: 2;
  width: min(1040px, 100%);
  height: min(86vh, 820px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.28);
}

.pdf-modal-head,
.pdf-modal-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  border-bottom: 1px solid #dce8f3;
}

.pdf-modal-head p {
  margin: 0 0 4px;
  color: var(--pink);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.pdf-modal-head h2 {
  margin: 0;
  color: #102236;
  font-size: 20px;
  line-height: 1.2;
}

.pdf-modal-head button {
  width: 42px;
  height: 42px;
  border: 1px solid #dce8f3;
  border-radius: 50%;
  background: #f8fbfe;
  color: #0f4172;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.pdf-modal-frame {
  width: 100%;
  height: 100%;
  border: 0;
  background: #f4f8fb;
}

.pdf-modal-actions {
  justify-content: flex-end;
  border-top: 1px solid #dce8f3;
  border-bottom: 0;
}

.pdf-modal-actions a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.pdf-modal-actions a:first-child {
  color: var(--blue-dark);
  background: #edf6fc;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 210;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.contact-modal.is-open {
  display: flex;
}

.contact-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 29, 48, 0.62);
  backdrop-filter: blur(10px);
}

.contact-modal-dialog {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
  max-height: min(88vh, 820px);
  overflow: auto;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 34px 90px rgba(4, 23, 38, 0.32);
}

.contact-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 4;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d9e6f1;
  border-radius: 50%;
  color: #0f4172;
  background: #ffffff;
  font-size: 27px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(16, 31, 49, 0.1);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.contact-modal-close:hover,
.contact-modal-close:focus-visible {
  outline: none;
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(16, 31, 49, 0.14);
}

.contact-modal-form {
  margin: 0;
  border: 0;
  border-radius: 28px;
  box-shadow: none;
}

.contact-modal-form .form-head {
  padding-right: 52px;
}

.contact-modal-status {
  display: none;
  margin: 0 0 16px;
  padding: 12px 14px;
  border: 1px solid #cfe2f0;
  border-radius: 12px;
  color: #0f4f87;
  background: #eef7fd;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 700;
}

.contact-modal-status.is-visible {
  display: block;
}

.formulation-photo {
  align-self: center;
  height: 250px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, 0.92);
  border-radius: 14px;
  background: #f5f9fd;
  box-shadow: 0 24px 36px rgba(5, 24, 44, 0.24);
}

.formulation-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
}

.formulation-panel.is-changing .formulation-content {
  animation: formulationSwap 0.26s ease;
}

@keyframes formulationSwap {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.products {
  padding: 32px 0 48px;
  background: var(--white);
}

.products .container {
  max-width: 1100px;
  text-align: center;
}

.products h2 {
  margin: 0;
  color: #101f31;
  font-size: 32px;
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: 0;
}

.formula-table {
  margin-top: 42px;
  overflow: hidden;
  border: 1px solid #dfe8f1;
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(16, 31, 49, 0.06);
}

.formula-row {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr);
  min-height: 58px;
  border-bottom: 1px solid #e4edf4;
}

.formula-row:last-child {
  border-bottom: 0;
}

.formula-row > div,
.formula-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 16px 18px;
  border-right: 1px solid #e4edf4;
  color: #5e6e7d;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 500;
}

.formula-row > div:last-child,
.formula-card:last-child {
  border-right: 0;
}

.formula-head {
  min-height: 118px;
}

.formula-head .feature-cell {
  justify-content: flex-start;
  color: #566675;
  background: #f5f8fb;
  font-weight: 800;
}

.formula-card {
  flex-direction: column;
  gap: 3px;
  background: #f7f9fc;
}

.formula-card h3 {
  margin: 2px 0 0;
  color: #101f31;
  font-size: 17px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: 0;
}

.formula-card span {
  color: #7b8794;
  font-size: 11px;
  font-weight: 600;
}

.formula-card.wax {
  background: #f7f9fc;
}

.formula-card.hybrid {
  background:
    linear-gradient(180deg, rgba(233, 79, 141, 0.08), rgba(20, 89, 152, 0.08)),
    #f8fbff;
}

.formula-card.resin {
  background: #092033;
}

.formula-card.resin h3,
.formula-card.resin span {
  color: var(--white);
}

.formula-card.is-featured h3 {
  color: var(--blue);
}

.formula-card.is-featured span {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(90deg, var(--blue), var(--pink));
  font-size: 10px;
  font-weight: 800;
}

.ribbon-mark {
  width: 22px;
  height: 18px;
  border-radius: 5px;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.55) 0 2px, transparent 2px 4px),
    linear-gradient(135deg, #145998, #e94f8d);
  box-shadow: inset 0 0 0 1px rgba(16, 31, 49, 0.08);
}

.feature-cell {
  justify-content: flex-start;
  color: #233040;
  text-align: left;
  font-weight: 800;
}

.formula-row:not(.formula-head) .feature-cell {
  background: #fbfdff;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 21px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}

.tag-soft {
  color: #73808c;
  background: #eef3f7;
}

.tag-warm {
  color: #a76c16;
  background: #fff0c8;
}

.tag-good {
  color: #128568;
  background: #dff8ef;
}

.formula-actions {
  min-height: 54px;
  background: #f8fbfe;
}

.formula-actions a {
  color: #2870a3;
  font-size: 12px;
  font-weight: 800;
}

.applications {
  padding: 40px 0 54px;
  background: #ffffff;
}

.applications .container {
  max-width: 1120px;
}

.applications-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 26px;
}

.applications-header h2 {
  margin: 0;
  color: #0b3f8f;
  font-size: 36px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.4px;
}

.applications-kicker {
  margin: 0 0 11px;
  color: #2b6f9c;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.applications-controls {
  display: flex;
  gap: 9px;
  flex: 0 0 auto;
}

.applications-controls button {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 10px;
  color: var(--white);
  background: #123bb9;
  font-family: inherit;
  font-size: 20px;
  font-weight: 800;
}

.applications-controls button:first-child {
  background: #aebbe8;
}

.applications-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 40px) / 3);
  gap: 20px;
  overflow-x: hidden;
  padding: 4px 0 10px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.applications-grid::-webkit-scrollbar {
  height: 8px;
}

.applications-grid::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: #d4e1ee;
}

.application-card {
  position: relative;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #cfdcf0;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 14px 28px rgba(16, 31, 49, 0.06);
  scroll-snap-align: start;
  cursor: pointer;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.application-card:hover,
.application-card:focus-within {
  transform: translateY(-5px);
  border-color: #96aed0;
  box-shadow: 0 22px 40px rgba(16, 31, 49, 0.11);
}

.application-card img {
  width: calc(100% - 18px);
  height: 210px;
  display: block;
  object-fit: cover;
  margin: 9px;
  border-radius: 12px;
}

.application-card > div {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 4px 18px 18px;
}

.application-card h3 {
  margin: 0 0 10px;
  color: #0c3c9d;
  font-size: 17px;
  line-height: 1.22;
  font-weight: 800;
}

.application-card p {
  margin: 0;
  color: #183b7a;
  font-size: 12.5px;
  line-height: 1.58;
  font-weight: 500;
}

.application-card a {
  position: static;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid #dbe5f2;
  color: #123bb9;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.application-card a::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
}

.application-card a:focus-visible {
  outline: none;
}

.application-card:focus-within {
  outline: 3px solid rgba(20, 89, 152, 0.22);
  outline-offset: 4px;
}

.application-card a span {
  position: relative;
  z-index: 3;
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: var(--white);
  background: #123bb9;
  font-size: 16px;
}

.printers {
  padding: 34px 0 42px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbfe 100%);
}

.printers .container {
  max-width: 1020px;
  text-align: center;
}

.printers h2 {
  margin: 0;
  color: #101f31;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0;
}

.printer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 34px;
}

.printer-card {
  overflow: hidden;
  border: 1px solid #dfe8f1;
  border-radius: 12px;
  background: var(--white);
  text-align: left;
  box-shadow: 0 8px 22px rgba(16, 31, 49, 0.06);
}

.printer-visual {
  position: relative;
  height: 156px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid #dfe8f1;
}

.printer-industrial .printer-visual {
  background:
    radial-gradient(circle at 50% 45%, rgba(27, 107, 180, 0.34), transparent 145px),
    linear-gradient(135deg, #07192b 0%, #153d67 100%);
}

.printer-desktop .printer-visual {
  background:
    radial-gradient(circle at 50% 45%, rgba(20, 89, 152, 0.08), transparent 150px),
    linear-gradient(135deg, #f5f9fd 0%, #eef5fb 100%);
}

.printer-slider {
  position: absolute;
  inset: 0;
}

.printer-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(180deg, rgba(8, 25, 43, 0.08), transparent 42%, rgba(8, 25, 43, 0.1)),
    radial-gradient(circle at 50% 52%, transparent 0 42%, rgba(255, 255, 255, 0.1) 72%);
  pointer-events: none;
}

.printer-desktop .printer-slider::after {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), transparent 48%, rgba(15, 65, 114, 0.08)),
    radial-gradient(circle at 50% 52%, transparent 0 46%, rgba(255, 255, 255, 0.22) 76%);
}

.printer-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.045);
  transition: opacity 0.7s ease, transform 1.2s ease;
}

.printer-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.printer-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.printer-industrial .printer-slide img {
  object-position: center;
}

.printer-desktop .printer-slide img {
  object-position: center;
}

.industrial-device {
  position: relative;
  width: 120px;
  height: 56px;
  border: 4px solid #10223f;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(233, 79, 141, 0.22), transparent 28%),
    #142945;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.24);
}

.industrial-device::before {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  top: 18px;
  height: 4px;
  border-radius: 999px;
  background: #236bb0;
  box-shadow: 0 12px 0 #e94f8d;
}

.industrial-device::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff5a8f;
}

.industrial-device span {
  position: absolute;
  left: 18px;
  top: 8px;
  width: 36px;
  height: 3px;
  border-radius: 999px;
  background: #285fa5;
}

.desktop-device {
  position: relative;
  width: 70px;
  height: 58px;
  border: 3px solid #dbe6ee;
  border-radius: 8px;
  background: #f8fbfe;
  box-shadow: 0 12px 26px rgba(16, 31, 49, 0.08);
}

.desktop-device::before {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  top: 17px;
  height: 3px;
  border-radius: 999px;
  background: #7fa6c8;
  box-shadow: 0 10px 0 #c9d8e5;
}

.desktop-device::after {
  content: "";
  position: absolute;
  right: 6px;
  top: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #45c68d;
}

.printer-body {
  padding: 24px 24px 22px;
}

.printer-tag {
  display: flex;
  align-items: center;
  min-height: 18px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  text-transform: none;
}

.tag-blue {
  color: #236399;
  background: #e7f1fa;
}

.tag-green {
  color: #128568;
  background: #dff8ef;
}

.printer-body h3 {
  margin: 10px 0 10px;
  color: #101f31;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0;
}

.printer-body p {
  margin: 0;
  color: #586979;
  font-size: 12px;
  line-height: 1.65;
  font-weight: 500;
}

.printer-specs {
  margin: 20px 0 17px;
  padding: 14px 16px;
  border-radius: 9px;
  background: #f5f8fb;
}

.printer-specs div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
}

.printer-specs div:last-child {
  margin-bottom: 0;
}

.printer-specs dt,
.printer-specs dd {
  margin: 0;
  font-size: 11px;
  line-height: 1.25;
}

.printer-specs dt {
  color: #83909d;
  font-weight: 600;
}

.printer-specs dd {
  color: #142235;
  font-weight: 800;
  text-align: right;
}

.printer-link {
  display: block;
  padding-top: 16px;
  border-top: 1px solid #dfe8f1;
  color: #2870a3;
  font-size: 12px;
  font-weight: 800;
}

.printer-link.green {
  color: #128568;
  border-top-color: rgba(18, 133, 104, 0.45);
}

.support-hub {
  position: relative;
  overflow: hidden;
  scroll-margin-top: var(--navbar-height);
  padding: 68px 0 72px;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 14%, rgba(233, 79, 141, 0.28), transparent 250px),
    radial-gradient(circle at 86% 12%, rgba(38, 125, 198, 0.42), transparent 320px),
    linear-gradient(135deg, #061727 0%, #0a2e4d 52%, #071827 100%);
}

.support-hub::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 50%, rgba(255, 255, 255, 0.07) 50% 62%, transparent 62%),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: auto, 44px 44px, 44px 44px;
  pointer-events: none;
}

.support-hub::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -170px;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: rgba(233, 79, 141, 0.14);
  filter: blur(10px);
  pointer-events: none;
}

.support-hub .container {
  position: relative;
  z-index: 1;
  max-width: 1080px;
}

.support-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 46px;
  align-items: center;
}

.support-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  margin: 0 0 17px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #cde8fb;
  background: rgba(255, 255, 255, 0.08);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.support-copy h1,
.support-copy h2 {
  max-width: 620px;
  margin: 0 0 17px;
  color: var(--white);
  font-size: 48px;
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: -1px;
}

.support-copy > p:not(.support-kicker) {
  max-width: 600px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  line-height: 1.75;
  font-weight: 500;
}

.support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 27px;
}

.support-primary,
.support-secondary {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.support-primary {
  color: #071827;
  background: var(--white);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

.support-secondary {
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.support-command-card {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08)),
    rgba(5, 18, 32, 0.62);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.support-command-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent 34%);
  pointer-events: none;
}

.support-card-top,
.support-device,
.support-ticket-grid {
  position: relative;
  z-index: 1;
}

.support-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.support-card-top span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.9px;
  text-transform: uppercase;
}

.support-card-top strong {
  min-width: 58px;
  min-height: 34px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: #071827;
  background: #9ee8cf;
  font-size: 16px;
  font-weight: 800;
}

.support-device {
  height: 230px;
  display: grid;
  place-items: center;
  overflow: hidden;
  margin-bottom: 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: #0b2036;
}

.support-device::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 13, 24, 0.04), rgba(3, 13, 24, 0.54)),
    radial-gradient(circle at 50% 48%, transparent 0 42%, rgba(255, 255, 255, 0.08) 74%);
  pointer-events: none;
}

.support-device img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
}

.support-signal {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 13px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(7, 24, 39, 0.78);
  font-size: 11px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.support-signal::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #9ee8cf;
  box-shadow: 0 0 0 6px rgba(158, 232, 207, 0.18);
}

.support-ticket-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.support-ticket-grid div {
  min-height: 78px;
  padding: 15px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
}

.support-ticket-grid span {
  display: block;
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.support-ticket-grid strong {
  display: block;
  color: var(--white);
  font-size: 13px;
  line-height: 1.25;
  font-weight: 800;
}

.support-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.support-feature {
  min-height: 230px;
  padding: 24px 22px 22px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.13);
}

.support-feature-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 14px;
  color: #9ee8cf;
  background: rgba(158, 232, 207, 0.12);
}

.support-feature-icon svg {
  width: 25px;
  height: 25px;
  stroke-width: 2;
}

.support-feature h2,
.support-feature h3 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: 17px;
  line-height: 1.25;
  font-weight: 800;
}

.support-feature p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12.5px;
  line-height: 1.7;
  font-weight: 500;
}

.support-flow {
  margin-top: 18px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.07);
}

.support-flow-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.support-flow-head span {
  color: #cde8fb;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.support-flow-head strong {
  color: var(--white);
  font-size: 15px;
  font-weight: 800;
  text-align: right;
}

.support-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.support-steps article {
  min-height: 154px;
  padding: 18px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.support-steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  min-height: 25px;
  margin-bottom: 12px;
  border-radius: 999px;
  color: #071827;
  background: #cde8fb;
  font-size: 11px;
  font-weight: 800;
}

.support-steps h2,
.support-steps h3 {
  margin: 0 0 7px;
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
}

.support-steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11.5px;
  line-height: 1.55;
  font-weight: 500;
}

.support-hub {
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 18%, rgba(20, 89, 152, 0.11), transparent 260px),
    radial-gradient(circle at 90% 14%, rgba(233, 79, 141, 0.08), transparent 260px),
    linear-gradient(180deg, #ffffff 0%, #f5f9fd 100%);
}

.support-hub::before {
  background: linear-gradient(115deg, transparent 0 55%, rgba(20, 89, 152, 0.055) 55% 66%, transparent 66%);
}

.support-hub::after {
  background: rgba(20, 89, 152, 0.08);
  filter: blur(18px);
}

.support-kicker {
  border-color: #dce8f3;
  color: #145998;
  background: #eaf4fb;
}

.support-copy h1,
.support-copy h2 {
  color: #071827;
}

.support-copy > p:not(.support-kicker) {
  color: #5c6b79;
}

.support-primary {
  color: var(--white);
  background: #145998;
  box-shadow: 0 18px 34px rgba(20, 89, 152, 0.18);
}

.support-secondary {
  border-color: #c9d9e8;
  color: #145998;
  background: rgba(255, 255, 255, 0.72);
}

.support-command-card {
  border-color: #dbe6ef;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 251, 254, 0.96)),
    #ffffff;
  box-shadow: 0 24px 58px rgba(16, 31, 49, 0.12);
  backdrop-filter: none;
}

.support-command-card::before {
  background: linear-gradient(135deg, rgba(20, 89, 152, 0.09), transparent 34%);
}

.support-card-top span {
  color: #607080;
}

.support-card-top strong {
  color: #0f4172;
  background: #e7f1fa;
}

.support-device {
  border-color: #dce8f3;
  background: #edf5fb;
}

.support-device::after {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 50%, rgba(15, 65, 114, 0.14)),
    radial-gradient(circle at 50% 48%, transparent 0 42%, rgba(255, 255, 255, 0.2) 74%);
}

.support-signal {
  color: #0f4172;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 26px rgba(16, 31, 49, 0.12);
}

.support-signal::before {
  background: #128568;
  box-shadow: 0 0 0 6px rgba(18, 133, 104, 0.14);
}

.support-ticket-grid div {
  border-color: #dce8f3;
  background: #ffffff;
}

.support-ticket-grid span {
  color: #8a98a7;
}

.support-ticket-grid strong {
  color: #142235;
}

.support-feature {
  border-color: #dfe8f1;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(16, 31, 49, 0.07);
}

.support-feature-icon {
  color: #145998;
  background: #e7f1fa;
}

.support-feature h2,
.support-feature h3 {
  color: #101f31;
}

.support-feature p {
  color: #607080;
}

.support-flow {
  border-color: #dfe8f1;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 34px rgba(16, 31, 49, 0.06);
}

.support-flow-head span {
  color: #145998;
}

.support-flow-head strong {
  color: #142235;
}

.support-steps article {
  background: #f7fbfe;
}

.support-steps span {
  color: var(--white);
  background: #145998;
}

.support-steps h2,
.support-steps h3 {
  color: #101f31;
}

.support-steps p {
  color: #607080;
}

.maintenance-plans {
  position: relative;
  overflow: hidden;
  scroll-margin-top: var(--navbar-height);
  padding: 70px 0 58px;
  background:
    radial-gradient(circle at 14% 18%, rgba(233, 79, 141, 0.1), transparent 260px),
    radial-gradient(circle at 94% 8%, rgba(20, 89, 152, 0.14), transparent 280px),
    linear-gradient(180deg, #f8fbfe 0%, #eef6fb 100%);
}

.maintenance-plans::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: #dfe8f1;
}

.maintenance-plans .container {
  position: relative;
  z-index: 1;
  max-width: 1080px;
}

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

.maintenance-intro h1,
.maintenance-intro h2 {
  max-width: 780px;
  margin: 0 0 16px;
  color: #101f31;
  font-size: 40px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.7px;
}

.maintenance-intro > p:not(.section-kicker) {
  max-width: 760px;
  margin: 0;
  color: #5c6b79;
  font-size: 14px;
  line-height: 1.75;
  font-weight: 500;
}

.maintenance-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 760px;
  margin-top: 24px;
}

.maintenance-highlights span {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid #dce6ef;
  border-radius: 14px;
  color: #0f4172;
  background: rgba(255, 255, 255, 0.72);
  font-size: 11.5px;
  font-weight: 800;
}

.maintenance-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.maintenance-card {
  position: relative;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 24px 20px 22px;
  border: 1px solid #dbe6ef;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 34px rgba(16, 31, 49, 0.08);
}

.maintenance-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: #1b6bb4;
}

.maintenance-card.featured {
  transform: translateY(-14px);
  border-color: rgba(20, 89, 152, 0.28);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.88)),
    #ffffff;
  box-shadow: 0 28px 58px rgba(20, 89, 152, 0.18);
}

.maintenance-card.featured::before {
  background: linear-gradient(90deg, var(--pink), #1b6bb4);
}

.maintenance-card.plan-premium::before {
  background: linear-gradient(90deg, #d56800, #f0a040);
}

.plan-label {
  align-self: flex-start;
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  border-radius: 999px;
  color: #0f4172;
  background: #e7f1fa;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.maintenance-card.featured .plan-label {
  color: #9b2656;
  background: #fde9f2;
}

.maintenance-card.plan-premium .plan-label {
  color: #a64c00;
  background: #fff0df;
}

.maintenance-card h2,
.maintenance-card h3 {
  margin: 16px 0 10px;
  color: #101f31;
  font-size: 20px;
  line-height: 1.15;
  font-weight: 800;
}

.maintenance-card p {
  margin: 0 0 18px;
  color: #607080;
  font-size: 12px;
  line-height: 1.6;
  font-weight: 500;
}

.maintenance-card ul {
  display: grid;
  gap: 12px;
  margin: auto 0 0;
  padding: 18px 0 0;
  border-top: 1px solid #dfe8f1;
  list-style: none;
}

.maintenance-card li {
  position: relative;
  padding-left: 22px;
  color: #21394f;
  font-size: 11.5px;
  line-height: 1.35;
  font-weight: 800;
}

.maintenance-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 11px;
  height: 6px;
  border-left: 2px solid #128568;
  border-bottom: 2px solid #128568;
  transform: rotate(-45deg);
}

.maintenance-card .plan-feature-list {
  gap: 9px;
  padding-top: 16px;
}

.maintenance-card .plan-feature {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 0 9px 0;
  border-bottom: 1px solid #edf2f7;
  color: #21394f;
}

.maintenance-card .plan-feature:last-child {
  border-bottom: 0;
}

.maintenance-card .plan-feature::before {
  display: none;
}

.plan-feature span {
  min-width: 0;
  color: #526577;
  font-size: 11.5px;
  line-height: 1.35;
  font-weight: 700;
}

.plan-feature strong {
  flex: 0 0 auto;
  max-width: 118px;
  padding: 5px 8px;
  border-radius: 999px;
  color: #0f4172;
  background: #e7f1fa;
  font-size: 10px;
  line-height: 1.2;
  font-weight: 800;
  text-align: center;
}

.plan-feature.is-included strong {
  color: #0d6b51;
  background: #dff8ef;
}

.plan-feature.is-excluded strong {
  color: #b82037;
  background: #fde8ec;
}

.plan-premium .plan-feature.has-value strong {
  color: #a64c00;
  background: #fff0df;
}

.maintenance-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 28px;
  padding: 26px 28px;
  border-radius: 24px;
  color: var(--white);
  background:
    radial-gradient(circle at 86% 28%, rgba(233, 79, 141, 0.25), transparent 190px),
    linear-gradient(135deg, #0f4172 0%, #145998 100%);
  box-shadow: 0 20px 44px rgba(20, 89, 152, 0.18);
}

.maintenance-cta span {
  display: block;
  margin-bottom: 7px;
  color: #cde8fb;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.9px;
  text-transform: uppercase;
}

.maintenance-cta h2,
.maintenance-cta h3 {
  margin: 0;
  color: var(--white);
  font-size: 22px;
  line-height: 1.22;
  font-weight: 800;
}

.maintenance-cta a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 0 20px;
  border-radius: 12px;
  color: #0f4172;
  background: var(--white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.policy-oneview-page {
  background: #eef6fb;
}

.policy-oneview {
  min-height: calc(100svh - var(--topbar-height) - var(--navbar-height));
  overflow: hidden;
  padding: 18px 0;
  background:
    radial-gradient(circle at 12% 12%, rgba(233, 79, 141, 0.1), transparent 230px),
    radial-gradient(circle at 88% 8%, rgba(20, 89, 152, 0.15), transparent 260px),
    linear-gradient(180deg, #f8fbfe 0%, #eef6fb 100%);
}

.policy-oneview .container {
  max-width: 1120px;
  min-height: calc(100svh - var(--topbar-height) - var(--navbar-height) - 36px);
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 12px;
}

.policy-oneview-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.policy-oneview-head h1 {
  max-width: 660px;
  margin: 0;
  color: #101f31;
  font-size: 34px;
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -0.7px;
}

.policy-oneview-head p:not(.section-kicker) {
  max-width: 360px;
  margin: 0 0 2px;
  color: #5c6b79;
  font-size: 12.5px;
  line-height: 1.55;
  font-weight: 600;
}

.policy-matrix {
  align-self: stretch;
  display: grid;
  grid-template-rows: 68px repeat(9, minmax(30px, 1fr));
  overflow: hidden;
  border: 1px solid #dbe6ef;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 40px rgba(16, 31, 49, 0.1);
}

.policy-row {
  display: grid;
  grid-template-columns: minmax(210px, 1.2fr) repeat(3, minmax(120px, 0.8fr));
  min-height: 36px;
  border-bottom: 1px solid #edf2f7;
}

.policy-row:last-child {
  border-bottom: 0;
}

.policy-row > div,
.policy-row > span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px 10px;
  border-right: 1px solid #edf2f7;
  color: #16314a;
  font-size: 11.5px;
  line-height: 1.2;
  font-weight: 800;
  text-align: center;
}

.policy-row > div:first-child {
  justify-content: flex-start;
  color: #0f2942;
  background: rgba(248, 251, 254, 0.78);
  text-align: left;
}

.policy-row > span:last-child,
.policy-row > div:last-child {
  border-right: 0;
}

.policy-row-head {
  min-height: 68px;
  border-bottom: 0;
}

.policy-row-head > div {
  color: var(--white);
  background: #071827;
}

.policy-service-title {
  font-size: 13px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.policy-plan-head {
  flex-direction: column;
  gap: 5px;
}

.policy-plan-head strong {
  display: block;
  color: var(--white);
  font-size: 16px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.policy-plan-head span {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 10px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.16);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.policy-plan-head.basic {
  background: #405263;
}

.policy-plan-head.select {
  background: #145998;
}

.policy-plan-head.premium {
  background: #c96500;
}

.policy-yes,
.policy-no,
.premium-value {
  position: relative;
}

.policy-yes {
  color: #0d6b51 !important;
  background: rgba(223, 248, 239, 0.5);
}

.policy-no {
  color: #b82037 !important;
  background: rgba(253, 232, 236, 0.44);
}

.premium-value {
  color: #a64c00 !important;
  background: rgba(255, 240, 223, 0.62);
}

.policy-oneview-contact {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 10px 16px 10px 20px;
  border-radius: 18px;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 20%, rgba(233, 79, 141, 0.24), transparent 160px),
    linear-gradient(135deg, #0f4172 0%, #145998 100%);
  box-shadow: 0 18px 36px rgba(20, 89, 152, 0.16);
}

.policy-oneview-contact span {
  color: rgba(255, 255, 255, 0.88);
  font-size: 12.5px;
  line-height: 1.35;
  font-weight: 700;
}

.policy-oneview-contact a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 0 14px;
  border-radius: 11px;
  color: #0f4172;
  background: var(--white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

@media (max-height: 760px) and (min-width: 721px) {
  .policy-oneview {
    padding: 12px 0;
  }

  .policy-oneview .container {
    min-height: calc(100svh - var(--topbar-height) - var(--navbar-height) - 24px);
    gap: 9px;
  }

  .policy-oneview-head h1 {
    font-size: 30px;
  }

  .policy-oneview-head .section-kicker {
    min-height: 20px;
    margin-bottom: 8px;
  }

  .policy-oneview-head p:not(.section-kicker) {
    font-size: 12px;
  }

  .policy-row {
    min-height: 32px;
  }

  .policy-row-head {
    min-height: 58px;
  }

  .policy-matrix {
    grid-template-rows: 58px repeat(9, minmax(28px, 1fr));
  }

  .policy-row > div,
  .policy-row > span {
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 11px;
  }

  .policy-oneview-contact {
    min-height: 44px;
  }
}

.policy-corporate {
  display: flex;
  align-items: center;
  padding: 16px 0;
  background:
    radial-gradient(circle at 8% 10%, rgba(20, 89, 152, 0.14), transparent 250px),
    radial-gradient(circle at 92% 8%, rgba(233, 79, 141, 0.08), transparent 260px),
    linear-gradient(180deg, #f4f8fb 0%, #eaf2f8 100%);
}

.policy-corporate .container {
  max-width: 1120px;
  min-height: auto;
  display: block;
}

.policy-board {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(20, 89, 152, 0.14);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.94)),
    #ffffff;
  box-shadow: 0 28px 70px rgba(16, 31, 49, 0.12);
}

.policy-board::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 6px;
  background: linear-gradient(90deg, #145998 0%, #1b6bb4 46%, #c96500 100%);
}

.policy-board-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 14px;
  padding: 8px 2px 0;
}

.policy-overline {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  margin-bottom: 8px;
  padding: 0 12px;
  border-radius: 999px;
  color: #145998;
  background: #e7f1fa;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.9px;
  text-transform: uppercase;
}

.policy-board-top h1 {
  max-width: 600px;
  margin: 0;
  color: #071827;
  font-size: 34px;
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.8px;
}

.policy-board-top p {
  max-width: 680px;
  margin: 8px 0 0;
  color: #536678;
  font-size: 12.5px;
  line-height: 1.55;
  font-weight: 600;
}

.policy-board-top aside {
  width: 286px;
  flex: 0 0 auto;
  padding: 16px 18px;
  border: 1px solid #dbe6ef;
  border-radius: 18px;
  background: #f7fbfe;
}

.policy-board-top aside strong {
  display: block;
  margin-bottom: 6px;
  color: #0f4172;
  font-size: 15px;
  font-weight: 800;
}

.policy-board-top aside span {
  display: block;
  color: #667789;
  font-size: 11.5px;
  line-height: 1.45;
  font-weight: 600;
}

.corporate-policy-table {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid #d9e5f0;
  border-radius: 20px;
  background: #ffffff;
}

.corporate-policy-head,
.corporate-policy-row {
  display: grid;
  grid-template-columns: minmax(250px, 1.28fr) repeat(3, minmax(120px, 0.82fr));
}

.corporate-policy-head {
  min-height: 62px;
  color: var(--white);
  background: #071827;
}

.corporate-policy-head > div,
.corporate-policy-row > div,
.corporate-policy-row > span {
  display: flex;
  align-items: center;
  padding: 0 16px;
  border-right: 1px solid #e5edf5;
}

.corporate-policy-head > div:last-child,
.corporate-policy-row > span:last-child {
  border-right: 0;
}

.corporate-service-title {
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.corporate-plan {
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  text-align: center;
}

.corporate-plan span {
  color: var(--white);
  font-size: 18px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.corporate-plan strong {
  min-height: 20px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.16);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.corporate-plan.basic {
  background: #34485c;
}

.corporate-plan.select {
  background: #145998;
}

.corporate-plan.premium {
  background: #c96500;
}

.corporate-policy-row {
  min-height: 36px;
  border-bottom: 1px solid #edf2f7;
}

.corporate-policy-row:last-child {
  border-bottom: 0;
}

.corporate-policy-row > div {
  gap: 10px;
  color: #142235;
  background: #f8fbfe;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 800;
}

.corporate-policy-row small {
  min-width: 24px;
  color: #8da1b5;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.corporate-policy-row > span {
  justify-content: center;
  color: #23384c;
  font-size: 11.5px;
  line-height: 1.2;
  font-weight: 800;
  text-align: center;
}

.corporate-policy-row > span:nth-child(3) {
  background: #f2f7fc;
}

.corporate-policy-row > span:nth-child(4) {
  background: #fff8f1;
}

.corporate-policy-row .included {
  color: #0b7357;
}

.corporate-policy-row .not-included {
  color: #a7b1bd;
}

.corporate-policy-row .premium-value {
  color: #a64c00 !important;
}

.policy-board-footer {
  position: relative;
  z-index: 1;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 14px;
  padding: 9px 10px 9px 18px;
  border-radius: 16px;
  color: var(--white);
  background: linear-gradient(135deg, #0f4172 0%, #145998 100%);
}

.policy-board-footer span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 700;
}

.policy-board-footer a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 0 14px;
  border-radius: 10px;
  color: #0f4172;
  background: var(--white);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.35px;
  text-transform: uppercase;
}

@media (max-height: 760px) and (min-width: 721px) {
  .policy-board {
    padding: 14px;
    border-radius: 22px;
  }

  .policy-board-top {
    margin-bottom: 10px;
  }

  .policy-board-top h1 {
    font-size: 29px;
  }

  .policy-overline {
    min-height: 20px;
    margin-bottom: 6px;
  }

  .policy-board-top p {
    margin-top: 6px;
    font-size: 11.5px;
  }

  .policy-board-top aside {
    padding: 12px 14px;
  }

  .corporate-policy-head {
    min-height: 54px;
  }

  .corporate-policy-row {
    min-height: 32px;
  }

  .corporate-policy-row > div,
  .corporate-policy-row > span {
    font-size: 10.8px;
  }

  .policy-board-footer {
    min-height: 42px;
    margin-top: 10px;
  }
}

.policy-premium-view {
  min-height: calc(100svh - var(--topbar-height) - var(--navbar-height));
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 16px 0;
  background:
    radial-gradient(circle at 8% 16%, rgba(20, 89, 152, 0.16), transparent 260px),
    radial-gradient(circle at 92% 12%, rgba(233, 79, 141, 0.08), transparent 280px),
    linear-gradient(180deg, #f5f9fd 0%, #eaf2f8 100%);
}

.policy-premium-view .container {
  max-width: 1120px;
}

.policy-proposal {
  min-height: calc(100svh - var(--topbar-height) - var(--navbar-height) - 32px);
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(20, 89, 152, 0.16);
  border-radius: 30px;
  background: #ffffff;
  box-shadow: 0 30px 80px rgba(16, 31, 49, 0.13);
}

.policy-proposal-intro {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 32px 28px 26px;
  color: var(--white);
  background:
    radial-gradient(circle at 30% 18%, rgba(255, 255, 255, 0.16), transparent 170px),
    linear-gradient(150deg, #061b2a 0%, #0f4172 58%, #145998 100%);
}

.policy-proposal-intro::before {
  content: "";
  position: absolute;
  inset: auto -72px -120px auto;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(233, 79, 141, 0.18);
}

.policy-proposal-intro::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 54%, rgba(255, 255, 255, 0.08) 54% 65%, transparent 65%),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: auto, 38px 38px, 38px 38px;
  pointer-events: none;
}

.policy-proposal-intro > * {
  position: relative;
  z-index: 1;
}

.policy-eyebrow {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  min-height: 26px;
  margin-bottom: 18px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #cde8fb;
  background: rgba(255, 255, 255, 0.08);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.9px;
  text-transform: uppercase;
}

.policy-proposal-intro h1 {
  max-width: 100%;
  margin: 0;
  color: var(--white);
  font-size: 38px;
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.8px;
}

.policy-proposal-intro p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  line-height: 1.65;
  font-weight: 500;
}

.policy-intro-tags {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
  margin-top: 24px;
}

.policy-intro-tags span {
  min-height: 37px;
  display: flex;
  align-items: center;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 13px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  font-size: 11.5px;
  font-weight: 800;
}

.policy-intro-note {
  margin-top: auto;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(3, 15, 28, 0.26);
}

.policy-intro-note strong {
  display: block;
  margin-bottom: 5px;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
}

.policy-intro-note span {
  display: block;
  color: rgba(255, 255, 255, 0.67);
  font-size: 11px;
  line-height: 1.45;
  font-weight: 500;
}

.policy-proposal-intro a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  border-radius: 12px;
  color: #0f4172;
  background: var(--white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.policy-comparison {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 14px;
  padding: 20px;
  background:
    radial-gradient(circle at 84% 0%, rgba(20, 89, 152, 0.08), transparent 220px),
    #ffffff;
}

.policy-plan-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.policy-plan-summary article {
  min-height: 82px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px;
  border: 1px solid #dfe8f1;
  border-radius: 18px;
  background: #f8fbfe;
}

.policy-plan-summary article span {
  color: #142235;
  font-size: 21px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.2px;
}

.policy-plan-summary article strong {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  min-height: 22px;
  margin-top: 9px;
  padding: 0 10px;
  border-radius: 999px;
  color: #0f4172;
  background: #e7f1fa;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.policy-plan-summary .select {
  border-color: rgba(20, 89, 152, 0.26);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 250, 254, 0.96)),
    #ffffff;
  box-shadow: 0 16px 34px rgba(20, 89, 152, 0.12);
}

.policy-plan-summary .premium {
  border-color: rgba(201, 101, 0, 0.24);
  background: #fff8f1;
}

.policy-plan-summary .premium strong {
  color: #a64c00;
  background: #fff0df;
}

.policy-coverage-grid {
  display: grid;
  grid-template-columns: minmax(230px, 1.32fr) repeat(3, minmax(110px, 0.86fr));
  overflow: hidden;
  border: 1px solid #dfe8f1;
  border-radius: 18px;
  background: #ffffff;
}

.policy-coverage-grid > div,
.policy-coverage-grid > span {
  min-height: 39px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border-right: 1px solid #edf2f7;
  border-bottom: 1px solid #edf2f7;
  color: #21394f;
  font-size: 11.5px;
  line-height: 1.2;
  font-weight: 800;
}

.policy-coverage-grid > div:nth-child(4n),
.policy-coverage-grid > span:nth-child(4n) {
  border-right: 0;
}

.policy-coverage-grid > div:nth-last-child(-n + 4),
.policy-coverage-grid > span:nth-last-child(-n + 4) {
  border-bottom: 0;
}

.policy-coverage-grid > div:nth-child(-n + 4) {
  min-height: 44px;
  color: var(--white);
  background: #071827;
  font-size: 11px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.policy-coverage-grid > div:nth-child(3) {
  background: #145998;
}

.policy-coverage-grid > div:nth-child(4) {
  background: #c96500;
}

.policy-coverage-grid .coverage-label {
  justify-content: flex-start;
  color: #142235;
  background: #f8fbfe;
}

.policy-coverage-grid > span {
  justify-content: center;
  text-align: center;
}

.policy-coverage-grid > span:nth-child(4n - 1) {
  background: #f4f9fd;
}

.policy-coverage-grid > span:nth-child(4n) {
  background: #fff9f3;
}

.policy-coverage-grid .yes {
  color: #0b7357;
}

.policy-coverage-grid .no {
  color: #95a2af;
}

.policy-coverage-grid .highlight {
  color: #a64c00;
}

@media (max-height: 760px) and (min-width: 721px) {
  .policy-premium-view {
    padding: 12px 0;
  }

  .policy-proposal {
    min-height: calc(100svh - var(--topbar-height) - var(--navbar-height) - 24px);
    grid-template-columns: 300px minmax(0, 1fr);
  }

  .policy-proposal-intro {
    padding: 26px 24px 22px;
  }

  .policy-proposal-intro h1 {
    font-size: 32px;
  }

  .policy-intro-tags {
    gap: 7px;
    margin-top: 18px;
  }

  .policy-intro-tags span {
    min-height: 32px;
  }

  .policy-plan-summary article {
    min-height: 70px;
    padding: 13px;
  }

  .policy-coverage-grid > div,
  .policy-coverage-grid > span {
    min-height: 34px;
    font-size: 10.8px;
  }

  .policy-coverage-grid > div:nth-child(-n + 4) {
    min-height: 38px;
  }
}

.compatibility {
  padding: 26px 0 44px;
  background: #f4f8fb;
}

.compatibility .container {
  max-width: 1040px;
  text-align: center;
}

.section-kicker.full {
  display: flex;
  width: 100%;
  max-width: 980px;
  margin: 0 auto 14px;
}

.compatibility h2 {
  margin: 0;
  color: #101f31;
  font-size: 32px;
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-strip {
  display: grid;
  grid-template-columns: repeat(7, minmax(130px, 1fr));
  margin: 38px 0 34px;
  overflow: hidden;
  border: 1px solid #e1e8f0;
  background: var(--white);
  box-shadow: 0 4px 14px rgba(16, 31, 49, 0.04);
}

.brand-strip article {
  min-height: 76px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 6px;
  padding: 0 22px;
  border-right: 1px solid #e8eef4;
}

.brand-strip article:last-child {
  border-right: 0;
}

.brand-strip strong {
  display: block;
  font-size: 22px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-strip span {
  color: #8a96a5;
  font-size: 10px;
  font-weight: 700;
  white-space: nowrap;
}

.honeywell {
  color: #d71920;
}

.dnp,
.citizen {
  color: #1462a7;
}

.tsc,
.zebra {
  color: #df2332;
}

.sato,
.datamax {
  color: #444b56;
}

.cta-panel {
  min-width: 0;
  min-height: 152px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 36px 40px;
  border-radius: 10px;
  color: var(--white);
  text-align: left;
  background:
    radial-gradient(circle at 88% 20%, rgba(255, 255, 255, 0.15) 0 120px, transparent 122px),
    radial-gradient(circle at 87% 54%, rgba(255, 255, 255, 0.1) 0 180px, transparent 182px),
    linear-gradient(135deg, #0b477d 0%, #1462a7 58%, #2f83df 100%);
  box-shadow: 0 16px 34px rgba(20, 98, 167, 0.18);
}

.cta-panel > * {
  min-width: 0;
}

.cta-panel h3 {
  margin: 0 0 9px;
  color: var(--white);
  font-size: 25px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: 0;
}

.cta-panel p {
  width: 100%;
  max-width: 440px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  line-height: 1.65;
  font-weight: 500;
}

.cta-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.cta-light,
.cta-whatsapp {
  min-width: 136px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 800;
}

.cta-light {
  color: #1462a7;
  background: var(--white);
}

.cta-whatsapp {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.advantages {
  padding: 22px 0 22px;
  color: var(--white);
  background: #124879;
}

.advantages .container {
  max-width: 1040px;
  text-align: center;
}

.section-kicker.dark {
  display: flex;
  width: 100%;
  margin: 0 auto 13px;
  color: #b5d9f1;
  background: rgba(255, 255, 255, 0.1);
}

.advantages h2 {
  margin: 0;
  color: var(--white);
  font-size: 28px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0;
}

.dark-copy {
  width: 520px;
  max-width: 100%;
  margin: 14px auto 34px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  line-height: 1.75;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.advantage-card {
  min-height: 132px;
  padding: 20px 18px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.08);
  text-align: left;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.advantage-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  margin-bottom: 13px;
  border-radius: 8px;
}

.advantage-icon svg {
  width: 19px;
  height: 19px;
  stroke-width: 2;
}

.icon-blue {
  color: #1c6dab;
  background: #d8eefb;
}

.icon-rose {
  color: #cf4d8d;
  background: #ffd7e8;
}

.icon-mint-adv {
  color: #0f8067;
  background: #c8f7e8;
}

.icon-gold {
  color: #9f711c;
  background: #ffe39b;
}

.icon-purple {
  color: #6d48b5;
  background: #eadbff;
}

.icon-cyan {
  color: #167c9b;
  background: #c8f2f5;
}

.advantage-card h3 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 13px;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: 0;
}

.advantage-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10.5px;
  line-height: 1.55;
  font-weight: 500;
}

.about {
  scroll-margin-top: var(--navbar-height);
  padding: 52px 0 48px;
  background: #ffffff;
  border-top: 1px solid #e4edf7;
}

.about .container {
  max-width: 1040px;
}

.about-page {
  min-height: calc(100vh - var(--topbar-height) - var(--navbar-height));
}

.about-hero {
  max-width: 820px;
  margin-bottom: 34px;
}

.about-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  margin: 0 0 16px;
  padding: 0 14px;
  border: 1px solid #dbe7f2;
  border-radius: 999px;
  color: var(--blue);
  background: #ffffff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.about-hero h1,
.about-hero h2 {
  width: 780px;
  max-width: 100%;
  margin: 0;
  color: #101f31;
  font-size: 40px;
  line-height: 1.12;
  font-weight: 800;
}

.about-hero p {
  width: 720px;
  max-width: 100%;
  margin: 20px 0 0;
  color: #5c6b79;
  font-size: 15px;
  line-height: 1.75;
  font-weight: 500;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
  align-items: stretch;
}

.about-story,
.about-principles article,
.about-metrics {
  border: 1px solid #dfe8f1;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 32px rgba(16, 31, 49, 0.06);
}

.about-story {
  padding: 28px 30px;
  border-radius: 14px;
}

.about-story h3 {
  margin: 0 0 22px;
  color: #101f31;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 800;
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline div {
  position: relative;
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid #e7eef5;
}

.timeline div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.timeline span {
  color: var(--blue);
  font-size: 24px;
  line-height: 1;
  font-weight: 800;
}

.timeline p {
  margin: 0;
  color: #5f6e7b;
  font-size: 13px;
  line-height: 1.65;
  font-weight: 500;
}

.about-principles {
  display: grid;
  gap: 18px;
}

.about-principles article {
  padding: 26px 26px 24px;
  border-radius: 14px;
}

.about-principles span {
  display: block;
  margin-bottom: 12px;
  color: #101f31;
  font-size: 22px;
  line-height: 1.1;
  font-weight: 800;
}

.about-principles p {
  margin: 0;
  color: #5f6e7b;
  font-size: 13px;
  line-height: 1.7;
  font-weight: 500;
}

.about-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 22px;
  overflow: hidden;
  border-radius: 14px;
}

.about-metrics div {
  min-height: 92px;
  display: grid;
  align-content: center;
  gap: 7px;
  padding: 20px 22px;
  border-right: 1px solid #e7eef5;
}

.about-metrics div:last-child {
  border-right: 0;
}

.about-metrics strong {
  color: #101f31;
  font-size: 22px;
  line-height: 1;
  font-weight: 800;
}

.about-metrics span {
  color: #6a7886;
  font-size: 11px;
  line-height: 1.35;
  font-weight: 700;
}

.history-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 28px;
  align-items: stretch;
}

.history-page .about-story {
  animation: pageRise 0.7s ease both;
}

.history-visual {
  position: relative;
  min-height: 520px;
}

.parallax-card {
  position: absolute;
  overflow: hidden;
  border: 10px solid var(--white);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 24px 44px rgba(16, 31, 49, 0.16);
  animation: parallaxFloat 7s ease-in-out infinite;
}

.parallax-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.08);
}

.parallax-card-one {
  top: 18px;
  right: 0;
  width: 360px;
  height: 250px;
}

.parallax-card-two {
  left: 0;
  bottom: 22px;
  width: 360px;
  height: 230px;
  animation-delay: -2.4s;
}

.history-redesign {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 26px;
  align-items: stretch;
}

.history-lead {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  padding: 34px 30px;
  border-radius: 18px;
  color: var(--white);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.08), transparent 42%),
    linear-gradient(135deg, #081b2d 0%, #123e68 100%);
  box-shadow: 0 24px 48px rgba(16, 31, 49, 0.16);
  animation: pageRise 0.7s ease both;
}

.history-lead::after {
  content: "";
  position: absolute;
  right: -110px;
  bottom: -120px;
  width: 310px;
  height: 310px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.history-lead > span {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 0 13px;
  border-radius: 999px;
  color: #cde8fb;
  background: rgba(255, 255, 255, 0.12);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
}

.history-lead h2 {
  position: relative;
  z-index: 2;
  margin: 22px 0 16px;
  color: var(--white);
  font-size: 38px;
  line-height: 1.08;
  font-weight: 800;
}

.history-lead p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.7;
  font-weight: 500;
}

.history-machine {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 30px;
  height: 215px;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 42px rgba(0, 0, 0, 0.18);
  animation: parallaxFloat 7s ease-in-out infinite;
}

.history-machine img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.05);
}

.history-chapters {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.history-chapters article {
  position: relative;
  min-height: 170px;
  padding: 22px 22px 20px;
  overflow: hidden;
  border: 1px solid #dfe8f1;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 30px rgba(16, 31, 49, 0.06);
  animation: pageRise 0.65s ease both;
}

.history-chapters article:nth-child(2) {
  animation-delay: 0.06s;
}

.history-chapters article:nth-child(3) {
  animation-delay: 0.12s;
}

.history-chapters article:nth-child(4) {
  animation-delay: 0.18s;
}

.history-chapters article:nth-child(5) {
  grid-column: 1 / -1;
  min-height: 145px;
  animation-delay: 0.24s;
}

.history-chapters article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--blue);
}

.history-chapters strong {
  display: block;
  margin-bottom: 18px;
  color: rgba(20, 89, 152, 0.14);
  font-size: 54px;
  line-height: 0.78;
  font-weight: 800;
}

.history-chapters h3 {
  margin: 0 0 9px;
  color: #101f31;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 800;
}

.history-chapters p {
  margin: 0;
  color: #63717e;
  font-size: 12px;
  line-height: 1.6;
  font-weight: 500;
}

.history-minimal {
  padding: 34px 0 0;
  border-top: 1px solid #dfe8f1;
}

.history-minimal-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.history-minimal-head span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.history-minimal-head h2 {
  margin: 0;
  color: #101f31;
  font-size: 30px;
  line-height: 1.1;
  font-weight: 800;
}

.history-line {
  position: relative;
  display: grid;
  gap: 0;
}

.history-line::before {
  content: "";
  position: absolute;
  left: 108px;
  top: 12px;
  bottom: 12px;
  width: 1px;
  background: #d8e4ef;
}

.history-line article {
  position: relative;
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 30px;
  padding: 0 0 28px;
  animation: pageRise 0.55s ease both;
}

.history-line article:last-child {
  padding-bottom: 0;
}

.history-line article::before {
  content: "";
  position: absolute;
  left: 103px;
  top: 7px;
  width: 11px;
  height: 11px;
  border: 3px solid var(--blue);
  border-radius: 50%;
  background: var(--white);
  z-index: 2;
}

.history-line time {
  color: #101f31;
  font-size: 28px;
  line-height: 1;
  font-weight: 800;
}

.history-line h3 {
  margin: 0 0 7px;
  color: #101f31;
  font-size: 17px;
  line-height: 1.25;
  font-weight: 800;
}

.history-line p {
  width: 620px;
  max-width: 100%;
  margin: 0;
  color: #66737f;
  font-size: 13px;
  line-height: 1.65;
  font-weight: 500;
}

.history-corporate {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(330px, 0.74fr);
  gap: 46px;
  align-items: start;
  padding: 34px 0 0;
  border-top: 1px solid #dfe8f1;
}

.history-copy {
  padding-right: 10px;
}

.history-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e4edf4;
}

.history-label span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.history-label strong {
  color: #72808d;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.history-copy h2 {
  width: 660px;
  max-width: 100%;
  margin: 0 0 18px;
  color: #101f31;
  font-size: 30px;
  line-height: 1.18;
  font-weight: 800;
}

.history-copy p {
  margin: 0 0 14px;
  color: #243246;
  font-size: 15px;
  line-height: 1.78;
  font-weight: 500;
  text-align: left;
}

.history-years {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 26px;
  overflow: hidden;
  border: 1px solid #dfe8f1;
  border-radius: 12px;
  background: #dfe8f1;
}

.history-years span {
  min-height: 72px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 14px;
  color: #647382;
  background: #ffffff;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 700;
}

.history-years strong {
  display: block;
  color: #101f31;
  font-size: 19px;
  line-height: 1;
  font-weight: 800;
}

.history-media {
  display: grid;
  gap: 20px;
  padding-top: 3px;
}

.history-media figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid #dfe8f1;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 18px 34px rgba(16, 31, 49, 0.08);
}

.history-media img {
  width: 100%;
  height: 210px;
  display: block;
  object-fit: cover;
}

.history-media figcaption {
  padding: 13px 16px 15px;
  color: #536473;
  font-size: 11px;
  line-height: 1.45;
  font-weight: 700;
}

.identity-page .container {
  max-width: 1120px;
}

.identity-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 42px;
  align-items: end;
  margin-bottom: 46px;
  padding-bottom: 34px;
  border-bottom: 1px solid #dfe8f1;
}

.identity-copy {
  animation: pageRise 0.7s ease both;
}

.identity-copy h1 {
  width: 820px;
  max-width: 100%;
  margin: 0;
  color: #101f31;
  font-size: 48px;
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -0.8px;
}

.identity-copy p {
  width: 720px;
  max-width: 100%;
  margin: 22px 0 0;
  color: #566675;
  font-size: 15px;
  line-height: 1.78;
  font-weight: 500;
}

.identity-badge {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  padding: 28px 26px;
  border: 1px solid #dfe8f1;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(20, 89, 152, 0.06), transparent 55%),
    #ffffff;
  box-shadow: 0 18px 42px rgba(16, 31, 49, 0.08);
  animation: pageRise 0.7s ease 0.08s both;
}

.identity-badge::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 5px;
  background: var(--blue);
}

.identity-badge span,
.identity-badge strong {
  display: block;
  color: #101f31;
  line-height: 1;
}

.identity-badge span {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.identity-badge strong {
  margin-top: 8px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.2px;
}

.identity-badge p {
  margin: 28px 0 0;
  color: #627281;
  font-size: 12px;
  line-height: 1.65;
  font-weight: 600;
}

.identity-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 54px;
  align-items: center;
}

.identity-narrative {
  animation: pageRise 0.7s ease 0.12s both;
}

.identity-section-label {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.identity-narrative h2 {
  width: 660px;
  max-width: 100%;
  margin: 0 0 20px;
  color: #101f31;
  font-size: 34px;
  line-height: 1.14;
  font-weight: 800;
  letter-spacing: -0.3px;
}

.identity-narrative p {
  margin: 0 0 15px;
  color: #344357;
  font-size: 15px;
  line-height: 1.82;
  font-weight: 500;
}

.identity-milestones {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.identity-milestones div {
  min-height: 112px;
  padding: 18px 16px;
  border: 1px solid #dfe8f1;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(16, 31, 49, 0.05);
}

.identity-milestones time {
  display: block;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 26px;
  line-height: 1;
  font-weight: 800;
}

.identity-milestones span {
  display: block;
  color: #5f6f7e;
  font-size: 11px;
  line-height: 1.45;
  font-weight: 700;
}

.identity-visual {
  position: relative;
  min-height: 530px;
  animation: pageRise 0.7s ease 0.18s both;
}

.identity-photo {
  position: absolute;
  overflow: hidden;
  border: 10px solid #ffffff;
  border-radius: 20px;
  background: #f4f8fb;
  box-shadow: 0 24px 48px rgba(16, 31, 49, 0.14);
}

.identity-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.04);
}

.identity-photo-main {
  top: 0;
  right: 0;
  width: 410px;
  height: 300px;
  animation: identityFloat 7s ease-in-out infinite;
}

.identity-photo-secondary {
  left: 0;
  top: 255px;
  width: 300px;
  height: 210px;
  animation: identityFloat 7s ease-in-out -2.2s infinite;
}

.identity-note {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 250px;
  padding: 20px 20px 18px;
  border: 1px solid #dfe8f1;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 38px rgba(16, 31, 49, 0.1);
}

.identity-note strong,
.identity-note span {
  display: block;
}

.identity-note strong {
  margin-bottom: 8px;
  color: #101f31;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 800;
}

.identity-note span {
  color: #627281;
  font-size: 11px;
  line-height: 1.5;
  font-weight: 600;
}

.story-page .container {
  max-width: 1060px;
}

.story-heading {
  width: 760px;
  max-width: 100%;
  margin-bottom: 30px;
}

.story-heading h1 {
  margin: 0;
  color: #101f31;
  font-size: 42px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.story-board {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 40px;
  align-items: start;
  padding: 30px;
  border: 1px solid #dfe8f1;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 22px 46px rgba(16, 31, 49, 0.08);
}

.story-content {
  animation: pageRise 0.65s ease both;
}

.story-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid #e4edf4;
}

.story-title span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.story-title strong {
  color: #71808f;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.story-content p {
  margin: 0 0 12px;
  color: #111f31;
  font-size: 15px;
  line-height: 1.62;
  font-weight: 500;
}

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

.story-media {
  display: grid;
  gap: 20px;
  animation: pageRise 0.65s ease 0.12s both;
}

.story-image-card {
  position: relative;
  overflow: hidden;
  padding-top: 48px;
  border: 1px solid #dfe8f1;
  border-radius: 16px;
  background: #f8fbfe;
  box-shadow: 0 16px 30px rgba(16, 31, 49, 0.08);
}

.story-image-card::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 18px;
  height: 1px;
  background: #dfe8f1;
}

.story-image-card span {
  position: absolute;
  left: 18px;
  top: 14px;
  color: #5f7080;
  background: #f8fbfe;
  padding-right: 12px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.story-image-card img {
  width: 100%;
  height: 178px;
  display: block;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.story-image-card:hover img {
  transform: scale(1.04);
}

.story-image-card-offset {
  margin-left: 36px;
}

@keyframes identityFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -12px, 0);
  }
}

.principle-layout {
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 44px;
  align-items: center;
}

.principle-layout.reverse {
  grid-template-columns: 420px minmax(0, 1fr);
}

.principle-copy {
  animation: pageRise 0.7s ease both;
}

.principle-copy h1 {
  margin: 0;
  color: #101f31;
  font-size: 44px;
  line-height: 1.1;
  font-weight: 800;
}

.principle-copy > p {
  width: 650px;
  max-width: 100%;
  margin: 22px 0 0;
  color: #5c6b79;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 500;
}

.principle-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.principle-points span,
.vision-pillars article {
  border: 1px solid #dfe8f1;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 28px rgba(16, 31, 49, 0.06);
}

.principle-points span {
  min-height: 76px;
  display: flex;
  align-items: center;
  padding: 18px;
  color: #223143;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 800;
}

.parallax-panel {
  height: 440px;
  overflow: hidden;
  border: 12px solid var(--white);
  border-radius: 18px;
  background: #edf4f9;
  box-shadow: 0 28px 54px rgba(16, 31, 49, 0.16);
  animation: parallaxFloat 7s ease-in-out infinite;
}

.parallax-panel img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.08);
}

.vision-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.vision-pillars article {
  min-height: 128px;
  padding: 20px 18px;
}

.vision-pillars strong {
  display: block;
  margin-bottom: 10px;
  color: #101f31;
  font-size: 18px;
  line-height: 1.1;
  font-weight: 800;
}

.vision-pillars span {
  display: block;
  color: #66737f;
  font-size: 12px;
  line-height: 1.55;
  font-weight: 600;
}

@keyframes pageRise {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes parallaxFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -18px, 0);
  }
}

.footer {
  padding: 32px 0 42px;
  color: #506579;
  background:
    linear-gradient(135deg, #eef6fb 0%, #dcecf6 54%, #cfe3f0 100%);
}

.footer .container {
  max-width: 1180px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(190px, 1.05fr) minmax(118px, 0.72fr) minmax(150px, 0.82fr) minmax(230px, 1.12fr) minmax(300px, 1.55fr);
  gap: 24px;
  align-items: start;
}

.footer-grid > * {
  min-width: 0;
}

.footer-logo {
  width: 190px;
  height: auto;
  display: block;
  margin: 0 0 14px;
  filter:
    drop-shadow(0 0 1px rgba(15, 65, 114, 0.55))
    drop-shadow(0 10px 18px rgba(15, 65, 114, 0.14));
}

.footer p {
  width: 100%;
  max-width: 330px;
  margin: 0 0 21px;
  color: #506579;
  font-size: 11px;
  line-height: 1.65;
}

.footer-contact {
  display: grid;
  gap: 13px;
  max-width: 360px;
}

.footer-contact p {
  margin: 0;
}

.footer-contact-panel {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.footer-location-row {
  display: contents;
}

.footer-contact strong,
.footer-contact span,
.footer-contact a {
  display: block;
}

.footer-contact strong {
  margin-bottom: 4px;
  color: #145998;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.footer-contact span,
.footer-contact a {
  margin: 0;
  color: #506579;
  font-size: 11.5px;
  line-height: 1.48;
  font-weight: 600;
}

.footer-contact p {
  position: relative;
  padding-left: 14px;
}

.footer-contact p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 3px;
  height: calc(100% - 6px);
  border-radius: 999px;
  background: rgba(20, 89, 152, 0.24);
}

.footer h3 {
  margin: 0 0 14px;
  color: #145998;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.footer a {
  display: block;
  margin-bottom: 9px;
  color: #506579;
  font-size: 11px;
  font-weight: 500;
  overflow-wrap: anywhere;
}

.footer a:hover,
.footer a:focus-visible {
  color: #145998;
  outline: none;
}

.footer-map {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  align-items: stretch;
  padding: 16px;
  border: 1px solid rgba(20, 89, 152, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 38px rgba(15, 65, 114, 0.09);
}

.footer-map-copy {
  display: block;
}

.footer-map-copy h3 {
  margin-bottom: 7px;
}

.footer-map-copy p {
  max-width: 310px;
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
}

.footer-map-frame {
  min-height: 170px;
  overflow: hidden;
  border: 1px solid rgba(20, 89, 152, 0.16);
  border-radius: 18px;
  background: #ffffff;
}

.footer-map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 170px;
  border: 0;
}

.contact-page {
  background: #ffffff;
}

.contact-hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - var(--topbar-height) - var(--navbar-height));
  padding: 64px 0 76px;
  background:
    linear-gradient(115deg, rgba(20, 89, 152, 0.08) 0 20%, transparent 20% 100%),
    linear-gradient(180deg, #ffffff 0%, #f7fbfe 54%, #ffffff 100%);
}

.contact-hero::before {
  content: "";
  position: absolute;
  right: -12vw;
  top: 0;
  width: 42vw;
  height: 100%;
  background: linear-gradient(105deg, transparent 0 28%, rgba(20, 89, 152, 0.08) 28% 62%, transparent 62%);
  pointer-events: none;
}

.contact-hero::after {
  content: "";
  position: absolute;
  inset: 0 5% 24px;
  border: 1px solid rgba(20, 89, 152, 0.08);
  border-top: 0;
  border-radius: 0 0 38px 38px;
  pointer-events: none;
}

.contact-layout {
  position: relative;
  z-index: 2;
  max-width: 1080px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.08fr);
  gap: clamp(36px, 5vw, 62px);
  align-items: start;
}

.contact-copy {
  padding-top: 18px;
}

.contact-page-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: #145998;
  font-size: 11px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.contact-page-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #145998;
}

.contact-copy h1 {
  margin: 0 0 18px;
  color: #101f31;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: 0;
}

.contact-copy > p {
  max-width: 520px;
  margin: 0;
  color: #596978;
  font-size: 15px;
  line-height: 1.75;
  font-weight: 500;
}

.contact-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 32px;
}

.contact-details article {
  min-width: 0;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  border: 1px solid rgba(20, 89, 152, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 38px rgba(16, 31, 49, 0.07);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-details article:hover {
  transform: translateY(-2px);
  border-color: rgba(20, 89, 152, 0.22);
  box-shadow: 0 20px 48px rgba(16, 31, 49, 0.1);
}

.contact-details article > div {
  min-width: 0;
}

.contact-detail-icon {
  width: 62px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  justify-self: center;
  border: 0;
  border-radius: 18px;
  color: #ffffff;
  background: linear-gradient(135deg, #145998 0%, #1f76b7 100%);
  box-shadow: 0 14px 28px rgba(20, 89, 152, 0.2);
  line-height: 0;
}

.contact-details .contact-detail-icon {
  display: flex;
  color: #ffffff;
}

.contact-detail-icon svg {
  width: 32px;
  height: 32px;
  display: block;
  margin: auto;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-details .contact-detail-icon svg {
  stroke: #ffffff;
}

.contact-details article:nth-child(1) .contact-detail-icon svg,
.contact-details article:nth-child(4) .contact-detail-icon svg {
  transform: translateY(-0.5px);
}

.contact-details article:nth-child(2) .contact-detail-icon svg {
  transform: translate(1px, 0.5px);
}

.contact-details article:nth-child(3) .contact-detail-icon svg {
  transform: translateY(0.5px);
}

.contact-details small,
.contact-details strong,
.contact-details span,
.contact-details a {
  display: block;
}

.contact-details small {
  margin-bottom: 6px;
  color: #145998;
  font-size: 10px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.contact-details strong {
  margin-bottom: 5px;
  color: #142235;
  font-size: 15px;
  line-height: 1.15;
  font-weight: 800;
}

.contact-details span {
  color: #6a7886;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 600;
}

.contact-details a {
  width: fit-content;
  color: #142235;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 800;
  word-break: break-word;
}

.contact-details a:hover,
.contact-details a:focus-visible {
  color: #142235;
  outline: none;
}

.contact-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.contact-quick-actions a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 16px;
  border: 1px solid rgba(20, 89, 152, 0.2);
  border-radius: 999px;
  color: #0f4172;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 26px rgba(16, 31, 49, 0.07);
  font-size: 12px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.contact-quick-actions a:first-child {
  color: #ffffff;
  border-color: #145998;
  background: #145998;
}

.contact-quick-actions a svg {
  width: 17px;
  height: 17px;
  stroke-width: 2.2;
}

.contact-quick-actions a:hover,
.contact-quick-actions a:focus-visible {
  outline: none;
  color: #145998;
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(16, 31, 49, 0.11);
}

.contact-quick-actions a:first-child:hover,
.contact-quick-actions a:first-child:focus-visible {
  color: #ffffff;
}

.contact-form {
  position: relative;
  overflow: hidden;
  margin-top: 28px;
  padding: 32px;
  border: 1px solid rgba(20, 89, 152, 0.14);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 28px 70px rgba(16, 31, 49, 0.13);
}

.contact-form::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, #145998, rgba(20, 89, 152, 0.16));
}

.form-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.form-head-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: #ffffff;
  background: #145998;
  box-shadow: 0 14px 28px rgba(20, 89, 152, 0.2);
}

.form-head-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 2;
}

.form-head div > span {
  display: block;
  margin-bottom: 8px;
  color: #145998;
  font-size: 11px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.form-head h2 {
  margin: 0;
  color: #101f31;
  font-size: 24px;
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: 0;
}

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

.contact-form label {
  display: grid;
  gap: 7px;
  margin-bottom: 16px;
  color: #27384a;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d8e4ef;
  border-radius: 11px;
  color: #142235;
  background: #fbfdff;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.contact-form input,
.contact-form select {
  height: 46px;
  padding: 0 13px;
}

.contact-form textarea {
  min-height: 130px;
  resize: vertical;
  padding: 12px;
  line-height: 1.5;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #1462a7;
  box-shadow: 0 0 0 3px rgba(20, 98, 167, 0.12);
}

.form-check {
  grid-template-columns: 18px minmax(0, 1fr) !important;
  align-items: start;
  gap: 10px !important;
  color: #66737f !important;
  font-size: 11px !important;
  line-height: 1.45 !important;
  font-weight: 600 !important;
}

.form-check input {
  width: 16px;
  height: 16px;
  margin: 1px 0 0;
  accent-color: #1462a7;
}

.form-submit {
  width: 100%;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 12px;
  color: #ffffff;
  background: #1462a7;
  font-family: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease;
}

.form-submit svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.2;
}

.form-submit:hover,
.form-submit:focus-visible {
  transform: translateY(-1px);
  background: #0f4f87;
  outline: none;
}
@media (max-width: 1120px) {
  .container {
    width: min(var(--max), calc(100% - 40px));
  }

  .navbar .container {
    gap: 18px;
  }

  .menu {
    gap: 18px;
    font-size: 14px;
  }

  .quote-btn {
    min-width: 86px;
  }

  .benefit {
    padding: 0 14px 0 22px;
  }
}

@media (max-width: 960px) {
  :root {
    --navbar-height: 64px;
  }

  body.nav-open {
    overflow: hidden;
  }

  .topbar {
    height: auto;
  }

  .topbar .container {
    min-height: var(--topbar-height);
    flex-wrap: wrap;
    gap: 4px 11px;
    padding: 7px 0;
    white-space: normal;
  }

  .navbar {
    height: auto;
  }

  .navbar .container {
    position: relative;
    min-height: var(--navbar-height);
    flex-wrap: nowrap;
    padding: 8px 0;
  }

  .logo {
    width: 142px;
    height: 48px;
  }

  .nav-toggle {
    display: inline-flex;
    order: 3;
    margin-left: auto;
    border-color: #1462a7;
    color: var(--white);
    background: #1462a7;
  }

  .quote-btn {
    order: 2;
    margin-left: auto;
  }

  .nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .menu {
    position: absolute;
    top: 100%;
    left: -20px;
    right: -20px;
    order: 4;
    z-index: 40;
    width: auto;
    max-height: calc(100vh - var(--navbar-height));
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    overflow-y: auto;
    border-top: 1px solid #e4edf7;
    border-bottom: 1px solid #dce6ef;
    background: var(--white);
    box-shadow: 0 18px 34px rgba(16, 31, 49, 0.12);
  }

  .nav-open .menu {
    display: flex;
  }

  .menu > a,
  .menu-item > a {
    min-height: 48px;
    height: auto;
    justify-content: space-between;
    padding: 0 24px;
    border-bottom: 1px solid #edf2f7;
  }

  .menu > a.active::after {
    display: none;
  }

  .menu-item {
    height: auto;
    display: block;
  }

  .submenu,
  .submenu.compact {
    position: static;
    width: auto;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: 0;
    box-shadow: none;
    transition: none;
  }

  .menu-item:hover .submenu,
  .menu-item:focus-within .submenu {
    transform: none;
  }

  .menu-item.is-open .submenu {
    display: grid;
  }

  .submenu a {
    justify-content: flex-start;
    min-height: 40px;
    padding: 8px 34px;
    border-bottom: 1px solid #edf2f7;
    background: #f7fbfe;
    text-align: left;
    font-size: 13px;
  }

  .hero,
  .hero .container {
    min-height: auto;
  }

  .hero .container {
    padding-top: 42px;
    padding-bottom: 56px;
  }

  .hero .container::after {
    right: -210px;
  }

  h1 {
    max-width: 100%;
    font-size: 39px;
  }

  .hero-copy {
    width: min(100%, 540px);
  }

  .benefits,
  .benefits-grid {
    height: auto;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .benefit {
    min-height: 70px;
    padding: 14px 22px;
    border-bottom: 1px solid #e7eef5;
  }

  .industry-grid,
  .advantages-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .printer-grid {
    grid-template-columns: 1fr;
  }

  .formula-table,
  .brand-strip {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .formula-row {
    min-width: 820px;
  }

  .brand-strip {
    grid-template-columns: repeat(7, minmax(140px, 1fr));
  }

  .cta-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px;
  }
}

@media (max-width: 720px) {
  .container {
    width: calc(100% - 30px);
  }

  .quote-btn {
    display: none;
  }

  .hero .container {
    padding-top: 34px;
    padding-bottom: 42px;
  }

  h1 {
    font-size: 35px;
  }

  .hero-copy {
    font-size: 15px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    width: 100%;
  }

  .action,
  .action-primary,
  .action-secondary {
    width: 100%;
  }

  .benefits-grid,
  .industry-grid,
  .advantages-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .industry-card,
  .advantage-card {
    min-height: auto;
  }

  .products h2,
  .printers h2,
  .compatibility h2,
  .advantages h2,
  .industries h2 {
    font-size: 27px;
  }

  .section-copy,
  .dark-copy {
    margin-bottom: 30px;
  }

  .printer-specs div {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .printer-specs dd {
    text-align: left;
  }

  .cta-panel {
    padding: 28px 24px;
  }

  .cta-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .cta-light,
  .cta-whatsapp {
    width: 100%;
  }
}

@media (max-width: 430px) {
  .topbar {
    font-size: 9px;
  }

  .topbar .container {
    justify-content: center;
    gap: 3px 8px;
    line-height: 1.35;
  }

  .logo {
    width: 126px;
  }

  .nav-toggle {
    width: 40px;
  }

  .menu {
    left: -15px;
    right: -15px;
  }

  .eyebrow {
    margin-left: 0;
    font-size: 11px;
    letter-spacing: 1px;
  }

  h1 {
    font-size: 28px;
  }

  .hero-copy {
    font-size: 14px;
  }

  .products,
  .printers,
  .compatibility,
  .advantages {
    padding-top: 30px;
    padding-bottom: 34px;
  }

  .formula-row {
    min-width: 740px;
  }
}





.brand-strip article {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.brand-logo {
  max-width: 110px;
  height: 38px;
  object-fit: contain;
  display: block;
}

.ribbon-studio {
  position: relative;
  min-height: calc(100svh - var(--topbar-height) - var(--navbar-height));
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 8px 0 44px;
  background:
    radial-gradient(circle at 18% 20%, rgba(20, 89, 152, 0.09), transparent 280px),
    radial-gradient(circle at 76% 30%, rgba(139, 192, 227, 0.16), transparent 340px),
    linear-gradient(135deg, #ffffff 0%, #f7fbfe 52%, #ffffff 100%);
}

.ribbon-studio::before {
  content: "";
  position: absolute;
  inset: 0 5% 24px;
  border: 0;
  background: transparent;
  pointer-events: none;
}

.ribbon-studio::after {
  content: "";
  position: absolute;
  right: -14vw;
  top: 0;
  width: 46vw;
  height: 100%;
  background: linear-gradient(105deg, transparent 0 24%, rgba(20, 89, 152, 0.08) 24% 58%, transparent 58%);
  pointer-events: none;
}

.ribbon-studio .container {
  position: relative;
  z-index: 2;
}

.ribbon-studio-shell {
  min-height: 590px;
  display: grid;
  grid-template-columns: minmax(330px, 0.9fr) minmax(260px, 0.82fr) minmax(330px, 0.95fr);
  align-items: start;
  gap: clamp(26px, 4vw, 58px);
  padding-top: 16px;
}

.ribbon-studio-copy,
.ribbon-studio-card,
.ribbon-studio-visual img {
  transition: opacity 0.38s ease, transform 0.58s cubic-bezier(0.22, 1, 0.36, 1), filter 0.38s ease;
}

.ribbon-studio-copy {
  position: relative;
  z-index: 3;
  padding-top: 36px;
}

.ribbon-studio-kicker {
  margin: 0 0 14px;
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.9px;
  text-transform: uppercase;
}

.ribbon-studio-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  display: inline-block;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--blue);
  vertical-align: 1px;
}

.ribbon-studio-copy h1 {
  margin: 0;
  color: #0d1f33;
  font-size: clamp(42px, 4.3vw, 58px);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: -2px;
  white-space: nowrap;
}

.ribbon-studio-copy > p:not(.ribbon-studio-kicker) {
  max-width: 520px;
  margin: 22px 0 0;
  color: #52687a;
  font-size: 15px;
  line-height: 1.68;
  font-weight: 500;
}

.ribbon-studio-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 430px;
  margin-top: 26px;
}

.ribbon-studio-tabs button {
  min-height: 44px;
  border: 1px solid rgba(20, 89, 152, 0.18);
  border-radius: 999px;
  color: var(--blue-dark);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 24px rgba(15, 65, 114, 0.08);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.ribbon-studio-tabs button:hover,
.ribbon-studio-tabs button:focus-visible {
  outline: none;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(15, 65, 114, 0.12);
}

.ribbon-studio-tabs button.is-active {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue) 0%, #1d6fba 100%);
}

.ribbon-studio-cta {
  width: fit-content;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  padding: 0 20px;
  border: 1px solid rgba(20, 89, 152, 0.28);
  border-radius: 999px;
  color: var(--blue-dark);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 24px rgba(15, 65, 114, 0.08);
  font-size: 13px;
  font-weight: 800;
  transition: transform 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.ribbon-studio-cta:hover,
.ribbon-studio-cta:focus-visible {
  color: var(--blue);
  outline: none;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(15, 65, 114, 0.12);
}

.ribbon-studio-visual {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
  padding-top: 24px;
}

.ribbon-studio-orbit {
  position: absolute;
  width: min(29vw, 360px);
  aspect-ratio: 1;
  border: 1px solid rgba(20, 89, 152, 0.12);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.4), transparent 62%),
    repeating-radial-gradient(circle, rgba(20, 89, 152, 0.08) 0 1px, transparent 1px 24px);
  animation: studioOrbit 18s linear infinite;
}

.ribbon-studio-visual::after {
  content: "";
  position: absolute;
  left: 16%;
  right: 8%;
  bottom: 44px;
  height: 42px;
  border-radius: 50%;
  background: rgba(10, 31, 49, 0.22);
  filter: blur(18px);
  transform: rotate(-4deg);
  transition: opacity 0.38s ease, transform 0.38s ease;
}

.ribbon-studio-visual img {
  position: relative;
  z-index: 2;
  max-width: min(25vw, 330px);
  max-height: 360px;
  object-fit: contain;
  filter: drop-shadow(0 24px 38px rgba(10, 31, 49, 0.24));
  transform: translate3d(0, 0, 0);
  animation: studioRibbonFloat 5.4s ease-in-out infinite;
}

.ribbon-studio-card {
  position: relative;
  overflow: hidden;
  padding: 22px 26px 24px;
  border: 1px solid rgba(20, 89, 152, 0.14);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 26px 70px rgba(15, 65, 114, 0.13);
  backdrop-filter: blur(14px);
}

.ribbon-studio-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--blue), rgba(20, 89, 152, 0.12));
}

.ribbon-studio-card > p:first-child {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.ribbon-studio-card h2 {
  margin: 0;
  color: #0d1f33;
  font-size: clamp(25px, 2.35vw, 32px);
  line-height: 1.08;
  letter-spacing: -0.8px;
}

.ribbon-studio-card > p:not(:first-child) {
  margin: 10px 0 15px;
  color: #5c6b79;
  font-size: 12.5px;
  line-height: 1.46;
  font-weight: 500;
}

.ribbon-studio-features {
  display: grid;
  gap: 7px;
}

.ribbon-studio-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 5px 14px;
}

.ribbon-studio-feature span,
.ribbon-studio-feature strong {
  color: #172a3f;
  font-size: 10.5px;
  font-weight: 800;
}

.ribbon-studio-feature span {
  color: #5a6b7c;
}

.ribbon-studio-feature i {
  grid-column: 1 / -1;
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: #e8f0f7;
}

.ribbon-studio-feature i::before {
  content: "";
  width: var(--score, 0%);
  height: 100%;
  display: block;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), #3b8ed0);
  transition: width 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

.ribbon-studio.is-switching .ribbon-studio-copy {
  opacity: 0;
  transform: translateY(18px);
}

.ribbon-studio.is-switching .ribbon-studio-card {
  opacity: 0;
  transform: translateY(20px) scale(0.98);
}

.ribbon-studio.is-switching .ribbon-studio-visual img {
  opacity: 0;
  filter: blur(5px) drop-shadow(0 10px 18px rgba(10, 31, 49, 0.12));
  transform: translate3d(0, 34px, 0) scale(0.9);
}

.ribbon-studio.is-switching .ribbon-studio-visual::after {
  opacity: 0.28;
  transform: translateY(14px) scale(0.72) rotate(-4deg);
}

@keyframes studioRibbonFloat {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -16px;
  }
}

@keyframes studioOrbit {
  to {
    transform: rotate(360deg);
  }
}

.ribbon-page .navbar {
  box-shadow: 0 10px 26px rgba(15, 65, 114, 0.06);
}

.ribbon-main {
  position: relative;
  background: var(--white);
}

.ribbon-main.is-catalog-view .ribbon-studio {
  display: none;
}

.ribbon-main:not(.is-catalog-view) .ribbon-catalog {
  display: none;
}

.ribbon-catalog {
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - var(--topbar-height) - var(--navbar-height));
  display: flex;
  align-items: center;
  padding: 34px 0 46px;
  background:
    radial-gradient(circle at 88% 16%, rgba(20, 89, 152, 0.08), transparent 280px),
    radial-gradient(circle at 12% 18%, rgba(139, 192, 227, 0.14), transparent 300px),
    linear-gradient(135deg, #ffffff 0%, #f7fbfe 54%, #ffffff 100%);
  animation: catalogViewIn 0.46s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.ribbon-catalog::before {
  content: "";
  position: absolute;
  inset: 0 5% 24px;
  border: 0;
  background: transparent;
  pointer-events: none;
}

.ribbon-catalog::after {
  content: "";
  position: absolute;
  right: -10vw;
  bottom: -22vw;
  width: 42vw;
  height: 42vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20, 89, 152, 0.1), transparent 66%);
  pointer-events: none;
}

.ribbon-catalog .container {
  position: relative;
  z-index: 2;
}

.ribbon-catalog-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 34px;
  margin-bottom: 24px;
}

.ribbon-catalog-back {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 18px;
  padding: 0 18px;
  border: 1px solid rgba(20, 89, 152, 0.2);
  border-radius: 999px;
  color: var(--blue-dark);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 24px rgba(15, 65, 114, 0.08);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.ribbon-catalog-back:hover,
.ribbon-catalog-back:focus-visible {
  color: var(--blue);
  outline: none;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(15, 65, 114, 0.12);
}

.ribbon-catalog-kicker {
  margin: 0 0 10px;
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.ribbon-catalog-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  display: inline-block;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--blue);
  vertical-align: 1px;
}

.ribbon-catalog h2 {
  margin: 0;
  color: #0d1f33;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 0.98;
  letter-spacing: -1.6px;
}

.ribbon-catalog-head p:not(.ribbon-catalog-kicker) {
  max-width: 660px;
  margin: 14px 0 0;
  color: #5a6b7c;
  font-size: 15px;
  line-height: 1.56;
  font-weight: 500;
}

.ribbon-catalog-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  max-width: 520px;
}

.ribbon-catalog-tabs button {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(20, 89, 152, 0.18);
  border-radius: 999px;
  color: var(--blue-dark);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 22px rgba(15, 65, 114, 0.07);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.ribbon-catalog-tabs button:hover,
.ribbon-catalog-tabs button:focus-visible {
  outline: none;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(15, 65, 114, 0.12);
}

.ribbon-catalog-tabs button.is-active {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue) 0%, #1d6fba 100%);
}

.ribbon-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
  gap: 18px;
}

.ribbon-product-card {
  position: relative;
  min-height: 262px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 22px;
  border: 1px solid rgba(20, 89, 152, 0.13);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 253, 255, 0.95)),
    #ffffff;
  box-shadow: 0 18px 44px rgba(15, 65, 114, 0.09);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.ribbon-product-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), rgba(20, 89, 152, 0.12));
}

.ribbon-product-card::after {
  content: "";
  position: absolute;
  right: -42px;
  top: -42px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(20, 89, 152, 0.06);
}

.ribbon-product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(20, 89, 152, 0.24);
  box-shadow: 0 24px 60px rgba(15, 65, 114, 0.14);
}

.ribbon-product-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.ribbon-product-code {
  color: var(--blue);
  font-size: 34px;
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: -1.1px;
}

.ribbon-product-family {
  display: none;
}

.ribbon-product-card h3 {
  position: relative;
  z-index: 2;
  margin: 0;
  color: #0d1f33;
  font-size: 19px;
  line-height: 1.18;
  letter-spacing: -0.35px;
}

.ribbon-product-card > p:not(.ribbon-product-family) {
  position: relative;
  z-index: 2;
  margin: 10px 0 14px;
  color: #5a6b7c;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 500;
}

.ribbon-product-tags {
  display: none;
}

.ribbon-product-tags span {
  padding: 7px 9px;
  border: 1px solid rgba(20, 89, 152, 0.11);
  border-radius: 999px;
  color: #415a70;
  background: rgba(234, 244, 251, 0.58);
  font-size: 11px;
  font-weight: 700;
}

.ribbon-product-actions {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.ribbon-product-actions a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid var(--blue);
  border-radius: 999px;
  color: var(--white);
  background: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.ribbon-product-actions a:last-child {
  color: var(--blue-dark);
  background: transparent;
  border-color: rgba(20, 89, 152, 0.22);
}

.ribbon-product-actions a:hover,
.ribbon-product-actions a:focus-visible {
  outline: none;
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(15, 65, 114, 0.1);
}

.printer-main {
  position: relative;
  background: var(--white);
}

.thermal-printers {
  position: relative;
  min-height: calc(100svh - var(--topbar-height) - var(--navbar-height));
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 28px 0 46px;
  background:
    radial-gradient(circle at 18% 20%, rgba(20, 89, 152, 0.09), transparent 280px),
    radial-gradient(circle at 82% 26%, rgba(139, 192, 227, 0.16), transparent 340px),
    linear-gradient(135deg, #ffffff 0%, #f7fbfe 52%, #ffffff 100%);
}

.thermal-printers::before {
  content: "";
  position: absolute;
  inset: 0 5% 24px;
  border: 0;
  background: transparent;
  pointer-events: none;
}

.thermal-printers::after {
  content: "";
  position: absolute;
  right: -14vw;
  top: 0;
  width: 46vw;
  height: 100%;
  background: linear-gradient(105deg, transparent 0 24%, rgba(20, 89, 152, 0.08) 24% 58%, transparent 58%);
  pointer-events: none;
}

.thermal-printers .container {
  position: relative;
  z-index: 2;
  max-width: 1080px;
}

.thermal-layout {
  min-height: 590px;
  display: grid;
  grid-template-columns: minmax(279px, 0.9fr) minmax(260px, 0.82fr) minmax(330px, 0.95fr);
  align-items: start;
  gap: clamp(26px, 4vw, 58px);
  padding-top: 16px;
  transition:
    grid-template-columns 0.56s cubic-bezier(0.22, 1, 0.36, 1),
    gap 0.56s cubic-bezier(0.22, 1, 0.36, 1);
}

.thermal-copy {
  padding-top: 36px;
}

.thermal-copy,
.thermal-sale-card,
.thermal-visual {
  transition:
    opacity 0.34s ease,
    transform 0.56s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.34s ease;
  will-change: transform, opacity;
}

.thermal-copy h1 {
  max-width: 470px;
  margin: 0;
  color: #0d1f33;
  font-size: clamp(31px, 3.2vw, 42px);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: 0;
}

.thermal-copy h1 span {
  display: block;
}

.thermal-copy > p:not(.ribbon-studio-kicker) {
  max-width: 520px;
  margin: 22px 0 0;
  color: #52687a;
  font-size: 15px;
  line-height: 1.68;
  font-weight: 500;
}

.thermal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.thermal-actions a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--blue);
  border-radius: 999px;
  color: #ffffff;
  background: var(--blue);
  box-shadow: 0 10px 24px rgba(15, 65, 114, 0.12);
  font-size: 13px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.thermal-actions a:last-child {
  color: var(--blue-dark);
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(20, 89, 152, 0.22);
}

.thermal-actions a:hover,
.thermal-actions a:focus-visible {
  outline: none;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(15, 65, 114, 0.14);
}

.thermal-visual {
  position: relative;
  min-width: 0;
  min-height: 500px;
  display: grid;
  place-items: center;
  padding-top: 24px;
  z-index: 1;
}

.thermal-visual > span {
  position: absolute;
  width: min(29vw, 360px);
  aspect-ratio: 1;
  border: 1px solid rgba(20, 89, 152, 0.12);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.42), transparent 62%),
    repeating-radial-gradient(circle, rgba(20, 89, 152, 0.08) 0 1px, transparent 1px 24px);
  animation: studioOrbit 18s linear infinite;
}

.thermal-visual::after {
  content: "";
  position: absolute;
  left: 16%;
  right: 8%;
  bottom: 44px;
  height: 42px;
  border-radius: 50%;
  background: rgba(10, 31, 49, 0.2);
  filter: blur(18px);
  transform: rotate(-4deg);
}

.thermal-visual-main,
.thermal-visual-secondary {
  position: relative;
  z-index: 2;
  object-fit: contain;
  filter: drop-shadow(0 24px 38px rgba(10, 31, 49, 0.2));
}

.thermal-visual-main {
  max-width: min(33vw, 380px);
  max-height: 360px;
  animation: studioRibbonFloat 5.4s ease-in-out infinite;
  transform: translateX(-10%);
}

.thermal-visual-secondary {
  position: absolute;
  left: 50%;
  right: auto;
  bottom: 62px;
  max-width: min(14vw, 170px);
  max-height: 135px;
  padding: 10px;
  border: 1px solid rgba(20, 89, 152, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  transform: translateX(-28%);
}

.thermal-sale-card {
  position: relative;
  z-index: 4;
  overflow: hidden;
  padding: 24px 28px 26px;
  border: 1px solid rgba(20, 89, 152, 0.14);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 26px 70px rgba(15, 65, 114, 0.13);
  backdrop-filter: blur(14px);
}

.thermal-sale-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--blue), rgba(20, 89, 152, 0.12));
}

.thermal-sale-card > p:first-child {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.thermal-sale-card h2 {
  margin: 0;
  color: #0d1f33;
  font-size: clamp(25px, 2.35vw, 32px);
  line-height: 1.08;
  letter-spacing: 0;
}

.thermal-sale-card > p:not(:first-child) {
  margin: 12px 0 18px;
  color: #5c6b79;
  font-size: 13px;
  line-height: 1.52;
  font-weight: 500;
}

.thermal-sale-switch {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 18px 0 12px;
  padding: 4px;
  border: 1px solid #dce8f3;
  border-radius: 999px;
  background: #f8fbfe;
}

.thermal-sale-switch button {
  min-height: 36px;
  border: 0;
  border-radius: 999px;
  color: var(--blue-dark);
  background: transparent;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.thermal-sale-switch button.is-active {
  color: #ffffff;
  background: var(--blue);
  box-shadow: 0 8px 18px rgba(20, 98, 167, 0.2);
}

.thermal-sale-switch button:focus-visible {
  outline: 3px solid rgba(20, 98, 167, 0.2);
  outline-offset: 2px;
}

.thermal-sale-current {
  padding: 14px;
  margin-bottom: 16px;
  border: 1px solid #dce8f3;
  border-radius: 14px;
  background: #f8fbfe;
}

.thermal-sale-current span,
.thermal-sale-current strong,
.thermal-sale-current small {
  display: block;
}

.thermal-sale-current span {
  margin-bottom: 5px;
  color: #e94f8d;
  font-size: 10px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.thermal-sale-current strong {
  color: #142235;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 800;
}

.thermal-sale-current small {
  margin-top: 5px;
  color: #647486;
  font-size: 11px;
  line-height: 1.45;
  font-weight: 600;
}

.thermal-sale-card.is-changing .thermal-sale-current,
.thermal-sale-card.is-changing .thermal-sale-list,
.thermal-sale-card.is-changing .thermal-sale-cta {
  animation: thermalSwap 0.24s ease both;
}

@keyframes thermalSwap {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

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


.thermal-sale-list {
  display: grid;
  gap: 0;
  margin: 0 0 18px;
}

.thermal-sale-list div {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid #e8f0f7;
}

.thermal-sale-list div:last-child {
  border-bottom: 0;
}

.thermal-sale-list dt,
.thermal-sale-list dd {
  margin: 0;
  font-size: 12px;
  line-height: 1.4;
}

.thermal-sale-list dt {
  color: #6b7b88;
  font-weight: 800;
}

.thermal-sale-list dd {
  color: #142235;
  font-weight: 700;
}

.thermal-sale-cta {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.thermal-sale-cta:hover,
.thermal-sale-cta:focus-visible {
  outline: none;
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(15, 65, 114, 0.1);
}

.software-hero {
  background:
    radial-gradient(circle at 16% 22%, rgba(20, 89, 152, 0.08), transparent 280px),
    radial-gradient(circle at 82% 26%, rgba(233, 79, 141, 0.08), transparent 320px),
    linear-gradient(135deg, #ffffff 0%, #f7fbfe 52%, #ffffff 100%);
}

.software-hero .container,
.flexible-hero .container,
.hot-hero .container {
  max-width: 1120px;
}

.software-layout {
  grid-template-columns: minmax(286px, 0.92fr) minmax(260px, 0.8fr) minmax(350px, 1fr);
  gap: clamp(22px, 2.6vw, 38px);
}

.software-copy h1 {
  max-width: 510px;
}

.software-visual {
  min-height: 515px;
}

.software-visual::after {
  left: 12%;
  right: 8%;
  bottom: 40px;
  background: rgba(10, 31, 49, 0.16);
}

.software-visual-main {
  width: min(100%, 340px);
  max-width: 100%;
  max-height: 410px;
  transform: translateX(0);
}

.software-switch {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-radius: 18px;
}

.software-switch button {
  min-height: 38px;
  padding: 0 8px;
  border-radius: 14px;
  font-size: 11px;
  line-height: 1.1;
}

.software-card .thermal-sale-list div {
  grid-template-columns: 88px minmax(0, 1fr);
}

.software-card .thermal-sale-current span {
  color: var(--blue);
}

.flexible-hero {
  background:
    radial-gradient(circle at 16% 22%, rgba(20, 89, 152, 0.08), transparent 280px),
    radial-gradient(circle at 84% 22%, rgba(179, 135, 76, 0.12), transparent 320px),
    linear-gradient(135deg, #ffffff 0%, #f7fbfe 52%, #ffffff 100%);
}

.flexible-layout {
  grid-template-columns: minmax(286px, 0.92fr) minmax(290px, 0.88fr) minmax(350px, 1fr);
  gap: clamp(22px, 2.6vw, 38px);
}

.flexible-copy h1 {
  max-width: 540px;
}

.flexible-visual {
  min-height: 520px;
}

.flexible-visual::after {
  left: 9%;
  right: 7%;
  bottom: 42px;
  background: rgba(10, 31, 49, 0.14);
}

.flexible-visual-main {
  width: min(100%, 360px);
  max-width: 100%;
  max-height: 430px;
  border-radius: 34px;
  transform: translateX(-2%);
}

.flexible-switch {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-radius: 18px;
}

.flexible-switch button {
  min-height: 38px;
  padding: 0 8px;
  border-radius: 14px;
  font-size: 11px;
  line-height: 1.12;
}

.flexible-card .thermal-sale-list div {
  grid-template-columns: 82px minmax(0, 1fr);
}

.flexible-card .thermal-sale-current span {
  color: #8a6231;
}

.flexible-capabilities {
  padding: 48px 0 60px;
  background: #ffffff;
}

.flexible-capabilities .container {
  max-width: 1080px;
}

.flexible-capabilities-head {
  max-width: 700px;
  margin-bottom: 24px;
}

.flexible-capabilities-head h2 {
  margin: 0;
  color: #0d1f33;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: 0;
}

.flexible-capabilities-head p:not(.ribbon-studio-kicker) {
  margin: 14px 0 0;
  color: #5a6b7c;
  font-size: 14px;
  line-height: 1.65;
  font-weight: 500;
}

.flexible-capacity-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.flexible-capacity-grid article {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(20, 89, 152, 0.13);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 253, 255, 0.95)),
    #ffffff;
  box-shadow: 0 18px 44px rgba(15, 65, 114, 0.09);
}

.flexible-capacity-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), rgba(20, 89, 152, 0.12));
}

.flexible-capacity-grid article > span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--blue-dark);
  background: var(--blue-soft);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.flexible-capacity-grid h3 {
  margin: 0 0 18px;
  color: #0d1f33;
  font-size: 20px;
  line-height: 1.16;
  font-weight: 800;
}

.flexible-capacity-grid dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

.flexible-capacity-grid dt,
.flexible-capacity-grid dd {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
}

.flexible-capacity-grid dt {
  color: #6b7b88;
  font-weight: 800;
}

.flexible-capacity-grid dd {
  margin-top: 4px;
  color: #142235;
  font-weight: 700;
}

.flexible-capacity-grid .is-featured {
  color: #ffffff;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 42%),
    #145998;
}

.flexible-capacity-grid .is-featured::before {
  background: rgba(255, 255, 255, 0.34);
}

.flexible-capacity-grid .is-featured > span {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
}

.flexible-capacity-grid .is-featured h3,
.flexible-capacity-grid .is-featured p {
  color: #ffffff;
}

.flexible-capacity-grid .is-featured p {
  margin: 0 0 24px;
  font-size: 13px;
  line-height: 1.62;
  font-weight: 500;
}

.flexible-capacity-grid .is-featured a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--blue-dark);
  background: #ffffff;
  font-size: 12px;
  font-weight: 800;
}

.hot-hero {
  background:
    radial-gradient(circle at 16% 22%, rgba(20, 89, 152, 0.08), transparent 280px),
    radial-gradient(circle at 84% 24%, rgba(191, 143, 44, 0.16), transparent 330px),
    linear-gradient(135deg, #ffffff 0%, #f8fbfe 52%, #fffaf0 100%);
}

.hot-layout {
  grid-template-columns: minmax(286px, 0.92fr) minmax(290px, 0.88fr) minmax(350px, 1fr);
  gap: clamp(22px, 2.6vw, 38px);
}

.hot-copy h1 {
  max-width: 550px;
}

.hot-visual {
  min-height: 520px;
}

.hot-visual::after {
  left: 9%;
  right: 7%;
  bottom: 42px;
  background: rgba(10, 31, 49, 0.16);
}

.hot-visual-main {
  width: min(100%, 360px);
  max-width: 100%;
  max-height: 430px;
  border-radius: 34px;
  transform: translateX(-2%);
}

.hot-switch {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-radius: 18px;
}

.hot-switch button {
  min-height: 38px;
  padding: 0 8px;
  border-radius: 14px;
  font-size: 10.5px;
  line-height: 1.12;
}

.hot-card .thermal-sale-list div {
  grid-template-columns: 88px minmax(0, 1fr);
}

.hot-card .thermal-sale-current span {
  color: #a76c16;
}

.hot-applications {
  padding: 48px 0 60px;
  background: #ffffff;
}

.hot-applications .container {
  max-width: 1080px;
}

.hot-applications-head {
  max-width: 720px;
  margin-bottom: 24px;
}

.hot-applications-head h2 {
  margin: 0;
  color: #0d1f33;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: 0;
}

.hot-applications-head p:not(.ribbon-studio-kicker) {
  margin: 14px 0 0;
  color: #5a6b7c;
  font-size: 14px;
  line-height: 1.65;
  font-weight: 500;
}

.hot-application-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.hot-application-grid article {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(20, 89, 152, 0.13);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 253, 255, 0.95)),
    #ffffff;
  box-shadow: 0 18px 44px rgba(15, 65, 114, 0.09);
}

.hot-application-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #c9982b, rgba(20, 89, 152, 0.12));
}

.hot-application-grid article > span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #7a5317;
  background: #fff3d2;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.hot-application-grid h3 {
  margin: 0 0 14px;
  color: #0d1f33;
  font-size: 18px;
  line-height: 1.18;
  font-weight: 800;
}

.hot-application-grid p {
  margin: 0;
  color: #5a6b7c;
  font-size: 13px;
  line-height: 1.58;
  font-weight: 500;
}

.hot-application-grid .is-featured {
  color: #ffffff;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), transparent 42%),
    #145998;
}

.hot-application-grid .is-featured::before {
  background: rgba(255, 255, 255, 0.34);
}

.hot-application-grid .is-featured > span {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
}

.hot-application-grid .is-featured h3,
.hot-application-grid .is-featured p {
  color: #ffffff;
}

.hot-application-grid .is-featured a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--blue-dark);
  background: #ffffff;
  font-size: 12px;
  font-weight: 800;
}

.product-ajax-panel {
  min-height: auto;
  max-height: calc(100svh - var(--navbar-height) - 34px);
  display: grid;
  align-content: start;
  grid-template-rows: auto minmax(0, 1fr);
  gap: clamp(12px, 1.7vw, 18px);
  padding: clamp(18px, 2vw, 24px);
  border: 1px solid rgba(20, 89, 152, 0.14);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.99) 0 58%, rgba(240, 248, 253, 0.98) 58% 100%);
  box-shadow: 0 28px 66px rgba(11, 35, 55, 0.13);
  opacity: 0;
  overflow: hidden;
  transform: translateX(64px);
  transition:
    opacity 0.42s ease,
    transform 0.58s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}

.product-ajax-panel[hidden] {
  display: none;
}

.product-ajax-panel:focus {
  outline: none;
}

.product-ajax-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(14px, 2vw, 28px);
}

.product-ajax-head h2 {
  max-width: 660px;
  margin: 6px 0 0;
  color: #101f31;
  font-size: clamp(24px, 2.3vw, 32px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: 0;
}

.product-ajax-head p:not(.ribbon-studio-kicker) {
  max-width: 720px;
  margin: 8px 0 0;
  color: #526474;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 600;
}

.product-ajax-head button {
  min-height: 38px;
  flex: 0 0 auto;
  padding: 0 16px;
  border: 1px solid rgba(20, 89, 152, 0.24);
  border-radius: 999px;
  color: #145998;
  background: #ffffff;
  font-family: inherit;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(11, 35, 55, 0.08);
}

.product-ajax-head button:hover,
.product-ajax-head button:focus-visible {
  outline: none;
  color: #ffffff;
  background: #145998;
}

.thermal-printers.is-panel-view {
  padding: 14px 0 18px;
}

.thermal-printers.is-panel-view .container {
  max-width: min(1280px, calc(100vw - 42px));
}

.thermal-printers.is-panel-view .thermal-layout {
  min-height: calc(100svh - var(--navbar-height) - 34px);
  grid-template-columns: minmax(220px, 0.46fr) minmax(780px, 1.54fr);
  align-items: center;
  gap: clamp(18px, 2.5vw, 34px);
  padding-top: 0;
}

.thermal-printers.is-panel-transitioning .thermal-copy {
  opacity: 0;
  filter: blur(3px);
  transform: translateX(-54px);
}

.thermal-printers.is-panel-transitioning .thermal-sale-card {
  opacity: 0;
  filter: blur(3px);
  transform: translateX(54px);
}

.thermal-printers.is-panel-transitioning .thermal-visual {
  transform: translateX(-48px) scale(0.985);
}

.thermal-printers.is-panel-view .thermal-copy,
.thermal-printers.is-panel-view .thermal-sale-card {
  display: none;
}

.thermal-printers.is-panel-view .thermal-visual {
  grid-column: 1;
  min-height: min(480px, calc(100svh - var(--navbar-height) - 60px));
  padding-top: 0;
  transform: translateX(-24px);
}

.thermal-printers.is-panel-view .thermal-visual > span {
  width: min(25vw, 300px);
}

.thermal-printers.is-panel-view .thermal-visual-main {
  max-width: min(26vw, 300px);
  max-height: calc(100svh - var(--navbar-height) - 118px);
  transform: translateX(0);
}

.thermal-printers.is-panel-view .product-ajax-panel {
  grid-column: 2;
}

.thermal-printers.is-panel-ready .product-ajax-panel {
  opacity: 1;
  transform: translateX(0);
}

.thermal-printers.is-panel-closing .product-ajax-panel {
  opacity: 0;
  transform: translateX(56px);
}

.thermal-printers.is-returning .thermal-copy {
  animation: thermalCopyReturn 0.42s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.thermal-printers.is-returning .thermal-sale-card {
  animation: thermalCardReturn 0.42s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.thermal-printers.is-returning .thermal-visual {
  animation: thermalVisualReturn 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.product-ajax-panel .hot-application-grid,
.product-ajax-panel .flexible-capacity-grid {
  grid-template-columns: repeat(auto-fit, minmax(158px, 1fr));
  gap: 10px;
  min-height: 0;
}

.product-ajax-panel .hot-application-grid article,
.product-ajax-panel .flexible-capacity-grid article {
  min-height: auto;
  padding: 14px;
  border-radius: 16px;
  box-shadow: 0 16px 36px rgba(15, 65, 114, 0.08);
}

.product-ajax-panel .hot-application-grid article:nth-child(3):last-child,
.product-ajax-panel .flexible-capacity-grid .is-featured {
  grid-column: auto;
}

.product-ajax-panel .hot-application-grid h3,
.product-ajax-panel .flexible-capacity-grid h3 {
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.12;
}

.product-ajax-panel .hot-application-grid p,
.product-ajax-panel .flexible-capacity-grid .is-featured p {
  font-size: 11px;
  line-height: 1.36;
}

.product-ajax-panel .flexible-capacity-grid article > span,
.product-ajax-panel .hot-application-grid article > span {
  margin-bottom: 10px;
}

.product-ajax-panel .flexible-capacity-grid dl {
  gap: 7px;
}

.product-ajax-panel .flexible-capacity-grid .is-featured,
.product-ajax-panel .hot-application-grid .is-featured {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.product-ajax-panel .flexible-capacity-grid .is-featured > span,
.product-ajax-panel .hot-application-grid .is-featured > span {
  width: max-content;
  grid-column: 1;
}

.product-ajax-panel .flexible-capacity-grid .is-featured h3,
.product-ajax-panel .hot-application-grid .is-featured h3 {
  grid-column: 1;
  margin-bottom: 4px;
}

.product-ajax-panel .flexible-capacity-grid .is-featured p,
.product-ajax-panel .hot-application-grid .is-featured p {
  grid-column: 1;
  margin: 0;
}

.product-ajax-panel .flexible-capacity-grid .is-featured a,
.product-ajax-panel .hot-application-grid .is-featured a {
  width: 100%;
  min-height: 34px;
  align-self: stretch;
  margin-top: auto;
  padding: 0 12px;
  font-size: 11px;
}

.product-ajax-panel .hot-application-grid article {
  padding: 14px;
}

.product-ajax-panel .hot-application-grid article > span {
  margin-bottom: 8px;
  padding: 6px 9px;
}

.product-ajax-panel .hot-application-grid h3 {
  margin-bottom: 7px;
  font-size: 15px;
}

.product-ajax-panel .hot-application-grid p {
  font-size: 11px;
  line-height: 1.36;
}

@keyframes thermalCopyReturn {
  from {
    opacity: 0;
    filter: blur(3px);
    transform: translateX(-42px);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
  }
}

@keyframes thermalCardReturn {
  from {
    opacity: 0;
    filter: blur(3px);
    transform: translateX(42px);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
  }
}

@keyframes thermalVisualReturn {
  from {
    transform: translateX(-42px) scale(0.985);
  }

  to {
    transform: translateX(0) scale(1);
  }
}
.ribbon-catalog.is-changing .ribbon-product-card {
  animation: catalogCardIn 0.44s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.ribbon-catalog.is-changing .ribbon-product-card:nth-child(2) {
  animation-delay: 0.05s;
}

.ribbon-catalog.is-changing .ribbon-product-card:nth-child(3) {
  animation-delay: 0.1s;
}

.ribbon-catalog.is-changing .ribbon-product-card:nth-child(4) {
  animation-delay: 0.15s;
}

@keyframes catalogCardIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

@keyframes catalogViewIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

.ribbon-showcase {
  position: relative;
  overflow: clip;
  background: #ffffff;
}

.ribbon-panel {
  --panel-accent: #145998;
  --panel-soft: #eaf4fb;
  --ribbon-y: 0px;
  --ribbon-scale: 1;
  --ribbon-rotate: 0deg;
  --title-y: 0px;
  --copy-y: 0px;
  --card-y: 0px;
  --panel-fade: 1;
  position: relative;
  min-height: calc(100svh - var(--topbar-height) - var(--navbar-height));
  display: flex;
  align-items: center;
  overflow: hidden;
  scroll-margin-top: var(--navbar-height);
  isolation: isolate;
  background:
    radial-gradient(circle at 18% 26%, rgba(20, 89, 152, 0.08), transparent 320px),
    linear-gradient(115deg, #ffffff 0 47%, #f3f8fd 47% 72%, #ffffff 72% 100%);
}

.ribbon-panel::before {
  content: "";
  position: absolute;
  inset: 7% 5%;
  z-index: -2;
  border: 0;
  background: transparent;
  mask-image: linear-gradient(90deg, #000 0 66%, transparent 100%);
}

.ribbon-panel::after {
  content: "";
  position: absolute;
  right: -12vw;
  top: 50%;
  z-index: -1;
  width: 44vw;
  height: 44vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20, 89, 152, 0.12), transparent 64%);
  transform: translateY(-50%);
}

.ribbon-panel:nth-of-type(2) {
  --panel-accent: #0f6fae;
  --panel-soft: #e8f5fd;
}

.ribbon-panel:nth-of-type(3) {
  --panel-accent: #0f4172;
  --panel-soft: #eaf2f9;
}

.ribbon-panel:nth-of-type(4) {
  --panel-accent: #145998;
  --panel-soft: #edf6fc;
}

.ribbon-panel-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.72fr);
  align-items: center;
  gap: clamp(30px, 5vw, 70px);
  padding-top: 28px;
  padding-bottom: 28px;
}

@media (min-width: 961px) {
  .ribbon-panel {
    min-height: 116svh;
    align-items: flex-start;
  }

  .ribbon-panel-inner {
    position: sticky;
    top: var(--navbar-height);
    min-height: calc(100svh - var(--navbar-height));
  }
}

.ribbon-panel-inner > * {
  min-width: 0;
}

.ribbon-visual-column {
  position: relative;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 10px;
}

.ribbon-kicker {
  width: fit-content;
  margin: 0 0 12px;
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.9px;
  text-transform: uppercase;
  opacity: var(--panel-fade);
  transform: translate3d(0, var(--copy-y), 0);
}

.ribbon-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  display: inline-block;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--panel-accent);
  vertical-align: 1px;
}

.ribbon-visual-column h1 {
  max-width: 620px;
  margin: 0;
  color: #0d1f33;
  font-size: clamp(42px, 4.7vw, 62px);
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: -2px;
  white-space: nowrap;
  opacity: var(--panel-fade);
  transform: translate3d(0, var(--title-y), 0);
}

.ribbon-visual-column h1 span {
  display: inline;
  color: inherit;
}

.ribbon-visual-column p:not(.ribbon-kicker) {
  width: min(100%, 520px);
  max-width: 520px;
  margin: 18px 0 0;
  color: #52687a;
  font-size: 15px;
  line-height: 1.58;
  font-weight: 500;
  overflow-wrap: break-word;
  opacity: var(--panel-fade);
  transform: translate3d(0, var(--copy-y), 0);
}

.ribbon-floating-card {
  position: relative;
  right: auto;
  bottom: auto;
  width: min(29vw, 310px);
  margin-top: 26px;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  transform: translate3d(0, var(--ribbon-y), 0) scale(var(--ribbon-scale)) rotateZ(var(--ribbon-rotate));
  animation: ribbonPageFloat 5.8s ease-in-out infinite;
  opacity: 1;
  will-change: transform;
}

.ribbon-floating-card::after {
  content: "";
  position: absolute;
  left: 13%;
  right: 10%;
  bottom: 8px;
  height: 34px;
  border-radius: 50%;
  background: rgba(10, 31, 49, 0.2);
  filter: blur(16px);
  transform: rotate(-4deg);
  animation: ribbonPageShadow 5.8s ease-in-out infinite;
}

.ribbon-floating-card img {
  position: relative;
  z-index: 2;
  max-width: 116%;
  max-height: 116%;
  object-fit: contain;
  filter: drop-shadow(0 20px 34px rgba(10, 31, 49, 0.24));
  transform: translate3d(0, 0, 0);
}

.ribbon-floating-card-wide img {
  max-width: 138%;
  max-height: 138%;
}

.ribbon-tech-card {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 2.6vw, 32px);
  border: 1px solid rgba(20, 89, 152, 0.14);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 252, 255, 0.98)),
    var(--white);
  box-shadow: 0 28px 70px rgba(15, 65, 114, 0.12);
  opacity: var(--panel-fade);
  transform: translate3d(0, var(--card-y), 0);
  will-change: transform, opacity;
}

.ribbon-tech-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--panel-accent), rgba(20, 89, 152, 0.12));
}

.ribbon-tech-card h2 {
  margin: 0;
  color: #0d1f33;
  font-size: clamp(25px, 2.45vw, 32px);
  line-height: 1.08;
  letter-spacing: -0.8px;
}

.ribbon-tech-card > p {
  margin: 12px 0 18px;
  color: #5c6b79;
  font-size: 14px;
  line-height: 1.58;
  font-weight: 500;
}

.ribbon-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px 14px;
}

.ribbon-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 6px 12px;
}

.ribbon-feature span,
.ribbon-feature strong {
  color: #172a3f;
  font-size: 12px;
  font-weight: 800;
}

.ribbon-feature span {
  color: #5a6b7c;
}

.ribbon-feature i {
  grid-column: 1 / -1;
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: #e8f0f7;
}

.ribbon-feature i::before {
  content: "";
  width: var(--score);
  height: 100%;
  display: block;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--panel-accent), #3b8ed0);
  transition: width 0.55s ease;
}

.ribbon-panel:not(.is-active) .ribbon-feature i::before {
  width: 18%;
}

.ribbon-dots {
  position: fixed;
  right: 28px;
  top: 50%;
  z-index: 16;
  display: grid;
  gap: 14px;
  transform: translateY(-50%);
}

.ribbon-dots.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.ribbon-dots button {
  position: relative;
  width: 13px;
  height: 13px;
  padding: 0;
  border: 1px solid rgba(20, 89, 152, 0.34);
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 5px 14px rgba(10, 31, 49, 0.12);
  cursor: pointer;
}

.ribbon-dots button::before {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: inherit;
  background: var(--blue);
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.ribbon-dots button.is-active::before,
.ribbon-dots button:hover::before,
.ribbon-dots button:focus-visible::before {
  opacity: 1;
  transform: scale(1.25);
}

.ribbon-dots span {
  position: absolute;
  right: 24px;
  top: 50%;
  min-width: 92px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--blue-dark);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(10, 31, 49, 0.12);
  font-size: 11px;
  font-weight: 800;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%) translateX(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.ribbon-dots button:hover span,
.ribbon-dots button:focus-visible span,
.ribbon-dots button.is-active span {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

@keyframes ribbonPageFloat {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -18px;
  }
}

@keyframes ribbonPageShadow {
  0%,
  100% {
    opacity: 0.86;
    transform: scale(1) rotate(-4deg);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.82) rotate(-4deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ribbon-floating-card,
  .ribbon-floating-card::after {
    animation: none;
  }

  .ribbon-panel-inner,
  .ribbon-tech-card,
  .ribbon-visual-column h1,
  .ribbon-visual-column p,
  .ribbon-kicker,
  .ribbon-feature i::before {
    transition: none;
  }
}

.industry-main {
  overflow: hidden;
  background: #ffffff;
}

.industry-page .navbar {
  box-shadow: 0 10px 26px rgba(15, 65, 114, 0.06);
}

.industry-kicker {
  margin: 0 0 12px;
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.industry-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  display: inline-block;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--blue);
  vertical-align: 1px;
}

.logistics-hero {
  position: relative;
  min-height: calc(100svh - var(--topbar-height) - var(--navbar-height));
  display: flex;
  align-items: center;
  padding: 34px 0 44px;
  background:
    radial-gradient(circle at 18% 16%, rgba(20, 89, 152, 0.08), transparent 300px),
    radial-gradient(circle at 82% 22%, rgba(139, 192, 227, 0.16), transparent 360px),
    linear-gradient(135deg, #ffffff 0%, #f7fbfe 56%, #ffffff 100%);
  isolation: isolate;
}

.logistics-hero::before {
  content: "";
  position: absolute;
  inset: 0 5% 24px;
  z-index: -2;
  border: 0;
  background: transparent;
}

.logistics-hero::after {
  content: "";
  position: absolute;
  right: -13vw;
  top: 0;
  z-index: -1;
  width: 45vw;
  height: 100%;
  background: linear-gradient(105deg, transparent 0 24%, rgba(20, 89, 152, 0.08) 24% 58%, transparent 58%);
}

.logistics-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(380px, 0.92fr);
  align-items: center;
  gap: clamp(30px, 4.2vw, 58px);
}

.logistics-hero-copy h1 {
  max-width: 580px;
  margin: 0;
  color: #0d1f33;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.06;
  letter-spacing: 0;
}

.logistics-hero-copy > p:not(.industry-kicker) {
  max-width: 560px;
  margin: 18px 0 0;
  color: #52687a;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 500;
}

.industry-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.logistics-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 620px;
  overflow: hidden;
  margin-top: 30px;
  border: 1px solid rgba(20, 89, 152, 0.11);
  border-radius: 22px;
  background: rgba(20, 89, 152, 0.12);
  box-shadow: 0 18px 44px rgba(15, 65, 114, 0.08);
}

.logistics-proof span {
  min-height: 78px;
  display: grid;
  align-content: center;
  padding: 16px;
  color: #52687a;
  background: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  font-weight: 600;
}

.logistics-proof strong {
  display: block;
  color: #0d1f33;
  font-size: 18px;
  line-height: 1.2;
}

.logistics-visual {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
}

.logistics-visual img {
  width: min(100%, 520px);
  aspect-ratio: 1.04 / 1;
  object-fit: cover;
  border: 1px solid rgba(20, 89, 152, 0.14);
  border-radius: 34px;
  box-shadow: 0 34px 80px rgba(15, 65, 114, 0.16);
  transform: none;
}

.logistics-visual-card {
  display: none;
}

.logistics-visual-card strong {
  display: block;
  color: var(--blue);
  font-size: 26px;
  line-height: 1;
}

.logistics-visual-card span {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 800;
}

.logistics-visual-card-primary {
  left: 0;
  bottom: 72px;
}

.logistics-visual-card-secondary {
  right: 2px;
  top: 56px;
  animation-delay: -1.7s;
}

.industry-section {
  padding: 76px 0;
  background: #ffffff;
}

.industry-section-head {
  max-width: 760px;
  margin-bottom: 30px;
}

.industry-section-head h2,
.logistics-selector h2 {
  margin: 0;
  color: #0d1f33;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1;
  letter-spacing: -1.6px;
}

.industry-section-head p:not(.industry-kicker),
.logistics-selector p:not(.industry-kicker) {
  max-width: 650px;
  margin: 16px 0 0;
  color: #5a6b7c;
  font-size: 15px;
  line-height: 1.65;
  font-weight: 500;
}

.logistics-app-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.logistics-app-grid article,
.logistics-ribbon-grid article {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(20, 89, 152, 0.13);
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(15, 65, 114, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.logistics-app-grid article:hover,
.logistics-ribbon-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(20, 89, 152, 0.24);
  box-shadow: 0 24px 60px rgba(15, 65, 114, 0.13);
}

.logistics-app-grid span {
  display: none;
}

.logistics-app-grid h3,
.logistics-ribbon-grid h3 {
  margin: 0 0 10px;
  color: #0d1f33;
  font-size: 18px;
  line-height: 1.18;
}

.logistics-app-grid p,
.logistics-ribbon-grid p {
  margin: 0;
  color: #5a6b7c;
  font-size: 13px;
  line-height: 1.58;
  font-weight: 500;
}

.logistics-challenges {
  position: relative;
  overflow: hidden;
  padding: 74px 0;
  color: #ffffff;
  background:
    radial-gradient(circle at 18% 18%, rgba(139, 192, 227, 0.22), transparent 300px),
    linear-gradient(135deg, #0c345b 0%, #145998 58%, #1f78bd 100%);
}

.industry-section-head.light .industry-kicker,
.industry-section-head.light h2,
.industry-section-head.light p {
  color: #ffffff;
}

.industry-section-head.light .industry-kicker::before {
  background: #8bc0e3;
}

.logistics-challenge-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.logistics-challenge-grid article {
  min-height: 150px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.logistics-challenge-grid strong {
  display: block;
  color: #ffffff;
  font-size: 19px;
  line-height: 1.15;
}

.logistics-challenge-grid span {
  display: block;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  line-height: 1.55;
  font-weight: 500;
}

.logistics-recommend {
  background:
    radial-gradient(circle at 90% 12%, rgba(20, 89, 152, 0.08), transparent 280px),
    linear-gradient(180deg, #ffffff 0%, #f7fbfe 100%);
}

.logistics-ribbon-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.logistics-ribbon-grid article {
  min-height: 250px;
  display: flex;
  flex-direction: column;
}

.logistics-ribbon-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), rgba(20, 89, 152, 0.12));
}

.logistics-ribbon-grid article > span {
  color: var(--blue);
  font-size: 34px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -1px;
}

.logistics-ribbon-grid article.is-featured {
  color: #ffffff;
  background: linear-gradient(145deg, #0f4172, #1c72b8);
}

.logistics-ribbon-grid article.is-featured h3,
.logistics-ribbon-grid article.is-featured p,
.logistics-ribbon-grid article.is-featured > span {
  color: #ffffff;
}

.logistics-ribbon-grid a {
  width: fit-content;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  padding: 0 14px;
  border: 1px solid rgba(20, 89, 152, 0.2);
  border-radius: 999px;
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 800;
}

.logistics-ribbon-grid article.is-featured a {
  color: var(--blue-dark);
  background: #ffffff;
}

.logistics-selector {
  position: relative;
  overflow: hidden;
  padding: 78px 0 86px;
  background: #ffffff;
}

.logistics-selector-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.55fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
}

.logistics-selector-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 620px;
  margin-top: 28px;
}

.logistics-selector-options button {
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid rgba(20, 89, 152, 0.18);
  border-radius: 18px;
  color: var(--blue-dark);
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(15, 65, 114, 0.07);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.logistics-selector-options button:hover,
.logistics-selector-options button:focus-visible {
  outline: none;
  transform: translateY(-2px);
}

.logistics-selector-options button.is-active {
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), #1d6fba);
}

.logistics-result {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(20, 89, 152, 0.14);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 252, 255, 0.98)),
    #ffffff;
  box-shadow: 0 26px 70px rgba(15, 65, 114, 0.13);
}

.logistics-result::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--blue), rgba(20, 89, 152, 0.12));
}

.logistics-result p {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.logistics-result h3 {
  margin: 0;
  color: #0d1f33;
  font-size: 58px;
  line-height: 0.95;
  letter-spacing: -2px;
}

.logistics-result strong {
  display: block;
  margin-top: 12px;
  color: #0d1f33;
  font-size: 22px;
  line-height: 1.15;
}

.logistics-result span {
  display: block;
  margin-top: 16px;
  color: #5a6b7c;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 500;
}

.logistics-result a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  margin-top: 22px;
  padding: 0 18px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.logistics-result.is-changing {
  animation: logisticsResultSwap 0.28s ease;
}

@keyframes logisticsFloat {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -14px;
  }
}

@keyframes logisticsResultSwap {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

.company-page {
  position: relative;
  overflow: hidden;
  padding: 62px 0 66px;
  background:
    radial-gradient(circle at 12% 10%, rgba(20, 89, 152, 0.1), transparent 280px),
    radial-gradient(circle at 90% 12%, rgba(233, 79, 141, 0.07), transparent 260px),
    linear-gradient(180deg, #ffffff 0%, #f5f9fd 100%);
}

.company-page .container {
  max-width: 1080px;
}

.company-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  margin-bottom: 15px;
  padding: 0 13px;
  border-radius: 999px;
  color: #145998;
  background: #e7f1fa;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.9px;
  text-transform: uppercase;
}

.company-hero-card,
.company-vision-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 34px;
  align-items: stretch;
  padding: 28px;
  border: 1px solid #dfe8f1;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 60px rgba(16, 31, 49, 0.1);
}

.company-hero-copy {
  padding: 16px 0 8px;
}

.company-hero-copy h1,
.company-principle-hero h1,
.company-vision-copy h1 {
  max-width: 760px;
  margin: 0;
  color: #071827;
  font-size: 42px;
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -0.9px;
}

.company-hero-copy p,
.company-principle-hero p,
.company-vision-copy p {
  max-width: 690px;
  margin: 18px 0 0;
  color: #5c6b79;
  font-size: 15px;
  line-height: 1.75;
  font-weight: 500;
}

.company-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.company-actions a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 12px;
  color: var(--white);
  background: #145998;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.company-actions a + a {
  color: #145998;
  background: #e7f1fa;
}

.company-hero-panel,
.company-vision-card {
  overflow: hidden;
  border: 1px solid #dce8f3;
  border-radius: 24px;
  background: #f7fbfe;
}

.company-hero-panel img,
.company-vision-card img {
  width: 100%;
  height: 230px;
  display: block;
  object-fit: cover;
}

.company-vision-card img {
  height: 310px;
}

.company-stats {
  display: grid;
}

.company-stats span {
  min-height: 64px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 0 18px;
  border-top: 1px solid #dfe8f1;
  color: #617181;
  font-size: 11.5px;
  line-height: 1.25;
  font-weight: 700;
}

.company-stats strong {
  display: block;
  color: #145998;
  font-size: 22px;
  line-height: 1;
  font-weight: 800;
}

.company-story-grid,
.company-principle-grid,
.privacy-grid {
  display: grid;
  gap: 18px;
}

.company-story-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 22px;
}

.company-principle-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.privacy-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.company-story-card,
.company-principle-grid article,
.company-vision-pillars article,
.privacy-grid article {
  padding: 24px;
  border: 1px solid #dfe8f1;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 32px rgba(16, 31, 49, 0.06);
}

.company-story-card span {
  display: inline-flex;
  min-height: 22px;
  align-items: center;
  margin-bottom: 13px;
  padding: 0 10px;
  border-radius: 999px;
  color: #145998;
  background: #e7f1fa;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.company-story-card h2,
.company-principle-grid h2,
.privacy-grid h2 {
  margin: 0 0 10px;
  color: #101f31;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 800;
}

.company-story-card p,
.company-principle-grid p,
.privacy-grid p {
  margin: 0;
  color: #607080;
  font-size: 13px;
  line-height: 1.65;
  font-weight: 500;
}

.company-timeline {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid #dfe8f1;
  border-radius: 22px;
  background: #ffffff;
}

.company-timeline div {
  min-height: 112px;
  padding: 22px 18px;
  border-right: 1px solid #e8eef4;
}

.company-timeline div:last-child {
  border-right: 0;
}

.company-timeline strong {
  display: block;
  margin-bottom: 8px;
  color: #145998;
  font-size: 24px;
  font-weight: 800;
}

.company-timeline span {
  color: #607080;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 600;
}

.company-principle-hero {
  max-width: 820px;
  margin-bottom: 28px;
}

.company-principle-grid article span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 14px;
  color: var(--white);
  background: #145998;
  font-size: 13px;
  font-weight: 800;
}

.company-principle-banner,
.privacy-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 20px;
  padding: 22px 24px;
  border-radius: 22px;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 20%, rgba(233, 79, 141, 0.22), transparent 180px),
    linear-gradient(135deg, #0f4172 0%, #145998 100%);
}

.company-principle-banner strong,
.privacy-note strong {
  color: var(--white);
  font-size: 18px;
  font-weight: 800;
}

.company-principle-banner span,
.privacy-note span {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  line-height: 1.55;
  font-weight: 600;
}

.company-vision-layout {
  align-items: center;
}

.company-vision-pillars {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.company-vision-pillars strong {
  display: block;
  margin-bottom: 8px;
  color: #145998;
  font-size: 15px;
  font-weight: 800;
}

.company-vision-pillars span {
  color: #607080;
  font-size: 12px;
  line-height: 1.55;
  font-weight: 600;
}

.history-classic {
  min-height: calc(100svh - var(--topbar-height) - var(--navbar-height));
  padding: 44px 0 60px;
  background:
    radial-gradient(circle at 12% 10%, rgba(20, 89, 152, 0.12), transparent 280px),
    radial-gradient(circle at 92% 10%, rgba(233, 79, 141, 0.08), transparent 260px),
    linear-gradient(180deg, #ffffff 0%, #f4f8fb 100%);
}

.history-classic .container {
  max-width: 1080px;
}

.history-classic-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 32px;
}

.history-classic-title span {
  min-width: 210px;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #ffffff;
  background:
    linear-gradient(135deg, #111820 0%, #262126 100%);
  font-size: 22px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  box-shadow: 0 16px 34px rgba(16, 31, 49, 0.16);
}

.history-classic-title p {
  max-width: 510px;
  margin: 0;
  color: #5c6b79;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 700;
  text-align: right;
}

.history-classic-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 46px;
  align-items: start;
}

.history-classic-copy {
  max-width: 680px;
  padding: 26px 28px;
  border: 1px solid #dfe8f1;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 42px rgba(16, 31, 49, 0.08);
}

.history-classic-copy p {
  margin: 0 0 13px;
  color: #1d2a38;
  font-size: 15px;
  line-height: 1.42;
  font-weight: 500;
  text-align: justify;
}

.history-classic-copy p:last-child {
  margin-bottom: 0;
}

.history-classic-media {
  display: grid;
  gap: 20px;
  padding-top: 10px;
}

.history-classic-media figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid #dfe8f1;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(16, 31, 49, 0.12);
}

.history-classic-media figure::before {
  content: "";
  display: block;
  height: 42px;
  border-bottom: 1px solid #e6edf4;
  background:
    linear-gradient(90deg, rgba(20, 89, 152, 0.08), rgba(255, 255, 255, 0.72));
}

.history-classic-media figure span {
  position: absolute;
  left: 16px;
  top: 11px;
  z-index: 2;
  color: #145998;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.history-classic-media img {
  width: 100%;
  height: 168px;
  display: block;
  object-fit: cover;
}

.history-modern-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.history-modern-track div {
  min-height: 76px;
  padding: 16px;
  border: 1px solid #dfe8f1;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 28px rgba(16, 31, 49, 0.06);
}

.history-modern-track strong {
  display: block;
  margin-bottom: 6px;
  color: #145998;
  font-size: 20px;
  line-height: 1;
  font-weight: 800;
}

.history-modern-track span {
  color: #607080;
  font-size: 11.5px;
  line-height: 1.35;
  font-weight: 700;
}

.about-profile {
  min-height: calc(100svh - var(--topbar-height) - var(--navbar-height));
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 44px 0 58px;
  background:
    radial-gradient(circle at 8% 18%, rgba(20, 89, 152, 0.12), transparent 280px),
    radial-gradient(circle at 94% 10%, rgba(233, 79, 141, 0.08), transparent 300px),
    linear-gradient(180deg, #ffffff 0%, #f4f8fb 100%);
}

.about-profile .container {
  max-width: 1120px;
}

.about-profile-shell {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid #dfe8f1;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 28px 74px rgba(16, 31, 49, 0.12);
}

.about-profile-rail {
  position: relative;
  overflow: hidden;
  padding: 34px 26px;
  color: #ffffff;
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.16), transparent 150px),
    linear-gradient(150deg, #071827 0%, #0f4172 64%, #145998 100%);
}

.about-profile-rail::after {
  content: "";
  position: absolute;
  right: -86px;
  bottom: -96px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: rgba(233, 79, 141, 0.18);
}

.about-profile-rail span,
.about-profile-rail strong,
.about-profile-rail p {
  position: relative;
  z-index: 1;
}

.about-profile-rail span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 13px;
  border-radius: 999px;
  color: #cde8fb;
  background: rgba(255, 255, 255, 0.1);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.about-profile-rail strong {
  display: block;
  margin-top: 34px;
  color: #ffffff;
  font-size: 42px;
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: -1.4px;
}

.about-profile-rail p {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  line-height: 1.65;
  font-weight: 500;
}

.about-profile-main {
  padding: 30px;
}

.about-profile-heading {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 26px;
  align-items: end;
  margin-bottom: 22px;
}

.about-profile-heading p {
  margin: 0;
  color: #145998;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.about-profile-heading h1 {
  max-width: none;
  margin: 0;
  color: #071827;
  font-size: 31px;
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -0.7px;
}

.about-profile-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 24px;
  align-items: stretch;
}

.about-profile-body article {
  padding: 22px 24px;
  border: 1px solid #dfe8f1;
  border-radius: 22px;
  background: #ffffff;
}

.about-profile-body p {
  margin: 0 0 12px;
  color: #243444;
  font-size: 13.8px;
  line-height: 1.48;
  font-weight: 500;
  text-align: justify;
}

.about-profile-body p:last-child {
  margin-bottom: 0;
}

.about-profile-gallery {
  display: grid;
  gap: 14px;
}

.about-profile-gallery img {
  width: 100%;
  height: 176px;
  display: block;
  object-fit: cover;
  border: 1px solid #dfe8f1;
  border-radius: 20px;
  box-shadow: 0 14px 30px rgba(16, 31, 49, 0.09);
}

.about-profile-gallery img:first-child {
  height: 194px;
}

.about-profile-milestones {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.about-profile-milestones div {
  min-height: 72px;
  padding: 14px;
  border: 1px solid #dfe8f1;
  border-radius: 17px;
  background: #f8fbfe;
}

.about-profile-milestones strong {
  display: block;
  margin-bottom: 5px;
  color: #145998;
  font-size: 20px;
  line-height: 1;
  font-weight: 800;
}

.about-profile-milestones span {
  color: #607080;
  font-size: 11px;
  line-height: 1.3;
  font-weight: 700;
}

.about-simple {
  min-height: calc(100svh - var(--topbar-height) - var(--navbar-height));
  display: flex;
  align-items: center;
  padding: 46px 0 58px;
  background:
    linear-gradient(90deg, rgba(20, 89, 152, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, #ffffff 0%, #f4f7fa 100%);
  background-size: 54px 54px, auto;
}

.about-simple .container {
  max-width: 1080px;
}

.about-simple-title {
  margin-bottom: 26px;
}

.about-simple-title h1 {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  margin: 0;
  padding: 0 34px;
  border-radius: 999px;
  color: #ffffff;
  background: #201b1d;
  box-shadow: 0 16px 34px rgba(16, 31, 49, 0.16);
  font-size: 25px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.2px;
}

.about-simple-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 44px;
  align-items: start;
}

.about-simple-copy {
  padding: 28px 30px;
  border: 1px solid #dfe8f1;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 64px rgba(16, 31, 49, 0.1);
}

.about-simple-copy p {
  margin: 0 0 13px;
  color: #162434;
  font-size: 15px;
  line-height: 1.48;
  font-weight: 500;
  text-align: justify;
}

.about-simple-copy p:last-child {
  margin-bottom: 0;
}

.about-simple-images {
  display: grid;
  gap: 22px;
  padding-top: 10px;
}

.about-simple-images img {
  width: 100%;
  height: 182px;
  display: block;
  object-fit: cover;
  border: 9px solid #ffffff;
  border-radius: 22px;
  box-shadow: 0 18px 42px rgba(16, 31, 49, 0.16);
}

.mission-simple {
  min-height: calc(100svh - var(--topbar-height) - var(--navbar-height));
  display: flex;
  align-items: flex-start;
  padding: 42px 0 58px;
  background:
    radial-gradient(circle at 12% 18%, rgba(233, 79, 141, 0.07), transparent 260px),
    linear-gradient(180deg, #ffffff 0%, #f5f7fa 100%);
}

.mission-simple .container {
  max-width: 1080px;
}

.mission-simple-title {
  max-width: 270px;
  margin: 0 0 24px 42px;
}

.mission-simple-title h1 {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  border-radius: 999px;
  color: #ffffff;
  background: #201b1d;
  box-shadow:
    8px 0 0 #070707,
    0 14px 30px rgba(16, 31, 49, 0.16);
  font-size: 17px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}

.mission-simple-layout {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 88px;
  align-items: center;
}

.mission-simple-image {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 3px;
  background: #ffffff;
  box-shadow: 0 20px 48px rgba(16, 31, 49, 0.14);
}

.mission-simple-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.55);
  pointer-events: none;
}

.mission-simple-image img {
  width: 100%;
  height: 236px;
  display: block;
  object-fit: cover;
}

.mission-simple-copy {
  max-width: 600px;
  padding: 8px 0;
}

.mission-simple-copy p {
  margin: 0;
  color: #050b14;
  font-size: 16px;
  line-height: 1.22;
  font-weight: 500;
  text-align: justify;
}

.vision-simple {
  min-height: calc(100svh - var(--topbar-height) - var(--navbar-height));
  padding: 42px 0 58px;
  background:
    radial-gradient(circle at 86% 18%, rgba(20, 89, 152, 0.08), transparent 280px),
    linear-gradient(180deg, #ffffff 0%, #f5f7fa 100%);
}

.vision-simple .container {
  max-width: 1080px;
}

.vision-simple-layout {
  display: grid;
  grid-template-columns: minmax(0, 560px) 360px;
  gap: 100px;
  align-items: center;
}

.vision-simple-copy {
  padding-top: 40px;
}

.vision-simple-copy p {
  margin: 0;
  color: #050b14;
  font-size: 15px;
  line-height: 1.18;
  font-weight: 500;
  text-align: justify;
}

.vision-simple-media {
  display: grid;
  gap: 8px;
}

.vision-simple-title {
  max-width: 260px;
  justify-self: center;
  width: 100%;
}

.vision-simple-title h1 {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  border-radius: 999px;
  color: #ffffff;
  background: #201b1d;
  box-shadow:
    8px 0 0 #070707,
    0 14px 30px rgba(16, 31, 49, 0.16);
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}

.vision-simple-image {
  margin: 0;
  overflow: hidden;
  border: 6px solid #ffffff;
  border-radius: 2px;
  box-shadow: 0 20px 48px rgba(16, 31, 49, 0.14);
}

.vision-simple-image img {
  width: 100%;
  height: 190px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.privacy-simple {
  min-height: calc(100svh - var(--topbar-height) - var(--navbar-height));
  padding: 42px 0 58px;
  background:
    radial-gradient(circle at 12% 20%, rgba(233, 79, 141, 0.07), transparent 280px),
    radial-gradient(circle at 88% 18%, rgba(20, 89, 152, 0.08), transparent 280px),
    linear-gradient(180deg, #ffffff 0%, #f5f7fa 100%);
}

.privacy-simple .container {
  max-width: 980px;
}

.privacy-simple-title {
  max-width: 360px;
  margin: 0 auto 24px;
}

.privacy-simple-title h1 {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  border-radius: 999px;
  color: #ffffff;
  background: #201b1d;
  box-shadow:
    8px 0 0 #070707,
    0 14px 30px rgba(16, 31, 49, 0.16);
  font-size: 17px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}

.privacy-simple-card {
  padding: 28px 32px 30px;
  border: 1px solid #dfe8f1;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 64px rgba(16, 31, 49, 0.1);
}

.privacy-simple-card > p {
  max-width: 860px;
  margin: 0 auto 12px;
  color: #111d2b;
  font-size: 14.5px;
  line-height: 1.5;
  font-weight: 500;
  text-align: justify;
}

.privacy-simple-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.privacy-simple-grid article {
  min-height: 154px;
  padding: 18px;
  border: 1px solid #dfe8f1;
  border-radius: 18px;
  background: #f8fbfe;
}

.privacy-simple-grid h2 {
  margin: 0 0 9px;
  color: #145998;
  font-size: 14px;
  line-height: 1.15;
  font-weight: 800;
}

.privacy-simple-grid p {
  margin: 0;
  color: #435160;
  font-size: 12.5px;
  line-height: 1.4;
  font-weight: 500;
}

/* Consolidated Nosotros page */
.company-about {
  --timeline-progress: 100%;
  position: relative;
  overflow: visible;
  padding: 22px 0 54px;
  background:
    linear-gradient(90deg, rgba(20, 89, 152, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, #ffffff 0%, #f6f9fc 46%, #eef5fb 100%);
  background-size: 56px 56px, auto;
}

.company-about::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 360px;
  background: linear-gradient(112deg, rgba(20, 89, 152, 0) 0 52%, rgba(20, 89, 152, 0.09) 52% 64%, rgba(20, 89, 152, 0) 64%);
  pointer-events: none;
}

.company-about .container {
  position: relative;
  z-index: 1;
  max-width: 1120px;
}

.company-about .company-kicker {
  min-height: 25px;
  margin: 0 0 15px;
  letter-spacing: 0;
}

.company-hero-modern {
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 40px;
  align-items: center;
  padding: 34px 0 30px;
}

.company-hero-content h1,
.company-section-head h2,
.company-story-copy h2,
.company-principle-card h2,
.company-commitment h2 {
  margin: 0;
  color: #071827;
  font-weight: 800;
  letter-spacing: 0;
}

.company-hero-content h1 {
  max-width: 820px;
  font-size: 37px;
  line-height: 1.15;
}

.company-hero-content p {
  max-width: 690px;
  margin: 22px 0 0;
  color: #4f6171;
  font-size: 16px;
  line-height: 1.72;
  font-weight: 500;
}

.company-hero-visual {
  position: relative;
  min-height: 370px;
  overflow: hidden;
  border: 1px solid #d8e5f0;
  border-radius: 30px;
  background: #ffffff;
  box-shadow: 0 28px 74px rgba(16, 31, 49, 0.14);
}

.company-hero-visual::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(20, 89, 152, 0.16);
  border-radius: 24px;
  pointer-events: none;
}

.company-hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 370px;
  display: block;
  object-fit: cover;
  transform: scale(1.02);
}

.company-year-badge,
.company-capability {
  position: absolute;
  display: grid;
  border: 1px solid rgba(216, 229, 240, 0.9);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 44px rgba(16, 31, 49, 0.15);
  backdrop-filter: blur(12px);
}

.company-year-badge {
  top: 26px;
  right: 26px;
  min-width: 134px;
  padding: 17px 19px;
  border-radius: 22px;
  animation: companyFloat 6s ease-in-out infinite;
}

.company-year-badge span {
  color: #687988;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.company-year-badge strong {
  color: #145998;
  font-size: 34px;
  line-height: 1;
  font-weight: 800;
}

.company-capability {
  left: 26px;
  right: 26px;
  bottom: 26px;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
  border-radius: 24px;
}

.company-capability strong {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, #145998 0%, #2173b7 100%);
  font-size: 15px;
  font-weight: 800;
}

.company-capability span {
  color: #435464;
  font-size: 12.5px;
  line-height: 1.45;
  font-weight: 700;
}

.company-section-nav {
  position: sticky;
  top: calc(var(--navbar-height) + 12px);
  z-index: 9;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 0 0 34px;
  padding: 8px;
  border: 1px solid rgba(216, 229, 240, 0.94);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 42px rgba(16, 31, 49, 0.08);
  backdrop-filter: blur(16px);
}

.company-section-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #145998;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.company-section-nav a:hover,
.company-section-nav a:focus-visible {
  color: #ffffff;
  background: #145998;
  outline: none;
}

.company-timeline-section,
.company-principles,
.company-principle-card,
.company-commitment {
  scroll-margin-top: calc(var(--navbar-height) + 28px);
}

.company-timeline-section {
  padding: 0 0 28px;
}

.company-timeline-panel {
  position: relative;
  overflow: hidden;
  padding: 34px 34px 38px;
  border: 1px solid #dce8f3;
  border-radius: 30px;
  background:
    linear-gradient(120deg, rgba(20, 89, 152, 0.06) 0 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(247, 251, 254, 0.96) 100%);
  background-size: 42px 42px, auto;
  box-shadow: 0 24px 64px rgba(16, 31, 49, 0.1);
}

.company-timeline-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 8px;
  background: linear-gradient(90deg, #0f4172 0%, #145998 60%, #2c75b2 100%);
}

.company-section-head {
  max-width: 760px;
}

.company-timeline-panel .company-section-head {
  position: relative;
  z-index: 1;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  column-gap: 34px;
  align-items: end;
}

.company-timeline-panel .company-section-head .company-kicker,
.company-timeline-panel .company-section-head h2 {
  grid-column: 1;
}

.company-timeline-panel .company-section-head p {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
  margin: 0;
}

.company-section-head h2,
.company-story-copy h2,
.company-commitment h2 {
  font-size: 34px;
  line-height: 1.12;
}

.company-section-head p {
  max-width: 680px;
  margin: 16px 0 0;
  color: #5b6c7b;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 600;
}

.company-timeline-rich {
  --timeline-progress: 0%;
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
  padding: 48px 0 0;
}

.company-timeline-rich::before,
.company-timeline-rich::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 0;
  height: 3px;
  border-radius: 999px;
  transform: none;
}

.company-timeline-rich::before {
  width: 100%;
  background: #dce8f3;
}

.company-timeline-rich::after {
  width: var(--timeline-progress);
  background: linear-gradient(180deg, #0f4172 0%, #145998 52%, #2c75b2 100%);
  box-shadow: 0 0 18px rgba(20, 89, 152, 0.22);
  transition: width 0.18s ease-out, height 0.18s ease-out;
}

.company-milestone {
  position: relative;
  width: auto;
  min-height: 218px;
  padding: 24px 16px 18px;
  border: 1px solid #dce8f3;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 34px rgba(16, 31, 49, 0.07);
}

.company-milestone:nth-child(even) {
  margin-left: 0;
}

.company-milestone::before {
  content: "";
  position: absolute;
  top: -37px;
  left: 50%;
  width: 16px;
  height: 16px;
  border: 4px solid #ffffff;
  border-radius: 50%;
  background: #145998;
  box-shadow: 0 0 0 8px rgba(20, 89, 152, 0.12);
  transform: translateX(-50%);
  animation: companyPulse 2.6s ease-in-out infinite;
}

.company-milestone:nth-child(odd)::before {
  right: auto;
}

.company-milestone:nth-child(even)::before {
  left: 50%;
}

.company-milestone span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  margin-bottom: 14px;
  padding: 0 12px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #0f4172 0%, #145998 100%);
  font-size: 13px;
  font-weight: 800;
}

.company-milestone:nth-child(3n) span {
  background: linear-gradient(135deg, #0f4172 0%, #145998 100%);
}

.company-milestone:nth-child(3n + 2) span {
  background: linear-gradient(135deg, #0f4172 0%, #145998 100%);
}

.company-milestone h3 {
  margin: 0 0 10px;
  color: #071827;
  font-size: 16px;
  line-height: 1.18;
  font-weight: 800;
}

.company-milestone p {
  margin: 0;
  color: #5c6d7b;
  font-size: 11.5px;
  line-height: 1.52;
  font-weight: 600;
}

.company-story-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 410px;
  gap: 34px;
  align-items: stretch;
  padding: 36px 0 58px;
}

.company-story-copy {
  padding: 34px;
  border: 1px solid #dce8f3;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 54px rgba(16, 31, 49, 0.09);
}

.company-story-copy p {
  margin: 17px 0 0;
  color: #4c5e6e;
  font-size: 14.5px;
  line-height: 1.72;
  font-weight: 500;
}

.company-story-media {
  display: grid;
  grid-template-rows: minmax(260px, 1fr) auto;
  gap: 14px;
}

.company-story-media img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  display: block;
  object-fit: cover;
  border: 1px solid #dce8f3;
  border-radius: 28px;
  box-shadow: 0 22px 54px rgba(16, 31, 49, 0.1);
}

.company-story-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.company-story-facts span {
  min-height: 78px;
  display: grid;
  align-content: center;
  padding: 14px;
  border: 1px solid #dce8f3;
  border-radius: 18px;
  color: #657685;
  background: #ffffff;
  font-size: 10.5px;
  line-height: 1.25;
  font-weight: 800;
}

.company-story-facts strong {
  display: block;
  margin-bottom: 5px;
  color: #145998;
  font-size: 18px;
  line-height: 1;
  font-weight: 800;
}

.company-principles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  padding: 0 0 46px;
}

.company-principle-card {
  position: relative;
  overflow: hidden;
  min-height: 352px;
  padding: 34px;
  border: 1px solid #dce8f3;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 22px 54px rgba(16, 31, 49, 0.08);
}

.company-principle-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 7px;
  background: linear-gradient(90deg, #0f4172 0%, #145998 58%, #2c75b2 100%);
}

.company-principle-card span {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 16px;
  color: #ffffff;
  background: #145998;
  font-size: 14px;
  font-weight: 800;
}

.company-principle-card:nth-child(2) span {
  background: #145998;
}

.company-principle-card h2 {
  font-size: 30px;
  line-height: 1.12;
}

.company-principle-card p {
  margin: 16px 0 0;
  color: #4e6070;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 500;
}

.company-commitment {
  display: grid;
  grid-template-columns: 0.82fr minmax(0, 1fr);
  gap: 26px;
  align-items: start;
  padding: 0 0 10px;
}

.company-commitment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.company-commitment-grid article {
  min-height: 166px;
  padding: 22px;
  border: 1px solid #dce8f3;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(16, 31, 49, 0.07);
}

.company-commitment-grid strong {
  display: block;
  margin-bottom: 12px;
  color: #145998;
  font-size: 18px;
  line-height: 1.15;
  font-weight: 800;
}

.company-commitment-grid span {
  color: #5c6d7b;
  font-size: 12.5px;
  line-height: 1.55;
  font-weight: 600;
}

.company-animate {
  opacity: 1;
  transform: none;
}

.company-motion-ready .company-animate {
  opacity: 1;
  transform: translateY(18px);
}

.company-motion-ready .company-animate.is-visible {
  opacity: 1;
  transform: none;
  transition:
    opacity 0.68s ease,
    transform 0.68s cubic-bezier(0.22, 1, 0.36, 1);
}

.company-motion-ready .company-milestone:nth-child(2),
.company-motion-ready .company-principle-card:nth-child(2),
.company-motion-ready .company-commitment-grid article:nth-child(2) {
  transition-delay: 0.08s;
}

.company-motion-ready .company-milestone:nth-child(3),
.company-motion-ready .company-commitment-grid article:nth-child(3) {
  transition-delay: 0.16s;
}

.company-motion-ready .company-milestone:nth-child(4) {
  transition-delay: 0.24s;
}

.company-motion-ready .company-milestone:nth-child(5) {
  transition-delay: 0.32s;
}

.company-motion-ready .company-milestone:nth-child(6) {
  transition-delay: 0.4s;
}

@keyframes companyFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes companyPulse {
  0%,
  100% {
    box-shadow: 0 0 0 8px rgba(20, 89, 152, 0.12);
  }

  50% {
    box-shadow: 0 0 0 13px rgba(20, 89, 152, 0.1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .company-year-badge,
  .company-milestone::before {
    animation: none;
  }

  .company-motion-ready .company-animate,
  .company-motion-ready .company-animate.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .company-timeline-rich::after {
    transition: none;
  }
}

.solution-selector {
  min-height: calc(100svh - var(--navbar-height));
  padding: 28px 0 58px;
  background:
    linear-gradient(118deg, rgba(20, 89, 152, 0.07) 0 18%, transparent 18% 100%),
    linear-gradient(180deg, #f8fbfe 0%, #eef6fb 52%, #ffffff 100%);
}

.solution-selector .container {
  max-width: 1160px;
}

.solution-selector-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 26px;
  align-items: center;
  margin-bottom: 18px;
  padding: 24px 26px;
  border: 1px solid #dce8f3;
  border-radius: 26px;
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.98) 0 62%, rgba(235, 246, 253, 0.98) 62% 100%);
  box-shadow: 0 24px 58px rgba(16, 31, 49, 0.09);
}

.solution-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 14px;
  color: #145998;
  font-size: 11px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.solution-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #145998;
}

.solution-selector-head h1 {
  max-width: 720px;
  margin: 0;
  color: #101f31;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: 0;
}

.solution-selector-head p:not(.solution-kicker) {
  max-width: 670px;
  margin: 12px 0 0;
  color: #526474;
  font-size: 15px;
  line-height: 1.7;
  font-weight: 500;
}

.solution-rule {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  padding: 16px;
  border: 1px solid #d9e6f1;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(16, 31, 49, 0.06);
}

.solution-rule strong {
  grid-column: 1 / -1;
  color: #102034;
  font-size: 14px;
  line-height: 1.25;
}

.solution-rule span {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  color: #526474;
  background: #f2f7fb;
  font-size: 12px;
  font-weight: 700;
}

.solution-rule span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #145998;
}

.solution-progress {
  counter-reset: solution-step;
  display: grid;
  gap: 10px;
  overflow: visible;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.solution-progress span {
  position: relative;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 12px 0 45px;
  border: 1px solid #dce8f3;
  border-radius: 14px;
  color: #617384;
  background: #ffffff;
  font-size: 12px;
  font-weight: 800;
  text-align: left;
  box-shadow: 0 10px 22px rgba(16, 31, 49, 0.05);
}

.solution-progress span::before {
  counter-increment: solution-step;
  content: counter(solution-step);
  position: absolute;
  left: 12px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #145998;
  background: #e9f5fc;
  font-size: 11px;
  font-weight: 800;
}

.solution-progress span.is-complete {
  color: #145998;
  border-color: rgba(20, 89, 152, 0.18);
  background: #f2f9fd;
}

.solution-progress span.is-active {
  color: #ffffff;
  border-color: #145998;
  background: linear-gradient(135deg, #145998 0%, #1f76b7 100%);
  box-shadow: 0 16px 30px rgba(20, 89, 152, 0.2);
}

.solution-progress span.is-active::before {
  color: #145998;
  background: #ffffff;
}

.solution-workspace {
  display: grid;
  grid-template-columns: 285px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.solution-side,
.solution-step-card,
.solution-result-panel {
  border: 1px solid #d9e6f1;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 54px rgba(16, 31, 49, 0.1);
}

.solution-side {
  position: sticky;
  top: calc(var(--navbar-height) + 18px);
  display: grid;
  gap: 16px;
  padding: 20px;
}

.solution-summary {
  padding-top: 16px;
  border-top: 1px solid #e2edf5;
}

.solution-summary > p {
  margin: 0 0 14px;
  color: #145998;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.solution-summary dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.solution-summary div {
  padding-bottom: 12px;
  border-bottom: 1px solid #e5eef6;
}

.solution-summary div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.solution-summary dt {
  margin-bottom: 4px;
  color: #6b7a88;
  font-size: 11px;
  font-weight: 700;
}

.solution-summary dd {
  margin: 0;
  color: #101f31;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 800;
}

.solution-step-card,
.solution-result-panel {
  position: relative;
  overflow: hidden;
  min-height: 470px;
  padding: 28px;
}

.solution-step-card::before,
.solution-result-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, #145998 0%, #33a3d7 100%);
}

.solution-step-count {
  margin: 0 0 10px;
  color: #145998;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.solution-step-card h2,
.solution-result-panel h2 {
  margin: 0;
  color: #101f31;
  font-size: 28px;
  line-height: 1.14;
  font-weight: 800;
}

.solution-step-card > p:not(.solution-step-count),
.solution-result-panel p:not(.solution-kicker) {
  max-width: 650px;
  margin: 12px 0 0;
  color: #607282;
  font-size: 14px;
  line-height: 1.65;
  font-weight: 500;
}

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

.solution-options.is-many-options {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.solution-option {
  position: relative;
  min-height: 78px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 12px 12px 12px 42px;
  border: 1px solid #dbe7f1;
  border-radius: 14px;
  color: #142235;
  background: #ffffff;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.solution-option::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 50%;
  width: 17px;
  height: 17px;
  border: 2px solid #b8cadd;
  border-radius: 50%;
  transform: translateY(-50%);
}

.solution-option::after {
  content: "";
  position: absolute;
  left: 20px;
  top: 50%;
  width: 5px;
  height: 9px;
  border-right: 2px solid transparent;
  border-bottom: 2px solid transparent;
  transform: translateY(-58%) rotate(40deg);
}

.solution-option strong {
  font-size: 13px;
  line-height: 1.2;
  font-weight: 800;
}

.solution-option span {
  color: #607282;
  font-size: 11px;
  line-height: 1.35;
  font-weight: 600;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.solution-option:hover,
.solution-option:focus-visible {
  outline: none;
  transform: translateY(-2px);
  border-color: rgba(20, 89, 152, 0.35);
  box-shadow: 0 14px 26px rgba(16, 31, 49, 0.08);
}

.solution-option.is-selected {
  border-color: #145998;
  color: #ffffff;
  background: linear-gradient(135deg, #145998 0%, #1f76b7 100%);
  box-shadow: 0 18px 34px rgba(20, 89, 152, 0.2);
}

.solution-option.is-selected::before {
  border-color: #ffffff;
  background: #ffffff;
}

.solution-option.is-selected::after {
  border-color: #145998;
}

.solution-option.is-selected span {
  color: rgba(255, 255, 255, 0.86);
}

.solution-option:disabled {
  cursor: not-allowed;
  opacity: 0.48;
  transform: none;
  box-shadow: none;
}

.solution-actions,
.solution-result-actions {
  position: sticky;
  bottom: 0;
  z-index: 4;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin: 18px -24px -24px;
  padding: 16px 24px 20px;
  border-top: 1px solid #e2edf5;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
}

.solution-primary,
.solution-secondary {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 12px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.solution-primary {
  border: 0;
  color: #ffffff;
  background: #145998;
}

.solution-secondary {
  border: 1px solid #d6e4ef;
  color: #145998;
  background: #ffffff;
}

.solution-primary:disabled,
.solution-secondary:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.solution-result-panel {
  grid-column: 2;
}

.solution-results {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.solution-result-card {
  position: relative;
  overflow: hidden;
  padding: 20px;
  border: 1px solid #dbe7f1;
  border-radius: 18px;
  background: #ffffff;
}

.solution-result-card.is-main {
  border-color: rgba(20, 89, 152, 0.34);
  background: linear-gradient(180deg, #ffffff 0%, #f2f9ff 100%);
}

.solution-result-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.solution-result-top span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  color: #145998;
  background: #e9f5fc;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.solution-result-top strong {
  color: #145998;
  font-size: 18px;
  font-weight: 800;
}

.solution-result-card h3 {
  margin: 0;
  color: #101f31;
  font-size: 24px;
  line-height: 1.15;
  font-weight: 800;
}

.solution-result-card p {
  margin: 10px 0 0;
  color: #5d6d7c;
  font-size: 13px;
  line-height: 1.6;
  font-weight: 500;
}

.solution-result-card ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.solution-result-card li {
  color: #27384a;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 700;
}

.solution-result-card li::before {
  content: "";
  width: 7px;
  height: 7px;
  display: inline-block;
  margin-right: 8px;
  border-radius: 50%;
  background: #145998;
}

.solution-result-card a,
.solution-result-card button {
  display: inline-flex;
  margin-top: 16px;
  padding: 0;
  border: 0;
  color: #145998;
  background: transparent;
  font-family: inherit;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.solution-simple-head {
  max-width: 760px;
  grid-template-columns: 1fr;
  margin: 0 auto 14px;
  padding: 14px 22px 16px;
  text-align: center;
  background: #ffffff;
}

.solution-simple-head h1 {
  max-width: 660px;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.12;
}

.solution-simple-head p:not(.solution-kicker) {
  max-width: 620px;
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.52;
}

.solution-simple-head h1,
.solution-simple-head p:not(.solution-kicker) {
  margin-left: auto;
  margin-right: auto;
}

.solution-simple-head .solution-kicker {
  justify-content: center;
}

.solution-simple-workspace {
  width: min(980px, 100%);
  display: block;
  margin: 0 auto;
}

.solution-simple-workspace > .solution-progress {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 0 0 14px;
  overflow: visible;
}

.solution-simple-workspace > .solution-progress span {
  min-height: 36px;
  padding: 0 14px 0 38px;
  border-radius: 999px;
  box-shadow: none;
  white-space: nowrap;
}

.solution-simple-workspace > .solution-progress span::before {
  left: 8px;
  width: 22px;
  height: 22px;
}

.solution-simple-workspace .solution-step-card,
.solution-simple-workspace .solution-result-panel {
  min-height: auto;
  padding: 26px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(16, 31, 49, 0.1);
}

.solution-simple-workspace .solution-step-card::before,
.solution-simple-workspace .solution-result-panel::before {
  height: 4px;
}

.solution-card-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.solution-card-status .solution-step-count {
  margin: 0;
  flex: 0 0 auto;
}

.solution-card-status .solution-summary {
  flex: 1;
  padding: 0;
  border: 0;
}

.solution-card-status .solution-summary div {
  padding-bottom: 0;
  border-bottom: 0;
}

.solution-summary-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.solution-summary-pills span {
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  max-width: 210px;
  padding: 0 10px;
  border-radius: 999px;
  color: #526474;
  background: #f1f6fa;
  font-size: 10px;
  line-height: 1.2;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.solution-simple-workspace .solution-step-card h2,
.solution-simple-workspace .solution-result-panel h2 {
  max-width: 760px;
  font-size: 30px;
}

.solution-simple-workspace .solution-step-card > p:not(.solution-step-count),
.solution-simple-workspace .solution-result-panel p:not(.solution-kicker) {
  max-width: 760px;
  margin-top: 8px;
}

.solution-simple-workspace .solution-options {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.solution-simple-workspace .solution-options.is-many-options {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.solution-simple-workspace .solution-options.is-group-options {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 22px;
}

.solution-simple-workspace .solution-options.is-group-options .solution-option {
  min-height: 124px;
  padding: 22px 18px 18px;
  text-align: center;
}

.solution-simple-workspace .solution-options.is-group-options .solution-option::before {
  position: static;
  width: 38px;
  height: 38px;
  margin: 0 auto 8px;
  border: 0;
  border-radius: 14px;
  background: #e9f5fc;
  transform: none;
}

.solution-simple-workspace .solution-options.is-group-options .solution-option::after {
  content: none;
}

.solution-simple-workspace .solution-options.is-group-options .solution-option strong {
  font-size: 17px;
}

.solution-simple-workspace .solution-option {
  min-height: 72px;
  border-radius: 12px;
}

.solution-simple-workspace .solution-option-change {
  border-style: dashed;
  color: #145998;
  background: #f6fbff;
}

.solution-simple-workspace .solution-actions,
.solution-simple-workspace .solution-result-actions {
  position: static;
  margin: 18px 0 0;
  padding: 0;
  border-top: 0;
  background: transparent;
  backdrop-filter: none;
}

.solution-simple-workspace .solution-primary,
.solution-simple-workspace .solution-secondary {
  border-radius: 999px;
}

.solution-board {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 18px;
  align-items: start;
}

.solution-board-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 18px;
  border: 1px solid #dce8f3;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 58px rgba(16, 31, 49, 0.09);
}

.solution-board-column {
  min-width: 0;
}

.solution-column-head {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  margin-bottom: 10px;
  padding-bottom: 9px;
  border-bottom: 1px solid #dce8f3;
}

.solution-column-head span {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: #145998;
  font-size: 11px;
  font-weight: 800;
}

.solution-column-head h2 {
  margin: 0;
  color: #27384a;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.9px;
  text-transform: uppercase;
}

.solution-board-column > p {
  margin: 12px 0 7px;
  color: #8794a2;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.solution-board-options {
  display: grid;
  gap: 6px;
}

.solution-board-option {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 7px 10px;
  border: 1px solid #d7e1ea;
  border-radius: 8px;
  color: #263746;
  background: #fbfcfd;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  transition: color 0.16s ease, background 0.16s ease, border-color 0.16s ease, transform 0.16s ease;
}

.solution-board-option span {
  min-width: 0;
  overflow: hidden;
  font-size: 12px;
  line-height: 1.25;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.solution-board-option small {
  flex: 0 0 auto;
  color: #a04b55;
  font-size: 9px;
  font-weight: 800;
}

.solution-board-option:hover,
.solution-board-option:focus-visible {
  outline: none;
  color: #145998;
  border-color: rgba(20, 89, 152, 0.34);
  background: #f4faff;
  transform: translateY(-1px);
}

.solution-board-option.is-selected {
  border-color: #145998;
  color: #ffffff;
  background: #145998;
  box-shadow: 0 10px 18px rgba(20, 89, 152, 0.16);
}

.solution-board-option.is-selected small {
  color: rgba(255, 255, 255, 0.82);
}

.solution-board-option:disabled {
  cursor: not-allowed;
  color: #9aa7b3;
  background: #f2f5f7;
  opacity: 0.65;
  transform: none;
  box-shadow: none;
}

.solution-live-panel {
  position: sticky;
  top: calc(var(--navbar-height) + 18px);
  padding: 20px;
  border: 1px solid #dce8f3;
  border-radius: 24px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f4faff 100%);
  box-shadow: 0 24px 58px rgba(16, 31, 49, 0.11);
}

.solution-live-panel h2 {
  margin: 0;
  color: #101f31;
  font-size: 25px;
  line-height: 1.12;
  font-weight: 800;
}

.solution-live-panel p:not(.solution-kicker) {
  margin: 10px 0 0;
  color: #5d6d7c;
  font-size: 13px;
  line-height: 1.55;
  font-weight: 500;
}

.solution-live-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}

.solution-live-summary span {
  max-width: 100%;
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  color: #526474;
  background: #edf5fb;
  font-size: 10px;
  line-height: 1.2;
  font-weight: 800;
}

.solution-live-results {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.solution-live-empty,
.solution-live-card {
  padding: 14px;
  border: 1px solid #d8e5f0;
  border-radius: 14px;
  background: #ffffff;
}

.solution-live-empty {
  display: grid;
  gap: 4px;
}

.solution-live-empty strong {
  color: #101f31;
  font-size: 14px;
}

.solution-live-empty span {
  color: #6a7886;
  font-size: 12px;
  line-height: 1.4;
}

.solution-live-card.is-main {
  border-color: rgba(20, 89, 152, 0.32);
  box-shadow: 0 16px 30px rgba(20, 89, 152, 0.1);
}

.solution-live-card > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.solution-live-card > div span {
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  border-radius: 999px;
  color: #145998;
  background: #e9f5fc;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.solution-live-card > div strong {
  color: #145998;
  font-size: 16px;
  font-weight: 800;
}

.solution-live-card h3 {
  margin: 0;
  color: #101f31;
  font-size: 17px;
  line-height: 1.18;
  font-weight: 800;
}

.solution-live-card p {
  margin: 8px 0 0;
  color: #607282;
  font-size: 11px;
  line-height: 1.45;
  font-weight: 600;
}

.solution-live-card a,
.solution-live-card button {
  display: inline-flex;
  margin-top: 10px;
  padding: 0;
  border: 0;
  color: #145998;
  background: transparent;
  font-family: inherit;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.solution-live-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 16px;
}

.solution-live-actions .solution-primary,
.solution-live-actions .solution-secondary {
  width: 100%;
  min-height: 40px;
  border-radius: 10px;
}

.solution-recommender {
  display: grid;
  gap: 18px;
}

.solution-ajax-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.42fr);
  gap: 18px;
  align-items: start;
}

.solution-v4-card {
  padding: clamp(18px, 2.4vw, 26px);
  border: 1px solid #dce8f3;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(245, 250, 254, 0.96));
  box-shadow: 0 24px 58px rgba(16, 31, 49, 0.09);
}

.solution-v4-priority {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.solution-v4-priority span {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid #dce8f3;
  border-radius: 999px;
  color: #5a6d7f;
  background: #ffffff;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 700;
}

.solution-v4-priority strong {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: #145998;
  font-size: 11px;
  font-weight: 800;
}

.solution-v4-grid {
  display: grid;
  grid-template-columns: 1.08fr 1fr 1fr;
  gap: 16px;
}

.solution-v4-column {
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(220, 232, 243, 0.9);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
}

.solution-v4-column > p {
  margin: 12px 0 7px;
  color: #8794a2;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.solution-v4-tags {
  display: grid;
  gap: 6px;
}

.solution-v4-tag {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 7px 10px;
  border: 1px solid #d7e1ea;
  border-radius: 8px;
  color: #263746;
  background: #fbfcfd;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  transition: color 0.16s ease, background 0.16s ease, border-color 0.16s ease, transform 0.16s ease, box-shadow 0.16s ease;
}

.solution-v4-tag span {
  min-width: 0;
  overflow: hidden;
  font-size: 12px;
  line-height: 1.25;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.solution-v4-tag:hover,
.solution-v4-tag:focus-visible {
  outline: none;
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(20, 89, 152, 0.08);
}

.solution-v4-substrate.is-selected {
  border-color: #145998;
  color: #ffffff;
  background: #145998;
}

.solution-v4-industry.is-selected {
  border-color: #9a4aa3;
  color: #ffffff;
  background: #7d3f91;
}

.solution-v4-resistance.is-selected {
  border-color: #2c82bc;
  color: #ffffff;
  background: #2c82bc;
}

.solution-v4-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin: 0 0 16px;
}

.solution-v4-actions .solution-secondary {
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 11px;
}

.solution-ajax-panel {
  position: sticky;
  top: calc(var(--navbar-height) + 18px);
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid #dce8f3;
  border-radius: 24px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f4faff 100%);
  box-shadow: 0 24px 58px rgba(16, 31, 49, 0.11);
}

.solution-ajax-head h2 {
  margin: 0;
  color: #101f31;
  font-size: clamp(22px, 2vw, 29px);
  line-height: 1.07;
  font-weight: 800;
  letter-spacing: 0;
}

.solution-ajax-head p:not(.solution-kicker) {
  margin: 8px 0 0;
  color: #5d6d7c;
  font-size: 12px;
  line-height: 1.46;
  font-weight: 600;
}

.solution-ajax-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.solution-ajax-summary span {
  min-height: 25px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  border-radius: 999px;
  color: #526474;
  background: #edf5fb;
  font-size: 10px;
  line-height: 1.2;
  font-weight: 800;
}

.solution-v4-results {
  display: grid;
  gap: 14px;
  scroll-margin-top: calc(var(--navbar-height) + 22px);
}

.solution-ajax-panel .solution-v4-level-section {
  gap: 8px;
}

.solution-ajax-panel .solution-v4-level-head {
  min-height: auto;
  padding: 9px 11px;
}

.solution-ajax-panel .solution-v4-level-head span {
  display: none;
}

.solution-ajax-panel .solution-v4-result-grid {
  grid-template-columns: 1fr;
  gap: 10px;
}

.solution-ajax-panel .solution-v4-result-card {
  padding: 12px;
}

.solution-ajax-panel .solution-v4-result-card p {
  display: none;
}

.solution-ajax-panel .solution-v4-certs {
  gap: 3px;
}

.solution-ajax-panel .solution-v4-certs span {
  min-height: 18px;
}

.solution-ajax-panel .solution-v4-result-card small {
  font-size: 9px;
  line-height: 1.28;
}

.solution-ajax-panel .solution-v4-result-card a,
.solution-ajax-panel .solution-v4-result-card button {
  min-height: 28px;
}

.solution-ajax-panel .solution-v4-result-top strong {
  font-size: 13px;
}

.solution-ajax-panel .solution-v4-score {
  gap: 6px;
}

.solution-v4-empty {
  display: grid;
  gap: 6px;
  padding: 22px;
  border: 1px dashed #cbdbea;
  border-radius: 18px;
  color: #6a7886;
  background: #f7fbfe;
  text-align: center;
}

.solution-v4-empty strong {
  color: #101f31;
  font-size: 15px;
}

.solution-v4-empty span {
  font-size: 13px;
  line-height: 1.45;
}

.solution-v4-level-section {
  display: grid;
  gap: 10px;
}

.solution-v4-level-head {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 14px;
  border: 1px solid #dce8f3;
  border-radius: 14px;
  background: #ffffff;
}

.solution-v4-level-head strong {
  display: block;
  color: #101f31;
  font-size: 15px;
  font-weight: 800;
}

.solution-v4-level-head span {
  display: block;
  margin-top: 2px;
  color: #617282;
  font-size: 11px;
  line-height: 1.35;
  font-weight: 600;
}

.solution-v4-level-head em {
  flex: 0 0 auto;
  color: #6a7886;
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
}

.solution-v4-level-head-3 {
  border-color: rgba(0, 168, 120, 0.22);
  background: #eefaf5;
}

.solution-v4-level-head-2 {
  border-color: rgba(20, 89, 152, 0.2);
  background: #edf6fc;
}

.solution-v4-level-head-1 {
  background: #f6f8fa;
}

.solution-v4-result-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 12px;
}

.solution-v4-result-card {
  display: grid;
  gap: 9px;
  padding: 14px;
  border: 1px solid #d8e5f0;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(16, 31, 49, 0.07);
}

.solution-v4-result-card.solution-v4-level-3 {
  border-color: rgba(0, 168, 120, 0.62);
}

.solution-v4-result-card.solution-v4-level-2 {
  border-color: rgba(20, 89, 152, 0.38);
}

.solution-v4-result-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.solution-v4-result-top strong {
  color: #101f31;
  font-size: 14px;
  line-height: 1.18;
  font-weight: 800;
}

.solution-v4-result-top span {
  flex: 0 0 auto;
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  padding: 0 8px;
  border-radius: 6px;
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
}

.solution-family-cera {
  background: #7c8792;
}

.solution-family-cera-resina {
  background: #7d3f91;
}

.solution-family-resina {
  background: #b73242;
}

.solution-v4-score {
  display: grid;
  grid-template-columns: 1fr 34px;
  align-items: center;
  gap: 8px;
}

.solution-v4-score::before {
  content: "";
  grid-column: 1;
  grid-row: 1;
  height: 5px;
  border-radius: 999px;
  background: #edf2f6;
}

.solution-v4-score i {
  grid-column: 1;
  grid-row: 1;
  height: 5px;
  border-radius: 999px;
  background: #145998;
}

.solution-v4-score b {
  color: #145998;
  font-size: 11px;
  font-weight: 800;
  text-align: right;
}

.solution-v4-result-card p {
  margin: 0;
  color: #5d6d7c;
  font-size: 12px;
  line-height: 1.48;
  font-weight: 600;
}

.solution-v4-certs {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.solution-v4-certs span {
  min-height: 20px;
  display: inline-flex;
  align-items: center;
  padding: 0 6px;
  border: 1px solid #dce8f3;
  border-radius: 5px;
  color: #5d6d7c;
  background: #f6f9fb;
  font-size: 9px;
  font-weight: 800;
}

.solution-v4-result-card small {
  color: #7a8793;
  font-size: 10px;
  line-height: 1.35;
  font-weight: 600;
}

.solution-v4-result-card small b {
  color: #4e5d6b;
}

.solution-v4-result-card a,
.solution-v4-result-card button {
  width: max-content;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-top: 2px;
  padding: 0 12px;
  border: 1px solid rgba(20, 89, 152, 0.2);
  border-radius: 999px;
  color: #145998;
  background: #ffffff;
  font-family: inherit;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.solution-v4-result-card a:hover,
.solution-v4-result-card button:hover,
.solution-v4-result-card a:focus-visible,
.solution-v4-result-card button:focus-visible {
  outline: none;
  color: #ffffff;
  background: #145998;
}

.solution-v4-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: #6a7886;
  font-size: 11px;
  font-weight: 800;
}

.solution-v4-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.solution-v4-legend i {
  width: 10px;
  height: 10px;
  border-radius: 3px;
}

.logistics-selector {
  display: none;
}

.industry-quote-cta {
  width: 100%;
  padding: 18px 0 22px;
  background:
    radial-gradient(circle at 90% 12%, rgba(20, 89, 152, 0.08), transparent 280px),
    linear-gradient(180deg, #ffffff 0%, #f7fbfe 100%);
}

.industry-quote-cta .container {
  max-width: none;
  padding-inline: clamp(18px, 4vw, 56px);
}

.industry-quote-cta-button {
  width: 100%;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(20, 89, 152, 0.18);
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #145998, #1f75b8);
  box-shadow: 0 14px 34px rgba(20, 89, 152, 0.16);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.industry-quote-cta-button:hover,
.industry-quote-cta-button:focus-visible {
  outline: none;
  transform: translateY(-1px);
  background: linear-gradient(135deg, #0f477d, #1a68a6);
  box-shadow: 0 18px 40px rgba(20, 89, 152, 0.22);
}
