:root {
  --ml-primary: #1d5fa8;
  --ml-primary-deep: #1b3a6b;
  --ml-primary-dark: #0f2a5c;
  --ml-primary-pale: #f0f6ff;
  --ml-primary-light: #e8f0fb;
  --ml-red: #e4002b;
  --ml-red-hover: #c90027;
  --ml-text: #1a2332;
  --ml-text-deep: #1b3a6b;
  --ml-text-body: #4a5568;
  --ml-text-muted: #6a7e9a;
  --ml-text-light: #a8c4e0;
  --ml-border: #e2e8f0;
  --ml-border-blue: #d0e2f5;
  --ml-surface: #ffffff;
  --ml-section: #f7faff;
  --ml-section-testimonial: #f4f7fb;
  --ml-container: 1280px;
  --ml-gutter: 80px;
  --ml-radius-sm: 3px;
  --ml-radius: 4px;
  --ml-radius-card: 8px;
  --ml-radius-large: 12px;
  --ml-shadow-card: 0 8px 24px rgba(27, 58, 107, 0.094);
  --ml-font: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--ml-surface);
  color: var(--ml-text-body);
  font-family: var(--ml-font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

img,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
p,
figure {
  margin: 0;
}

.site-container {
  width: min(var(--ml-container), calc(100% - (var(--ml-gutter) * 2)));
  margin: 0 auto;
}

.screen-reader-text,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 1000;
  top: 8px;
  left: 8px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  margin: 0;
  overflow: visible;
  clip: auto;
  color: #fff;
  background: var(--ml-primary-dark);
}

:focus-visible {
  outline: 3px solid #7bd3ee;
  outline-offset: 3px;
}

/* Shared buttons and section titles */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: var(--ml-radius);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.button svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button:hover {
  transform: translateY(-1px);
}

.button--red {
  background: var(--ml-red);
}

.button--red:hover {
  background: var(--ml-red-hover);
}

.button--blue {
  background: var(--ml-primary);
}

.button--blue:hover {
  background: #164d8b;
}

.button--outline-light {
  border-color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.07);
}

.button--outline-light:hover {
  color: var(--ml-primary-deep);
  background: #fff;
}

.button--compact {
  min-height: 46px;
  padding-inline: 20px;
  font-size: 14px;
}

.section-heading {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  margin-bottom: 12px;
  padding: 0 12px;
  border-radius: var(--ml-radius-sm);
  color: var(--ml-primary);
  background: var(--ml-primary-light);
  font-size: 11px;
  font-weight: 700;
  line-height: 26px;
  letter-spacing: 0.02em;
}

.section-eyebrow--left {
  margin-bottom: 18px;
}

.section-heading h2,
.about-section h2,
.quality-section h2,
.quick-quote-section h2 {
  color: var(--ml-primary-deep);
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.2;
}

.section-description {
  width: min(640px, 100%);
  margin-top: 12px;
  color: var(--ml-text-muted);
  font-size: 16px;
  line-height: 1.22;
}

.section-heading--light h2,
.section-heading--light .section-description {
  color: #fff;
}

.section-heading--light .section-description {
  color: var(--ml-text-light);
}

.section-heading--accent-red .section-eyebrow {
  color: #ff6b6b;
  background: rgba(228, 0, 43, 0.14);
}

/* Header */
.site-header {
  position: relative;
  z-index: 30;
}

.topbar {
  height: 40px;
  color: var(--ml-text-light);
  background: var(--ml-primary-deep);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.topbar p {
  font-size: 12px;
  line-height: 15px;
}

.topbar p span {
  display: inline-block;
  margin-inline: 12px;
  color: #79a2ce;
}

.topbar__actions,
.language-flags {
  display: flex;
  align-items: center;
}

.topbar__actions {
  gap: 20px;
}

.language-flags {
  gap: 7px;
}

.language-flags img {
  width: 17px;
  height: 12px;
  border-radius: 1px;
  object-fit: cover;
}

.header-search {
  display: grid;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  color: #e7f3ff;
  background: transparent;
  cursor: pointer;
  place-items: center;
}

.header-search svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
}

.main-navigation-wrap {
  height: 72px;
  border-bottom: 1px solid var(--ml-border);
  background: #fff;
}

.main-navigation {
  display: grid;
  grid-template-columns: 176px 1fr auto;
  align-items: center;
  height: 100%;
}

.site-branding,
.site-branding .custom-logo-link,
.default-logo {
  display: block;
  width: 126px;
  height: 36px;
}

.site-branding img {
  width: 126px;
  height: 36px;
  object-fit: contain;
}

.site-navigation {
  justify-self: start;
  margin-left: 89px;
}

.site-navigation .menu {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.site-navigation .menu-item a {
  display: block;
  color: var(--ml-text-body);
  font-size: 14px;
  font-weight: 700;
  line-height: 17px;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.site-navigation .current-menu-item > a,
.site-navigation .menu-item a:hover {
  color: var(--ml-primary-deep);
}

.header-quote {
  display: inline-grid;
  width: 124px;
  height: 40px;
  border-radius: var(--ml-radius);
  color: #fff;
  background: var(--ml-red);
  font-size: 14px;
  font-weight: 700;
  place-items: center;
  transition: background-color 0.2s ease;
}

.header-quote:hover {
  background: var(--ml-red-hover);
}

.menu-toggle {
  display: none;
}

.header-search-panel {
  position: absolute;
  z-index: 5;
  top: 112px;
  right: 0;
  left: 0;
  padding: 16px 0;
  border-bottom: 1px solid var(--ml-border);
  background: #fff;
  box-shadow: 0 8px 20px rgba(15, 42, 92, 0.1);
}

.header-search-panel__inner {
  display: flex;
  gap: 10px;
}

.header-search-panel input {
  min-width: 0;
  flex: 1;
  height: 44px;
  padding: 0 14px;
  border: 1px solid var(--ml-border-blue);
  border-radius: var(--ml-radius);
}

.header-search-panel button {
  padding: 0 20px;
  border: 0;
  border-radius: var(--ml-radius);
  color: #fff;
  background: var(--ml-primary);
  font-weight: 700;
  cursor: pointer;
}

/* Hero and service bar */
.home-hero {
  position: relative;
  height: 600px;
  overflow: hidden;
  color: #fff;
  background-color: var(--ml-primary-dark);
  background-image:
    linear-gradient(
      90deg,
      rgba(15, 42, 92, 0.99) 0%,
      rgba(27, 58, 107, 0.86) 45%,
      rgba(29, 95, 168, 0.35) 100%
    ),
    url("../images/home-hero.png");
  background-position: center, center;
  background-repeat: no-repeat;
  background-size: cover, cover;
}

.home-hero::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(125deg, rgba(15, 42, 92, 0.26), transparent 60%);
  content: "";
  pointer-events: none;
}

.home-hero__inner {
  position: relative;
  z-index: 1;
  height: 100%;
}

.home-hero__content {
  width: 600px;
  padding-top: 68px;
}

.home-hero__badge {
  display: inline-grid;
  min-width: 254px;
  height: 32px;
  padding: 0 14px;
  border-radius: var(--ml-radius-sm);
  color: #fff;
  background: var(--ml-red);
  font-size: 12px;
  font-weight: 700;
  line-height: 32px;
  place-items: center;
}

.home-hero h1 {
  margin-top: 20px;
  color: #fff;
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.15;
}

.home-hero__description {
  width: 580px;
  margin-top: 28px;
  color: #bdd5ee;
  font-size: 17px;
  line-height: 1.6;
}

.home-hero__buttons {
  display: flex;
  gap: 16px;
  margin-top: 27px;
}

.button--hero-primary {
  width: 194px;
}

.button--hero-secondary {
  width: 175px;
}

.hero-stats {
  display: flex;
  gap: 50px;
  margin-top: 28px;
  list-style: none;
}

.hero-stats li {
  display: flex;
  min-width: 90px;
  flex-direction: column;
}

.hero-stats strong {
  color: #fff;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 34px;
}

.hero-stats span {
  margin-top: 4px;
  color: var(--ml-text-light);
  font-size: 12px;
  line-height: 15px;
}

.services-bar {
  height: 88px;
  border-bottom: 1px solid var(--ml-border-blue);
  background: var(--ml-primary-pale);
}

.services-bar__grid {
  display: grid;
  height: 100%;
  grid-template-columns: repeat(3, 1fr);
}

.service-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 0 32px;
}

.service-item:first-child {
  padding-left: 0;
}

.service-item + .service-item {
  border-left: 1px solid var(--ml-border-blue);
}

.service-item__icon {
  display: grid;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  color: var(--ml-primary);
  place-items: center;
}

.service-item__icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.service-item__icon .theme-svg {
  width: 20px;
  height: 20px;
}

.service-item h2 {
  color: var(--ml-primary-deep);
  font-size: 13px;
  font-weight: 700;
  line-height: 16px;
}

.service-item p {
  margin-top: 2px;
  color: var(--ml-text-muted);
  font-size: 11px;
  line-height: 14px;
  white-space: nowrap;
}

/* About */
.home-section {
  position: relative;
}

.about-section {
  height: 692px;
  background: #fff;
}

.about-section__grid {
  display: grid;
  height: 100%;
  grid-template-columns: 600px 580px;
  gap: 100px;
}

.about-section__copy {
  padding-top: 80px;
}

.about-section h2 {
  margin-top: 7px;
}

.about-section__description {
  width: 560px;
  margin-top: 18px;
  color: var(--ml-text-body);
  font-size: 15px;
  line-height: 1.68;
}

.check-list {
  display: grid;
  gap: 12px;
  margin-top: 17px;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #2d3748;
  font-size: 14px;
  line-height: 17px;
}

.check-list svg {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  fill: none;
  stroke: var(--ml-red);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.about-section .button {
  margin-top: 28px;
}

.about-section__media {
  height: 480px;
  margin-top: 106px;
  overflow: hidden;
  border-radius: var(--ml-radius-card);
  background: #f0f6ff;
}

.about-section__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Product categories */
.products-section {
  height: 905px;
  background: var(--ml-section);
}

.products-section .section-heading {
  padding-top: 72px;
}

.products-section .section-heading h2 {
  margin-top: 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.product-card {
  display: flex;
  min-width: 0;
  height: 280px;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid #e2ebf8;
  border-radius: var(--ml-radius-card);
  background: #fff;
  box-shadow: 0 2px 5px rgba(27, 58, 107, 0.025);
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.product-card:hover {
  box-shadow: 0 9px 24px rgba(27, 58, 107, 0.13);
  transform: translateY(-4px);
}

.product-card__image {
  display: block;
  height: 210px;
  overflow: hidden;
  background: var(--ml-primary-light);
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.product-card:hover .product-card__image img {
  transform: scale(1.045);
}

.product-card__body {
  display: block;
  padding: 12px 15px;
}

.product-card__body strong,
.product-card__body small {
  display: block;
}

.product-card__body strong {
  overflow: hidden;
  color: var(--ml-primary-deep);
  font-size: 13px;
  font-weight: 700;
  line-height: 16px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-card__body small {
  overflow: hidden;
  margin-top: 5px;
  color: var(--ml-text-muted);
  font-size: 11px;
  line-height: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Reasons */
.why-section {
  height: 565px;
  color: #fff;
  background: var(--ml-primary-deep);
}

.why-section .section-heading {
  padding-top: 72px;
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.advantage-card {
  height: 240px;
  padding: 32px 28px;
  border: 1px solid rgba(255, 255, 255, 0.125);
  border-radius: var(--ml-radius-card);
  background: rgba(255, 255, 255, 0.075);
}

.advantage-card__icon {
  display: grid;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: var(--ml-primary);
  place-items: center;
}

.advantage-card__icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.advantage-card__icon .theme-svg {
  width: 22px;
  height: 22px;
}

.advantage-card h3 {
  margin-top: 20px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
}

.advantage-card p {
  margin-top: 16px;
  color: var(--ml-text-light);
  font-size: 13px;
  line-height: 1.62;
}

/* Applications */
.applications-section {
  height: 545px;
  background: #fff;
}

.applications-section .section-heading {
  padding-top: 72px;
}

.applications-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.application-card {
  position: relative;
  display: block;
  height: 220px;
  overflow: hidden;
  border-radius: var(--ml-radius-card);
  background: var(--ml-primary-deep);
}

.application-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.application-card:hover > img {
  transform: scale(1.055);
}

.application-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 42, 92, 0) 10%,
    rgba(15, 42, 92, 0.9) 100%
  );
}

.application-card__body {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
}

.application-card__body strong,
.application-card__body small {
  display: block;
  color: #fff;
}

.application-card__body strong {
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
}

.application-card__body small {
  display: -webkit-box;
  overflow: hidden;
  margin-top: 3px;
  color: #bdd5ee;
  font-size: 11px;
  line-height: 16px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

/* Stats bar */
.stats-bar {
  height: 172px;
  color: #fff;
  background: var(--ml-primary);
}

.stats-bar__grid {
  display: grid;
  height: 100%;
  grid-template-columns: repeat(5, 1fr);
  align-items: start;
  padding-top: 48px;
}

.stats-bar__item {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.stats-bar__item strong {
  color: #fff;
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 51px;
}

.stats-bar__item span {
  margin-top: 8px;
  color: var(--ml-text-light);
  font-size: 14px;
  line-height: 17px;
}

/* Process */
.order-process-section {
  height: 508px;
  background: var(--ml-section);
}

.order-process-section .section-heading {
  padding-top: 72px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 48px;
  list-style: none;
}

.process-step {
  min-height: 183px;
  padding: 0 20px;
}

.process-step:not(:last-child) {
  border-right: 1px solid var(--ml-border);
}

.process-step:first-child {
  padding-left: 20px;
}

.process-step__number {
  display: grid;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  background: var(--ml-primary);
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  place-items: center;
}

.process-step:nth-child(3) .process-step__number {
  background: var(--ml-red);
}

.process-step h3 {
  margin-top: 18px;
  color: var(--ml-primary-deep);
  font-size: 15px;
  font-weight: 700;
  line-height: 19px;
}

.process-step p {
  max-width: 220px;
  margin-top: 14px;
  color: var(--ml-text-muted);
  font-size: 13px;
  line-height: 1.62;
}

/* Quality */
.quality-section {
  height: 625px;
  background: #fff;
}

.quality-section__grid {
  display: grid;
  height: 100%;
  grid-template-columns: 560px 560px;
  gap: 160px;
}

.quality-section__copy {
  padding-top: 72px;
}

.quality-section h2 {
  margin-top: 7px;
}

.quality-section__copy > p:not(.section-eyebrow) {
  width: 520px;
  margin-top: 18px;
  color: var(--ml-text-body);
  font-size: 15px;
  line-height: 1.66;
}

.quality-steps {
  display: grid;
  gap: 13px;
  margin-top: 25px;
  list-style: none;
}

.quality-steps li {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #2d3748;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.quality-steps span {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  border-radius: 4px;
  color: #fff;
  background: var(--ml-primary);
  font-size: 13px;
  font-weight: 700;
  place-items: center;
}

.quality-steps li:nth-child(4) span {
  background: var(--ml-red);
}

.quality-section .button {
  margin-top: 30px;
}

.quality-section__media {
  height: 440px;
  margin-top: 92px;
  overflow: hidden;
  border-radius: var(--ml-radius-card);
  background: var(--ml-primary-light);
}

.quality-section__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CTA */
.cta-section {
  height: 320px;
  color: #fff;
  background: linear-gradient(-172deg, #0f2a5c 0%, #1b3a6b 47%, #1d5fa8 100%);
}

.cta-section__inner {
  display: flex;
  align-items: center;
  height: 100%;
  flex-direction: column;
  padding-top: 60px;
  text-align: center;
}

.cta-section h2 {
  color: #fff;
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 48px;
}

.cta-section p {
  width: 660px;
  margin-top: 24px;
  color: #bdd5ee;
  font-size: 16px;
  line-height: 1.62;
}

.cta-section__buttons {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.button--cta-primary {
  width: 241px;
  min-height: 52px;
}

.button--cta-secondary {
  width: 231px;
  min-height: 52px;
}

/* Testimonials */
.testimonials-section {
  height: 865px;
  background: var(--ml-section-testimonial);
}

.testimonials-section .section-heading {
  padding-top: 80px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 61px;
}

.testimonial-card {
  position: relative;
  display: flex;
  height: 346px;
  padding: 30px 32px;
  flex-direction: column;
  border-radius: var(--ml-radius-large);
  background: #fff;
  box-shadow: var(--ml-shadow-card);
}

.testimonial-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 6px;
  border-radius: var(--ml-radius-large) var(--ml-radius-large) 0 0;
  background: var(--ml-red);
  content: "";
}

.testimonial-card--blue::before {
  background: var(--ml-primary);
}

.testimonial-card--dark {
  color: #fff;
  background: var(--ml-primary-deep);
  box-shadow: 0 10px 25px rgba(15, 42, 92, 0.24);
}

.testimonial-card__quote {
  display: grid;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--ml-primary-light);
  place-items: center;
}

.testimonial-card__quote svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.testimonial-card__quote .theme-svg {
  width: 20px;
  height: 20px;
}

.testimonial-card--dark .testimonial-card__quote {
  background: rgba(255, 255, 255, 0.0824);
}

.testimonial-card--dark .testimonial-card__quote .theme-svg {
  filter: brightness(0) invert(1);
}

.testimonial-card__text {
  margin-top: 15px;
  color: #374151;
  font-size: 13px;
  line-height: 1.62;
}

.testimonials-section .section-description {
  line-height: 1.62;
}

.testimonial-card--dark .testimonial-card__text {
  color: var(--ml-text-light);
}

.testimonial-card__rating {
  display: flex;
  gap: 4px;
  margin-top: 15px;
  height: 16px;
  align-items: center;
}

.testimonial-card__rating .theme-svg {
  width: 16px;
  height: 16px;
}

.testimonial-card__person {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.testimonial-card__person img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-card__person strong,
.testimonial-card__person small {
  display: block;
}

.testimonial-card__person strong {
  color: var(--ml-primary-deep);
  font-size: 14px;
  font-weight: 700;
  line-height: 17px;
}

.testimonial-card__person small {
  margin-top: 3px;
  color: var(--ml-text-muted);
  font-size: 12px;
  line-height: 15px;
}

.testimonial-card__person em {
  align-self: center;
  padding: 5px 8px;
  border-radius: 3px;
  color: var(--ml-primary);
  background: var(--ml-primary-light);
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  line-height: 14px;
  text-align: center;
}

.testimonial-card--dark .testimonial-card__person strong {
  color: #fff;
}

.testimonial-card--dark .testimonial-card__person small {
  color: #7a9ec0;
}

.testimonial-card--dark .testimonial-card__person em {
  color: #7abfff;
  background: rgba(122, 191, 255, 0.16);
}

.review-stats {
  display: grid;
  width: 883px;
  height: 80px;
  grid-template-columns: repeat(4, 1fr);
  margin: 48px auto 0;
  padding: 16px 26px;
  border-radius: var(--ml-radius-large);
  background: #fff;
  box-shadow: 0 4px 14px rgba(27, 58, 107, 0.06);
}

.review-stats__item {
  display: flex;
  align-items: center;
  gap: 11px;
}

.review-stats__item + .review-stats__item {
  padding-left: 22px;
  border-left: 1px solid var(--ml-border);
}

.review-stats__item > span {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 4px;
  color: var(--ml-primary);
  background: var(--ml-primary-light);
  place-items: center;
}

.review-stats__item > span svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.review-stats__item > span .theme-svg {
  width: 20px;
  height: 20px;
}

.review-stats__item--rating > span {
  background: #fff0f2;
}

.review-stats__item strong,
.review-stats__item small {
  display: block;
}

.review-stats__item strong {
  color: var(--ml-primary-deep);
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

.review-stats__item small {
  color: var(--ml-text-muted);
  font-size: 11px;
  line-height: 15px;
}

/* Inquiry */
.quick-quote-section {
  height: 508px;
  background: var(--ml-section);
}

.quick-quote-section__grid {
  display: grid;
  height: 100%;
  grid-template-columns: 560px 600px;
  gap: 120px;
}

.quick-quote-section__copy {
  padding-top: 64px;
}

.quick-quote-section h2 {
  margin-top: 7px;
  font-size: 32px;
  line-height: 39px;
}

.quick-quote-section__copy > p:not(.section-eyebrow) {
  width: 520px;
  margin-top: 20px;
  color: var(--ml-text-body);
  font-size: 15px;
  line-height: 1.66;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
  list-style: none;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #2d3748;
  font-size: 14px;
  font-weight: 500;
  line-height: 17px;
}

.contact-list > li > span {
  display: grid;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  color: var(--ml-primary);
  place-items: center;
}

.contact-list svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.contact-list .theme-svg {
  width: 18px;
  height: 18px;
}

.quote-form {
  height: 380px;
  margin-top: 64px;
  padding: 36px;
  border-radius: var(--ml-radius);
  background: #fff;
  box-shadow: 0 2px 10px rgba(27, 58, 107, 0.035);
}

.quote-form h3 {
  color: var(--ml-primary-deep);
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
}

.quote-form__two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
  margin-bottom: 16px;
}

.quote-form label {
  display: block;
  margin-bottom: 8px;
  color: var(--ml-text-body);
  font-size: 12px;
  font-weight: 700;
  line-height: 15px;
}

.quote-form input,
.quote-form textarea {
  display: block;
  width: 100%;
  border: 1px solid var(--ml-border-blue);
  border-radius: var(--ml-radius);
  outline: none;
  color: var(--ml-text);
  background: var(--ml-section);
  font-size: 13px;
  line-height: 16px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.quote-form input {
  height: 36px;
  padding: 0 13px;
}

.quote-form textarea {
  height: 68px;
  padding: 10px 13px;
  resize: vertical;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: #a0aec0;
  opacity: 1;
}

.quote-form input:focus,
.quote-form textarea:focus {
  border-color: var(--ml-primary);
  box-shadow: 0 0 0 3px rgba(29, 95, 168, 0.12);
}

.quote-form__submit {
  display: flex;
  width: 100%;
  height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  border: 0;
  border-radius: var(--ml-radius);
  color: #fff;
  background: var(--ml-primary);
  font-size: 15px;
  font-weight: 700;
  line-height: 19px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.quote-form__submit:hover {
  background: #164d8b;
}

.quote-form__status {
  margin-top: 8px;
  color: #16803c;
  font-size: 12px;
  line-height: 16px;
}

.quote-form__status--error {
  color: #ba102b;
}

/* Footer */
.site-footer {
  color: #fff;
  background: var(--ml-primary-dark);
}

.site-footer__main {
  height: 352px;
}

.site-footer__grid {
  display: grid;
  height: 100%;
  grid-template-columns: 326px repeat(3, 1fr);
  gap: 100px;
  padding-top: 60px;
}

.footer-brand__logo {
  display: block;
  width: 154px;
  height: 40px;
}

.footer-brand__logo img {
  width: 154px;
  height: 40px;
  object-fit: contain;
  object-position: left center;
}

.footer-brand > p {
  width: 260px;
  margin-top: 20px;
  color: #7a9ec0;
  font-size: 13px;
  line-height: 1.62;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
}

.footer-socials > span {
  margin-right: 6px;
  color: #7a9ec0;
  font-size: 13px;
  line-height: 22px;
}

.footer-socials a {
  display: grid;
  width: 18px;
  height: 18px;
  color: #fff;
  place-items: center;
}

.footer-socials__icon {
  display: block;
  width: 18px;
  height: 18px;
}

.footer-links h2 {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 17px;
}

.footer-menu {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  list-style: none;
}

.footer-menu a {
  color: #7a9ec0;
  font-size: 13px;
  line-height: 16px;
  transition: color 0.2s ease;
}

.footer-menu a:hover {
  color: #fff;
}

.site-footer__bottom {
  height: 56px;
  background: #091f47;
}

.site-footer__bottom-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

.site-footer__bottom p,
.site-footer__bottom a {
  color: #5a7a9e;
  font-size: 12px;
  line-height: 15px;
}

.site-footer__bottom nav {
  display: flex;
  gap: 24px;
}

.site-footer__bottom a:hover {
  color: #fff;
}

/* Generic WordPress fallbacks */
.site-main--fallback,
.site-main--page {
  min-height: 55vh;
  padding: 100px 0;
  background: var(--ml-section);
}

.entry-card,
.content-page article {
  max-width: 850px;
  padding: 40px;
  border-radius: var(--ml-radius-card);
  background: #fff;
  box-shadow: var(--ml-shadow-card);
}

.entry-card + .entry-card {
  margin-top: 24px;
}

.entry-card__title,
.content-page h1 {
  color: var(--ml-primary-deep);
  font-size: 36px;
  line-height: 1.2;
}

/* Responsive layout: inferred from component semantics because source only supplies desktop. */
@media (max-width: 1270px) {
  :root {
    --ml-gutter: 40px;
  }

  .main-navigation {
    grid-template-columns: 140px 1fr auto;
  }

  .site-navigation .menu {
    gap: clamp(15px, 2vw, 30px);
  }

  .about-section__grid,
  .quality-section__grid,
  .quick-quote-section__grid {
    gap: clamp(40px, 7vw, 100px);
  }

  .about-section__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.97fr);
  }

  .quality-section__grid,
  .quick-quote-section__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .about-section__description,
  .quality-section__copy > p:not(.section-eyebrow),
  .quick-quote-section__copy > p:not(.section-eyebrow) {
    width: auto;
  }

  .site-footer__grid {
    grid-template-columns: minmax(250px, 1.4fr) repeat(3, 1fr);
    gap: clamp(25px, 5vw, 70px);
  }
}

@media (max-width: 1020px) {
  :root {
    --ml-gutter: 28px;
  }

  .topbar p {
    max-width: 70%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .site-navigation .menu {
    gap: 15px;
  }

  .site-navigation {
    margin-left: 30px;
  }

  .site-navigation .menu-item a {
    font-size: 12px;
  }

  .header-quote {
    width: 105px;
  }

  .service-item {
    padding: 0 18px;
  }

  .service-item p {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .home-hero__content {
    width: min(600px, 65vw);
  }

  .home-hero h1 {
    font-size: 46px;
  }

  .home-hero__description {
    width: auto;
  }

  .about-section,
  .quality-section {
    height: auto;
    min-height: 640px;
  }

  .about-section__grid,
  .quality-section__grid {
    padding-block: 72px;
  }

  .about-section__copy,
  .quality-section__copy {
    padding-top: 0;
  }

  .about-section__media,
  .quality-section__media {
    height: 390px;
    margin-top: 0;
  }

  .products-section,
  .why-section,
  .applications-section,
  .order-process-section,
  .testimonials-section,
  .quick-quote-section {
    height: auto;
    padding-block: 72px;
  }

  .products-section .section-heading,
  .why-section .section-heading,
  .applications-section .section-heading,
  .order-process-section .section-heading,
  .testimonials-section .section-heading {
    padding-top: 0;
  }

  .products-grid,
  .applications-grid,
  .advantage-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-card,
  .advantage-card {
    height: 280px;
  }

  .stats-bar__item strong {
    font-size: 34px;
  }

  .stats-bar__item span {
    font-size: 11px;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 40px;
  }

  .process-step:nth-child(2) {
    border-right: 0;
  }

  .quality-section__media {
    align-self: center;
  }

  .cta-section h2 {
    font-size: 35px;
  }

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

  .testimonial-card,
  .testimonial-card--blue {
    min-height: 300px;
  }

  .review-stats {
    width: min(883px, 100%);
  }

  .quick-quote-section__grid {
    align-items: start;
  }

  .quote-form {
    height: auto;
    min-height: 380px;
    margin-top: 0;
  }

  .site-footer__main {
    height: auto;
  }

  .site-footer__grid {
    grid-template-columns: 1.3fr 1fr 1fr;
    padding-bottom: 55px;
  }

  .footer-links:last-child {
    grid-column: 2 / 3;
  }
}

@media (max-width: 760px) {
  :root {
    --ml-gutter: 20px;
  }

  .topbar {
    height: 34px;
  }

  .topbar p {
    max-width: 100%;
    font-size: 10px;
  }

  .topbar__actions {
    display: none;
  }

  .main-navigation-wrap {
    height: 64px;
  }

  .main-navigation {
    display: flex;
    justify-content: space-between;
  }

  .site-branding,
  .site-branding .custom-logo-link,
  .default-logo,
  .site-branding img {
    width: 112px;
    height: 32px;
  }

  .menu-toggle {
    display: flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 0;
    border: 0;
    color: var(--ml-primary-deep);
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span:not(.screen-reader-text) {
    display: block;
    width: 23px;
    height: 2px;
    background: currentColor;
    transition:
      transform 0.2s ease,
      opacity 0.2s ease;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-navigation {
    position: absolute;
    top: 98px;
    right: 0;
    left: 0;
    visibility: hidden;
    padding: 12px 20px 20px;
    border-bottom: 1px solid var(--ml-border);
    background: #fff;
    box-shadow: 0 10px 18px rgba(15, 42, 92, 0.1);
    opacity: 0;
    transform: translateY(-10px);
    margin-left: 0;
    transition:
      visibility 0.2s ease,
      opacity 0.2s ease,
      transform 0.2s ease;
  }

  .site-navigation.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-navigation .menu {
    display: grid;
    gap: 0;
  }

  .site-navigation .menu-item a {
    padding: 12px 4px;
    font-size: 14px;
  }

  .header-quote {
    display: none;
  }

  .header-search-panel {
    top: 98px;
  }

  .home-hero {
    height: auto;
    min-height: 650px;
    background-image:
      linear-gradient(
        90deg,
        rgba(15, 42, 92, 0.96) 0%,
        rgba(27, 58, 107, 0.89) 100%
      ),
      url("../images/home-hero.png");
    background-position:
      center,
      64% center;
  }

  .home-hero__content {
    width: 100%;
    padding: 56px 0;
  }

  .home-hero__badge {
    min-width: 0;
    font-size: 10px;
  }

  .home-hero h1 {
    margin-top: 20px;
    font-size: clamp(34px, 10vw, 45px);
    line-height: 1.1;
  }

  .home-hero h1 br {
    display: none;
  }

  .home-hero__description {
    margin-top: 22px;
    font-size: 15px;
  }

  .home-hero__buttons,
  .cta-section__buttons {
    align-items: stretch;
    flex-direction: column;
  }

  .button--hero-primary,
  .button--hero-secondary,
  .button--cta-primary,
  .button--cta-secondary {
    width: 100%;
  }

  .hero-stats {
    justify-content: space-between;
    gap: 12px;
  }

  .hero-stats li {
    min-width: 0;
  }

  .hero-stats strong {
    font-size: 24px;
  }

  .hero-stats span {
    font-size: 10px;
  }

  .services-bar {
    height: auto;
  }

  .services-bar__grid {
    grid-template-columns: 1fr;
  }

  .service-item,
  .service-item:first-child {
    min-height: 72px;
    padding: 14px 0;
  }

  .service-item + .service-item {
    border-top: 1px solid var(--ml-border-blue);
    border-left: 0;
  }

  .service-item p {
    white-space: normal;
  }

  .section-heading h2,
  .about-section h2,
  .quality-section h2,
  .quick-quote-section h2 {
    font-size: 30px;
  }

  .section-description {
    font-size: 14px;
  }

  .about-section,
  .quality-section,
  .products-section,
  .why-section,
  .applications-section,
  .order-process-section,
  .testimonials-section,
  .quick-quote-section {
    min-height: 0;
    padding-block: 56px;
  }

  .about-section__grid,
  .quality-section__grid,
  .quick-quote-section__grid {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-block: 0;
  }

  .about-section__media,
  .quality-section__media {
    height: min(75vw, 400px);
  }

  .about-section__description,
  .quality-section__copy > p:not(.section-eyebrow),
  .quick-quote-section__copy > p:not(.section-eyebrow) {
    font-size: 14px;
  }

  .check-list li {
    align-items: flex-start;
    font-size: 13px;
  }

  .products-grid,
  .applications-grid,
  .advantage-grid,
  .process-grid,
  .stats-bar__grid {
    grid-template-columns: 1fr;
  }

  .products-grid,
  .applications-grid,
  .advantage-grid,
  .process-grid {
    margin-top: 36px;
  }

  .product-card {
    height: 290px;
  }

  .product-card__image {
    height: 218px;
  }

  .advantage-card {
    height: auto;
    min-height: 210px;
  }

  .stats-bar {
    height: auto;
  }

  .stats-bar__grid {
    gap: 22px;
    padding: 48px 0;
  }

  .stats-bar__item strong {
    font-size: 38px;
  }

  .process-step {
    min-height: 0;
    padding: 0 0 30px;
  }

  .process-step:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid var(--ml-border);
  }

  .process-step:first-child {
    padding-left: 0;
  }

  .quality-section__media {
    order: 2;
  }

  .cta-section {
    height: auto;
  }

  .cta-section__inner {
    height: auto;
    padding: 55px 0;
  }

  .cta-section h2 {
    font-size: 30px;
    line-height: 1.2;
  }

  .cta-section p {
    width: auto;
    font-size: 14px;
  }

  .cta-section__buttons {
    width: 100%;
  }

  .testimonial-grid {
    margin-top: 36px;
  }

  .testimonial-card,
  .testimonial-card--blue {
    height: auto;
    min-height: 290px;
  }

  .testimonial-card__person {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .testimonial-card__person img {
    width: 42px;
    height: 42px;
  }

  .testimonial-card__person em {
    grid-column: 2;
    justify-self: start;
  }

  .review-stats {
    width: 100%;
    height: auto;
    grid-template-columns: 1fr 1fr;
    gap: 16px 0;
    margin-top: 32px;
    padding: 18px;
  }

  .review-stats__item + .review-stats__item {
    padding-left: 12px;
  }

  .review-stats__item:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

  .quote-form {
    min-height: 0;
    margin: 0;
    padding: 24px 20px;
  }

  .quote-form__two-columns {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .quote-form__two-columns p + p {
    margin-top: 0;
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 38px 26px;
    padding-top: 50px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-links:last-child {
    grid-column: auto;
  }

  .site-footer__bottom {
    height: auto;
  }

  .site-footer__bottom-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 20px 0;
  }

  .site-footer__bottom nav {
    flex-wrap: wrap;
    gap: 8px 18px;
  }
}

@media (max-width: 420px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .footer-links:last-child {
    grid-column: auto;
  }

  .review-stats {
    grid-template-columns: 1fr;
  }

  .review-stats__item + .review-stats__item,
  .review-stats__item:nth-child(3) {
    padding-top: 12px;
    padding-left: 0;
    border-top: 1px solid var(--ml-border);
    border-left: 0;
  }
}

/* Products archive (02-products) */
.site-main--products {
  overflow: hidden;
  color: #64748b;
}

.products-page-container {
  width: min(1200px, calc(100% - 64px));
  margin: 0 auto;
}

.products-hero {
  position: relative;
  isolation: isolate;
  height: 480px;
  overflow: hidden;
  color: #fff;
  background: #1a2a5e;
}

.products-hero__media,
.products-hero__overlay {
  position: absolute;
  inset: 0;
}

.products-hero__media {
  z-index: 0;
}

.products-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.products-hero__overlay {
  z-index: 1;
  background: linear-gradient(90deg, #1b3a6b 0%, rgba(27, 58, 107, 0) 100%);
}

.products-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-top: 132px;
  text-align: center;
}

.products-hero h1 {
  margin: 0;
  color: #fff;
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.products-hero__content > p {
  margin-top: 13px;
  color: #b0c4de;
  font-size: 16px;
  line-height: 20px;
}

.products-hero__actions {
  display: flex;
  gap: 16px;
  margin-top: 18px;
}

.products-hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 187px;
  height: 48px;
  border: 1px solid transparent;
  border-radius: 4px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.products-hero__button:hover {
  transform: translateY(-1px);
}

.products-hero__button--primary {
  background: #c0392b;
}

.products-hero__button--primary:hover {
  background: #a72e23;
}

.products-hero__button--secondary {
  width: 185px;
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.1);
}

.products-hero__button--secondary:hover {
  color: #1a2a5e;
  background: #fff;
}

.products-stats {
  height: 115px;
  border-bottom: 1px solid #e8e8e8;
  background: #f8f9fc;
}

.products-stats__inner {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: min(1200px, calc(100% - 64px));
  height: 100%;
  margin: 0 auto;
  padding-top: 28px;
}

.products-stats__item {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  min-width: 107px;
  text-align: center;
}

.products-stats__item:nth-child(1) {
  min-width: 123px;
}
.products-stats__item:nth-child(2) {
  min-width: 87px;
}
.products-stats__item:nth-child(3) {
  min-width: 107px;
}
.products-stats__item:nth-child(4) {
  min-width: 144px;
}

.products-stats__item + .products-stats__item::before {
  position: absolute;
  top: 5px;
  left: -124px;
  width: 1px;
  height: 48px;
  content: "";
  background: #e8e8e8;
}

.products-stats__item strong {
  color: #c0392b;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 39px;
}

.products-stats__item span {
  margin-top: 4px;
  color: #666;
  font-size: 13px;
  line-height: 16px;
  white-space: nowrap;
}

.products-breadcrumb {
  height: 69px;
  color: #64748b;
  font-size: 13px;
  line-height: 16px;
}

.products-breadcrumb .products-page-container {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 100%;
}

.products-breadcrumb a:first-child,
.products-breadcrumb a:nth-of-type(2) {
  color: #a3a3a3;
}

.products-breadcrumb strong {
  color: #1a2a5e;
  font-weight: 700;
}

.products-catalogue {
  min-height: 1190px;
  padding: 56px 0;
  background: #fff;
}

.products-catalogue__layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 32px;
  align-items: flex-start;
}

.products-sidebar {
  overflow: hidden;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  background: #fff;
}

.products-sidebar h2 {
  display: flex;
  align-items: center;
  height: 49px;
  margin: 0;
  padding: 0 20px;
  color: #fff;
  background: #1a2a5e;
  font-size: 13px;
  font-weight: 700;
  line-height: 17px;
}

.products-sidebar ul {
  list-style: none;
}

.products-sidebar li {
  display: flex;
  align-items: center;
  min-height: 40px;
  border-top: 1px solid #e8e8e8;
}

.products-sidebar li:nth-child(-n + 2),
.products-sidebar li:nth-child(4),
.products-sidebar li:nth-child(5),
.products-sidebar li:nth-child(6),
.products-sidebar li:nth-child(7),
.products-sidebar li:nth-child(8),
.products-sidebar li:nth-child(12) {
  min-height: 56px;
}

.products-sidebar li a {
  display: flex;
  align-items: center;
  min-height: inherit;
  width: 100%;
  padding: 11px 20px;
  color: #444;
  font-size: 13px;
  line-height: 16px;
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

.products-sidebar li.is-active {
  border-left: 3px solid #c0392b;
  background: #eef2ff;
}

.products-sidebar li.is-active a {
  padding-left: 17px;
  color: #1a2a5e;
  font-weight: 500;
}

.products-sidebar li:not(.is-active) a:hover {
  color: #1a5fa8;
  background: #f8fafc;
}

.products-catalogue__content {
  min-width: 0;
}

.products-catalogue__header h1 {
  margin: 0;
  color: #1a2a5e;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 29px;
}

.products-catalogue__header > span {
  display: block;
  width: 60px;
  height: 3px;
  margin-top: 12px;
  background: #c0392b;
}

.products-introduction {
  min-height: 152px;
  margin-top: 32px;
  padding: 24px;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  background: #f8f9fc;
}

.products-introduction p {
  margin: 0;
  color: #444;
  font-size: 13px;
  line-height: 1.7;
}

.products-introduction p + p {
  margin-top: 10px;
}

.products-fill-types {
  margin-top: 32px;
}

.products-fill-types h2 {
  margin: 0;
  color: #1a2a5e;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
}

.products-fill-types ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
  list-style: none;
}

.products-fill-tag {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 14px;
  border: 1px solid currentColor;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 500;
  line-height: 15px;
}

.products-fill-tag > span {
  position: relative;
  width: 14px;
  height: 14px;
  margin-right: 8px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
}

.products-fill-tag > span::after {
  position: absolute;
  top: 5px;
  left: 5px;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  content: "";
  background: currentColor;
}

.products-fill-tag--navy {
  color: #1a2a5e;
  background: #eef2ff;
  border-color: rgba(26, 42, 94, 0.2);
}
.products-fill-tag--red {
  color: #c0392b;
  background: #fef3f2;
  border-color: rgba(192, 57, 43, 0.2);
}
.products-fill-tag--graphite {
  color: #444;
  background: #f0f0f0;
  border-color: rgba(68, 68, 68, 0.2);
}
.products-fill-tag--orange {
  color: #e68900;
  background: #fff7ed;
  border-color: rgba(230, 137, 0, 0.2);
}
.products-fill-tag--gray {
  color: #666;
  background: #f5f5f5;
  border-color: rgba(102, 102, 102, 0.2);
}
.products-fill-tag--blue {
  color: #2563eb;
  background: #eff6ff;
  border-color: rgba(37, 99, 235, 0.2);
}
.products-fill-tag--purple {
  color: #7c3aed;
  background: #f5f3ff;
  border-color: rgba(124, 58, 237, 0.2);
}
.products-fill-tag--green {
  color: #16a34a;
  background: #f0fdf4;
  border-color: rgba(22, 163, 74, 0.2);
}
.products-fill-tag--rose {
  color: #dc2626;
  background: #fef2f2;
  border-color: rgba(220, 38, 38, 0.2);
}

.products-listing-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 36px;
  margin-top: 32px;
}

.products-listing-header > p {
  margin: 0;
  color: #666;
  font-size: 13px;
  line-height: 17px;
}

.products-listing-header select {
  width: 160px;
  height: 36px;
  padding: 0 30px 0 12px;
  border: 1px solid #d0d0d0;
  border-radius: 3px;
  color: #666;
  background-color: #fff;
  font-size: 12px;
  line-height: 16px;
  appearance: auto;
}

.site-main--products .products-grid {
  display: grid;
  grid-template-columns: repeat(4, 210px);
  gap: 32px 24px;
  margin-top: 32px;
}

.products-card {
  height: 275px;
  overflow: hidden;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  background: #fff;
}

.products-card__image-link {
  display: block;
  height: 160px;
  overflow: hidden;
  background: #f5f5f5;
}

.products-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.products-card:hover .products-card__image {
  transform: scale(1.025);
}

.products-card__body {
  height: 115px;
  padding: 16px;
}

.products-card h2 {
  display: -webkit-box;
  min-height: 39px;
  margin: 0;
  overflow: hidden;
  color: #1a2a5e;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.products-card h2 a:hover {
  color: #1a5fa8;
}

.products-card__more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 94px;
  height: 32px;
  margin-top: 12px;
  border: 1px solid #c0392b;
  border-radius: 3px;
  color: #c0392b;
  font-size: 12px;
  font-weight: 500;
  line-height: 15px;
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

.products-card__more:hover {
  color: #fff;
  background: #c0392b;
}

.products-empty {
  margin: 32px 0 0;
  padding: 24px;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  color: #64748b;
  background: #f8f9fc;
}

.products-applications {
  min-height: 1201px;
  padding: 80px 0;
  background: #fff;
}

.products-applications__header {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.products-applications__header > p {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 98px;
  height: 25px;
  margin: 0;
  border-radius: 4px;
  color: #1a5fa8;
  background: #eff6ff;
  font-size: 12px;
  line-height: 15px;
}

.products-applications__header h2 {
  margin: 12px 0 0;
  color: #0f172a;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 41px;
}

.products-applications__header > span {
  width: min(640px, 100%);
  margin-top: 12px;
  color: #64748b;
  font-size: 16px;
  line-height: 1.22;
}

.products-applications__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 48px;
}

.products-application {
  flex: 0 0 380px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #fff;
}

.products-application--wide {
  flex-basis: 588px;
}

.products-application__image {
  height: 200px;
  overflow: hidden;
  background: #eff6ff;
}

.products-application__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.products-application__body {
  padding: 20px;
}

.products-application--wide .products-application__body {
  padding-inline: 24px;
}

.products-application__category {
  display: inline-flex;
  align-items: center;
  height: 20px;
  margin: 0;
  padding: 0 10px;
  border-radius: 4px;
  color: #1a5fa8;
  background: #eff6ff;
  font-size: 11px;
  line-height: 14px;
}

.products-application h3 {
  margin: 12px 0 0;
  color: #0f172a;
  font-size: 18px;
  font-weight: 700;
  line-height: 21px;
}

.products-application__description {
  display: -webkit-box;
  margin: 12px 0 0;
  overflow: hidden;
  color: #64748b;
  font-size: 13px;
  line-height: 1.6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.products-application__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: #1a5fa8;
  font-size: 13px;
  font-weight: 500;
  line-height: 16px;
}

.products-application__link svg,
.products-final-cta__quote svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.products-application__link:hover {
  color: #c0392b;
}

.products-conversion {
  min-height: 1393px;
  padding-top: 80px;
  color: #fff;
  background: linear-gradient(135deg, #0d2b5e 0%, #1a5fa8 100%);
}

.products-conversion__faq-panel {
  height: 1017px;
  background: #fff;
}

.faq-component {
  color: #64748b;
}

.products-faq {
  width: min(960px, calc(100% - 48px));
  margin: 0 auto;
  padding-top: 80px;
}

.faq-component__header {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.faq-component__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 28px;
  margin: 0;
  border-radius: 20px;
  color: #1a5fa8;
  background: #eff6ff;
  font-size: 12px;
  line-height: 16px;
}

.faq-component__header h2 {
  margin: 12px 0 0;
  color: #0f172a;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 44px;
}

.faq-component__description {
  width: min(600px, 100%);
  margin: 12px 0 0;
  color: #64748b;
  font-size: 16px;
  line-height: 1.6;
}

.faq-component__list {
  display: grid;
  gap: 2px;
  margin-top: 48px;
}

.faq-component__item {
  min-height: 126px;
  overflow: hidden;
  border: 0;
  border-radius: 12px;
}

.faq-component__item:first-child {
  min-height: 149px;
}

.faq-component__item--tint {
  background: #f8fafc;
}

.faq-component__item--light {
  border: 1px solid #e2e8f0;
  background: #fff;
}

.faq-component__item summary {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 24px 28px 0;
  color: #0f172a;
  cursor: pointer;
  list-style: none;
}

.faq-component__item summary::-webkit-details-marker {
  display: none;
}

.faq-component__icon {
  display: inline-flex;
  align-items: center;
  flex: 0 0 18px;
  justify-content: center;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  border: 1.5px solid #1a5fa8;
  border-radius: 50%;
  color: #1a5fa8;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.faq-component__question {
  color: #0f172a;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
}

.faq-component__answer {
  padding: 12px 28px 24px;
}

.faq-component__answer p {
  margin: 0;
  color: #64748b;
  font-size: 13px;
  line-height: 1.77;
}

.faq-component__item:not([open]) .faq-component__answer {
  display: none;
}

.products-final-cta {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 32px 24px 80px;
  text-align: center;
}

.products-final-cta h2 {
  margin: 0;
  color: #fff;
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 51px;
}

.products-final-cta > p {
  margin: 32px 0 0;
  color: #bfdbfe;
  font-size: 18px;
  line-height: 21px;
}

.products-final-cta__actions {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}

.products-final-cta__quote,
.products-final-cta__whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  line-height: 20px;
  transition:
    transform 0.2s ease,
    color 0.2s ease,
    background-color 0.2s ease;
}

.products-final-cta__quote {
  gap: 8px;
  width: 214px;
  color: #1a5fa8;
  background: #fff;
}

.products-final-cta__whatsapp {
  gap: 8px;
  width: 239px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
}

.products-final-cta__whatsapp .theme-svg {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}

.products-final-cta__quote:hover,
.products-final-cta__whatsapp:hover {
  transform: translateY(-1px);
}

.products-final-cta__quote:hover {
  color: #c0392b;
}

.products-final-cta__whatsapp:hover {
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 960px) {
  .products-page-container,
  .products-stats__inner {
    width: min(100% - 48px, 760px);
  }

  .products-hero__content {
    padding-top: 120px;
  }

  .products-hero h1 {
    font-size: 38px;
  }

  .products-stats {
    height: auto;
  }

  .products-stats__inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px 0;
    padding: 30px 0;
  }

  .products-stats__item + .products-stats__item::before {
    display: none;
  }

  .products-catalogue,
  .products-applications {
    min-height: 0;
  }

  .products-catalogue__layout {
    grid-template-columns: 1fr;
  }

  .products-sidebar ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .products-sidebar li,
  .products-sidebar li:nth-child(n) {
    min-height: 48px;
  }

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

  .products-card {
    height: auto;
  }

  .products-card__image-link {
    height: min(30vw, 220px);
  }

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

  .products-application,
  .products-application--wide {
    width: auto;
    flex-basis: auto;
  }

  .products-conversion {
    min-height: 0;
    padding: 48px 0 0;
  }

  .products-conversion__faq-panel {
    height: auto;
    padding-bottom: 48px;
  }

  .products-faq {
    padding-top: 56px;
  }

  .faq-component__list {
    margin-top: 36px;
  }

  .products-final-cta {
    padding-top: 48px;
  }
}

@media (max-width: 600px) {
  .products-page-container,
  .products-stats__inner {
    width: calc(100% - 32px);
  }

  .products-hero {
    height: 420px;
  }

  .products-hero__content {
    padding: 94px 16px 0;
  }

  .products-hero h1 {
    font-size: 30px;
    line-height: 1.2;
  }

  .products-hero__content > p {
    font-size: 14px;
  }

  .products-hero__actions,
  .products-final-cta__actions {
    align-items: center;
    flex-direction: column;
    width: 100%;
  }

  .products-hero__button,
  .products-hero__button--secondary,
  .products-final-cta__quote,
  .products-final-cta__whatsapp {
    width: min(100%, 280px);
  }

  .products-breadcrumb {
    overflow: auto;
  }

  .products-catalogue,
  .products-applications {
    padding: 52px 0;
  }

  .products-sidebar ul,
  .site-main--products .products-grid,
  .products-applications__grid {
    grid-template-columns: 1fr;
  }

  .products-catalogue__header h1 {
    font-size: 22px;
  }

  .products-introduction {
    padding: 20px;
  }

  .products-fill-types ul {
    gap: 8px;
    margin-top: 24px;
  }

  .products-fill-tag {
    padding: 0 10px;
  }

  .products-listing-header {
    align-items: flex-start;
    flex-direction: column;
    height: auto;
    gap: 12px;
  }

  .site-main--products .products-grid {
    margin-top: 24px;
  }

  .products-card__image-link {
    height: min(55vw, 280px);
  }

  .products-applications__header h2,
  .faq-component__header h2 {
    font-size: 28px;
    line-height: 1.2;
  }

  .products-applications__header > span,
  .faq-component__description {
    font-size: 14px;
  }

  .products-application__body,
  .products-application--wide .products-application__body {
    padding: 20px;
  }

  .products-faq {
    width: calc(100% - 32px);
  }

  .faq-component__item,
  .faq-component__item:first-child {
    min-height: 0;
  }

  .faq-component__item summary {
    padding: 20px 18px 0;
  }

  .faq-component__question {
    font-size: 15px;
  }

  .faq-component__answer {
    padding: 12px 18px 20px;
  }

  .products-final-cta {
    padding-inline: 16px;
  }

  .products-final-cta h2 {
    font-size: 30px;
    line-height: 1.2;
  }

  .products-final-cta > p {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.5;
  }

  .products-final-cta__actions {
    margin-top: 24px;
  }
}
