:root {
  --navy: #081936;
  --navy-2: #0d2e5d;
  --blue: #0f5fa8;
  --red: #df1f26;
  --red-dark: #b9151c;
  --gold: #c9912d;
  --text: #111827;
  --muted: #5b6474;
  --line: #d9dee8;
  --soft: #f4f7fb;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(8, 25, 54, 0.12);
  --adminbar-offset: 0px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: "Be Vietnam Pro", Arial, sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.container {
  width: min(100% - 48px, 1440px);
  margin-inline: auto;
}

.section-pad {
  padding: 48px 0;
}

section[id] {
  scroll-margin-top: 124px;
}

.site-header {
  position: sticky;
  top: var(--adminbar-offset);
  z-index: 30;
  display: grid;
  grid-template-columns: 330px 1fr 292px;
  align-items: center;
  gap: 24px;
  min-height: 108px;
  padding: 16px 68px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(217, 222, 232, 0.85);
  backdrop-filter: blur(12px);
  transition: min-height 180ms ease, padding 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

body.admin-bar {
  --adminbar-offset: 32px;
}

@media (max-width: 782px) {
  body.admin-bar {
    --adminbar-offset: 46px;
  }
}

@media (max-width: 600px) {
  body.admin-bar {
    --adminbar-offset: 0px;
  }
}

@media (min-width: 1025px) {
  .site-header.is-scrolled {
    min-height: 82px;
    padding-block: 8px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 12px 26px rgba(8, 25, 54, 0.12);
  }

  .site-header.is-scrolled .brand img {
    width: 64px;
    height: 56px;
  }

  .site-header.is-scrolled .brand strong {
    font-size: 22px;
  }

  .site-header.is-scrolled .brand small {
    margin-top: 4px;
    font-size: 10px;
  }

  .site-header.is-scrolled .main-nav a {
    padding-block: 8px;
  }

  .site-header.is-scrolled .header-hotline {
    grid-template-columns: 44px 1fr;
    min-height: 64px;
    padding-block: 8px;
  }

  .site-header.is-scrolled .hotline-icon {
    width: 44px;
    height: 44px;
  }

  .site-header.is-scrolled .header-hotline b {
    font-size: 16px;
  }

  .site-header.is-scrolled .header-hotline b:nth-of-type(n + 2) {
    display: none;
  }
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--navy);
}

.brand img {
  width: 88px;
  height: 76px;
  object-fit: contain;
  transition: width 180ms ease, height 180ms ease;
}

.brand strong {
  display: block;
  color: #085ca2;
  font-size: 25px;
  font-weight: 900;
  line-height: 1;
  transition: font-size 180ms ease;
}

.brand small {
  display: block;
  margin-top: 6px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  transition: margin 180ms ease, font-size 180ms ease;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 40px;
  color: var(--navy);
  font-size: 17px;
  font-weight: 800;
  white-space: nowrap;
}

.main-nav a {
  padding: 14px 0;
}

.main-nav a:hover {
  color: var(--red);
}

.header-hotline {
  justify-self: end;
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 16px;
  min-width: 286px;
  min-height: 86px;
  padding: 12px 18px;
  color: var(--navy);
  background: var(--white);
  border: 1.5px solid var(--red);
  border-radius: 8px;
  transition: min-height 180ms ease, padding 180ms ease, grid-template-columns 180ms ease;
}

.hotline-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: var(--white);
  background: var(--red);
  border-radius: 50%;
  transition: width 180ms ease, height 180ms ease;
}

.hotline-icon svg {
  font-size: 27px;
}

.header-hotline small {
  display: block;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.header-hotline b {
  display: block;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(360px, 0.94fr) minmax(520px, 1.06fr);
  align-items: center;
  min-height: 500px;
  height: min(590px, calc(100svh - 150px));
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.95) 31%, rgba(255, 255, 255, 0.68) 54%, rgba(255, 255, 255, 0.06) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.12) 58%, rgba(255, 255, 255, 0.82) 100%);
}

.hero-content {
  max-width: 710px;
  margin-left: max(48px, calc((100vw - 1440px) / 2 + 24px));
  padding: 36px 0 56px;
}

.hero h1 {
  margin: 0;
  color: var(--navy);
  font-size: 48px;
  font-weight: 900;
  line-height: 1.14;
}

.hero h1 span {
  display: block;
  color: var(--red);
}

.hero p {
  max-width: 650px;
  margin: 26px 0 0;
  color: #1f2937;
  font-size: 19px;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 32px;
  border: 1.5px solid transparent;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
}

.btn svg {
  font-size: 22px;
}

.btn-red {
  color: var(--white);
  background: linear-gradient(180deg, #ef222b, var(--red-dark));
  box-shadow: 0 16px 28px rgba(223, 31, 38, 0.22);
}

.btn-outline {
  color: #063876;
  background: rgba(255, 255, 255, 0.78);
  border-color: #0b448b;
}

.hero-products {
  position: relative;
  align-self: stretch;
  min-height: 100%;
  margin-right: max(34px, calc((100vw - 1440px) / 2 + 12px));
}

.hero-products figure {
  position: absolute;
  margin: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(217, 222, 232, 0.78);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-product-main {
  right: 62px;
  bottom: 8px;
  width: 470px;
  height: 535px;
  overflow: visible !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.hero-product-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 24px 30px rgba(8, 25, 54, 0.24));
}

.hero-product-kit {
  right: 440px;
  bottom: 58px;
  width: 250px;
  height: 282px;
}

.hero-product-kit img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 92px;
  padding: 0 68px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-width: 0;
  padding: 18px 20px;
  color: var(--navy);
}

.trust-item + .trust-item {
  border-left: 1px solid var(--line);
}

.trust-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--red);
  border-radius: 50%;
}

.trust-icon svg {
  font-size: 44px;
  stroke-width: 1.8;
}

.trust-icon.gold {
  color: var(--gold);
  font-size: 25px;
  font-weight: 900;
  border: 3px solid currentColor;
}

.trust-item strong,
.trust-item small {
  display: block;
}

.trust-item strong {
  font-size: 15px;
  font-weight: 800;
}

.trust-item small {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.section-heading {
  max-width: 980px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.product-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: 34px;
  font-weight: 900;
  line-height: 1.2;
}

.section-heading p,
.product-heading p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.solutions {
  background: linear-gradient(180deg, #f7f9fc, #ffffff);
}

.solution-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 26px;
}

.solution-row article {
  position: relative;
  aspect-ratio: 9 / 16;
  min-height: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(8, 25, 54, 0.08);
}

.solution-row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.solution-row article:hover img {
  transform: scale(1.04);
}

.solution-row article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 25, 54, 0.02), rgba(8, 25, 54, 0.75));
}

.solution-row h3 {
  position: absolute;
  z-index: 1;
  right: 18px;
  bottom: 16px;
  left: 18px;
  margin: 0;
  color: var(--white);
  font-size: 19px;
  font-weight: 900;
}

.product-section {
  background: var(--white);
}

.product-heading {
  text-align: center;
}

.product-heading h2 {
  text-transform: uppercase;
}

.product-heading h2 span {
  color: var(--red);
}

.category-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin-top: 22px;
  border: 1px solid #bfc7d5;
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
}

.category-card {
  display: grid;
  grid-template-rows: auto 56px;
  min-width: 0;
  padding: 0;
  color: var(--navy);
  background: var(--white);
  border: 0;
  border-right: 1px solid #bfc7d5;
  cursor: pointer;
}

.category-card:last-child {
  border-right: 0;
}

.category-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  padding: 16px;
  object-fit: contain;
  object-position: center;
  background: radial-gradient(circle at center, #ffffff 0 54%, #f3f6fb 100%);
}

.category-card span {
  display: grid;
  place-items: center;
  padding: 0 10px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
}

.category-card.active {
  color: var(--white);
  background: #073b79;
}

.category-card.active img {
  border-bottom: 4px solid var(--red);
}

.category-carousel-nav {
  display: none;
}

.category-nav-button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  color: var(--white);
  background: var(--navy);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 10px 22px rgba(8, 25, 54, 0.18);
  cursor: pointer;
}

.category-nav-button svg {
  font-size: 23px;
  stroke-width: 2.4;
}

.category-nav-button:disabled {
  color: #758195;
  background: #edf1f7;
  box-shadow: none;
  cursor: default;
}

.category-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 42px;
  gap: 8px;
  padding: 0 4px;
}

.category-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  background: #c8d1e0;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition:
    width 180ms ease,
    background-color 180ms ease,
    transform 180ms ease;
}

.category-dot.active {
  width: 26px;
  background: var(--red);
}

.category-dot:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

.product-showcase {
  display: grid;
  grid-template-columns: 400px minmax(380px, 1fr) 380px;
  gap: 28px;
  align-items: stretch;
  margin-top: 22px;
}

.product-gallery,
.fit-panel {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.product-gallery {
  display: grid;
  padding: 14px;
}

.main-product-frame {
  min-height: 414px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--soft);
}

.main-product-frame img {
  width: 100%;
  height: 100%;
  padding: 14px;
  object-fit: contain;
  object-position: center;
}

.product-copy {
  padding: 2px 0;
}

.product-copy h3 {
  position: relative;
  margin: 0;
  color: #073b79;
  font-size: 33px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.product-copy h3::after {
  content: "";
  display: block;
  width: 68px;
  height: 4px;
  margin-top: 10px;
  background: var(--red);
}

.product-copy p {
  margin: 16px 0 18px;
  color: #293241;
  font-size: 15px;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  color: #2a3240;
  font-size: 14px;
}

.spec-table tr {
  border-bottom: 1px solid var(--line);
}

.spec-table th,
.spec-table td {
  padding: 8px 14px;
  text-align: left;
  vertical-align: top;
}

.spec-table th {
  width: 43%;
  color: var(--navy);
  background: #f3f5f8;
  font-weight: 900;
  text-transform: uppercase;
}

.fit-panel {
  padding: 24px 26px;
}

.fit-panel h4 {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
}

.fit-panel h4 + ul {
  margin-bottom: 30px;
}

.fit-panel ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fit-panel li {
  position: relative;
  min-height: 26px;
  padding-left: 36px;
  color: #2d3542;
  font-size: 15px;
}

.fit-panel li::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--red);
}

.fit-panel li::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 7px;
  width: 8px;
  height: 4px;
  border-bottom: 2px solid var(--white);
  border-left: 2px solid var(--white);
  transform: rotate(-45deg);
}

.benefit-list li::before {
  background: var(--white);
  border: 2px solid #9aa4b5;
}

.benefit-list li::after {
  border-color: var(--navy);
}

.standards-panel {
  display: grid;
  grid-template-columns: 320px 1fr 320px;
  align-items: center;
  gap: 24px;
  margin-top: 22px;
  padding: 22px 24px;
  color: var(--white);
  background: linear-gradient(135deg, #08244c, #0d427f);
  border-radius: 8px;
}

.standard-title h3 {
  margin: 0;
  font-size: 19px;
  font-weight: 900;
  text-transform: uppercase;
}

.standard-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.standard-list div {
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.standard-list strong,
.standard-list span {
  display: block;
}

.standard-list strong {
  font-size: 16px;
  font-weight: 900;
}

.standard-list span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
}

.standard-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70px;
  padding: 0 20px;
  color: var(--white);
  background: linear-gradient(180deg, #f13a3f, #ce191f);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 6px;
  font-size: 17px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.shop-section {
  background: #f6f8fb;
}

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

.shop-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(8, 25, 54, 0.06);
}

.shop-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.shop-card span,
.shop-card h3,
.shop-card p {
  margin-inline: 20px;
}

.shop-card span {
  display: block;
  margin-top: 18px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.shop-card h3 {
  margin-top: 7px;
  margin-bottom: 0;
  color: var(--navy);
  font-size: 20px;
  font-weight: 900;
}

.shop-card p {
  min-height: 48px;
  margin-top: 8px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
}

.shop-card button {
  width: calc(100% - 40px);
  min-height: 46px;
  margin: 0 20px 20px;
  color: var(--white);
  background: var(--navy-2);
  border: 0;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.insights-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f5f8fc 100%);
}

.insights-heading {
  max-width: 820px;
  margin-inline: auto;
}

.insights-heading.center h2 {
  position: relative;
  display: inline-block;
}

.insights-heading.center h2::after {
  content: "";
  position: absolute;
  right: 28%;
  bottom: -12px;
  left: 28%;
  height: 4px;
  background: var(--red);
  border-radius: 999px;
}

.insights-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  align-items: stretch;
  gap: 24px;
  margin-top: 26px;
}

.video-feature,
.blog-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(8, 25, 54, 0.07);
}

.video-feature {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
}

.video-frame {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background: var(--navy);
}

.video-frame img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.04) contrast(1.02);
}

.video-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 25, 54, 0.05), rgba(8, 25, 54, 0.68)),
    linear-gradient(90deg, rgba(8, 25, 54, 0.5), rgba(8, 25, 54, 0.04));
}

.video-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 1;
  padding: 8px 12px;
  color: var(--white);
  background: rgba(223, 31, 38, 0.95);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.video-play {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  padding: 0;
  color: var(--red);
  background: var(--white);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 18px 38px rgba(8, 25, 54, 0.32);
  cursor: pointer;
  transform: translate(-50%, -50%);
}

.video-play span {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 20px solid currentColor;
}

.video-play.playing {
  color: var(--white);
  background: var(--red);
}

.video-timeline {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 1;
  height: 5px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 999px;
}

.video-timeline span {
  display: block;
  width: 36%;
  height: 100%;
  background: var(--red);
  border-radius: inherit;
}

.video-copy {
  padding: 24px 26px 26px;
}

.video-meta,
.insight-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.video-meta span,
.insight-tags span {
  padding: 6px 10px;
  color: var(--navy);
  background: #eef3fa;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.video-copy h3 {
  margin: 16px 0 10px;
  color: var(--navy);
  font-size: 30px;
  line-height: 1.15;
}

.video-copy p {
  margin: 0;
  color: var(--muted);
}

.video-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
}

.video-actions button {
  min-height: 46px;
  padding: 0 18px;
  color: var(--white);
  background: var(--red);
  border: 0;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
}

.video-actions span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.blog-list {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.insights-section .blog-list {
  gap: 14px;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  height: 100%;
}

.insights-section .blog-list .sav-post-card.is-horizontal {
  grid-template-columns: minmax(138px, 31%) minmax(0, 1fr);
  min-height: 154px;
}

.insights-section .blog-list .sav-post-card.is-horizontal .sav-post-card-media {
  min-height: 154px;
}

.insights-section .blog-list .sav-post-card-media time {
  top: 12px;
  left: 12px;
  width: 56px;
  min-height: 56px;
}

.insights-section .blog-list .sav-post-card-media time strong {
  font-size: 23px;
}

.insights-section .blog-list .sav-post-card-media time span {
  font-size: 9px;
}

.insights-section .blog-list .sav-post-card.is-horizontal .sav-post-card-body {
  gap: 7px;
  padding: 14px 18px;
}

.insights-section .blog-list .sav-post-category {
  font-size: 11px;
}

.insights-section .blog-list .sav-post-card h3 {
  display: -webkit-box;
  overflow: hidden;
  font-size: 18px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.insights-section .blog-list .sav-post-card p {
  display: -webkit-box;
  overflow: hidden;
  font-size: 13.5px;
  line-height: 1.45;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.insights-section .blog-list .sav-read-more {
  font-size: 13.5px;
}

.blog-secondary-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.blog-secondary-row[hidden] {
  display: none;
}

.blog-secondary-row .sav-post-card.is-horizontal {
  grid-template-columns: minmax(150px, 28%) minmax(0, 1fr);
  min-height: 154px;
}

.blog-secondary-row .sav-post-card.is-horizontal .sav-post-card-media {
  min-height: 154px;
}

.blog-secondary-row .sav-post-card.is-horizontal .sav-post-card-body {
  align-content: center;
  gap: 7px;
  padding: 16px 18px;
}

.blog-secondary-row .sav-post-card h3 {
  display: -webkit-box;
  overflow: hidden;
  font-size: 18px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.blog-secondary-row .sav-post-card p {
  display: -webkit-box;
  overflow: hidden;
  font-size: 13.5px;
  line-height: 1.45;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.blog-card {
  display: grid;
  grid-template-columns: 178px 1fr;
  min-height: 184px;
}

.blog-card img {
  width: 100%;
  height: 100%;
  min-height: 184px;
  object-fit: cover;
}

.blog-card div {
  display: grid;
  align-content: center;
  gap: 7px;
  padding: 18px 20px;
}

.blog-card span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.2;
}

.blog-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.blog-card a {
  width: max-content;
  margin-top: 4px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
}

.insights-tools {
  display: grid;
  grid-template-columns: minmax(320px, 560px) auto;
  gap: 14px;
  align-items: center;
  margin-top: 20px;
}

.insights-all-link {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  color: var(--navy);
  background: #eef3fa;
  border: 1px solid #d7deeb;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 900;
}

.sav-blog-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 132px;
  gap: 10px;
  align-items: stretch;
}

.sav-blog-search label {
  min-width: 0;
}

.sav-blog-search label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.sav-blog-search input {
  width: 100%;
  min-height: 46px;
  padding: 0 16px;
  color: var(--text);
  background: var(--white);
  border: 1px solid #cfd6e1;
  border-radius: 6px;
  outline: none;
}

.sav-blog-search input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(15, 95, 168, 0.12);
}

.sav-blog-search button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 16px;
  color: var(--white);
  background: var(--red);
  border: 0;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
}

.video-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  color: var(--white);
  background: var(--navy-2);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 900;
}

.sav-post-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(8, 25, 54, 0.07);
  min-width: 0;
}

.sav-post-card.is-horizontal {
  display: grid;
  grid-template-columns: minmax(172px, 32%) minmax(0, 1fr);
  min-height: 212px;
}

.sav-post-card-media {
  position: relative;
  display: block;
  min-height: 220px;
  overflow: hidden;
  background: #eef3fa;
}

.sav-post-card.is-horizontal .sav-post-card-media {
  height: 100%;
  min-height: 212px;
}

.sav-post-card-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 220ms ease;
}

.sav-post-card:hover .sav-post-card-media img {
  transform: scale(1.04);
}

.sav-post-card-media time {
  position: absolute;
  top: 14px;
  left: 14px;
  display: grid;
  place-items: center;
  width: 64px;
  min-height: 64px;
  color: var(--white);
  background: var(--red);
  border-radius: 6px;
  box-shadow: 0 12px 26px rgba(8, 25, 54, 0.2);
  text-align: center;
}

.sav-post-card-media time strong,
.sav-post-card-media time span {
  display: block;
  line-height: 1;
}

.sav-post-card-media time strong {
  font-size: 25px;
  font-weight: 900;
}

.sav-post-card-media time span {
  margin-top: 5px;
  font-size: 10px;
  font-weight: 800;
}

.sav-post-card-body {
  display: grid;
  align-content: start;
  gap: 9px;
  padding: 20px;
  min-width: 0;
}

.sav-post-card.is-horizontal .sav-post-card-body {
  align-content: center;
  padding: 18px 20px;
}

.sav-post-category {
  width: max-content;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.sav-post-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.22;
}

.sav-post-card h3 a {
  color: inherit;
}

.sav-post-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.sav-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  margin-top: 4px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
}

.sav-blog-page,
.sav-article-page,
.sav-page-shell {
  background: #f6f8fb;
}

.sav-blog-hero,
.sav-article-hero {
  background:
    linear-gradient(135deg, rgba(8, 25, 54, 0.96), rgba(9, 65, 128, 0.94)),
    var(--navy);
}

.sav-blog-hero .section-heading h1,
.sav-blog-hero .section-heading p,
.sav-article-hero h1,
.sav-article-hero p,
.sav-breadcrumb,
.sav-breadcrumb a {
  color: var(--white);
}

.sav-blog-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  gap: 36px;
  align-items: center;
}

.sav-blog-hero .section-heading h1,
.sav-article-hero h1 {
  margin: 0;
  font-size: 42px;
  font-weight: 900;
  line-height: 1.16;
}

.sav-blog-hero .section-heading p,
.sav-article-hero p {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.82);
}

.sav-blog-hero-search {
  display: grid;
  gap: 12px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
}

.sav-blog-hero-search > a {
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
  text-align: center;
}

.sav-blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: start;
}

.sav-post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.sav-blog-sidebar {
  display: grid;
  gap: 18px;
  position: sticky;
  top: calc(var(--adminbar-offset) + 104px);
}

.sav-sidebar-panel {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(8, 25, 54, 0.06);
}

.sav-sidebar-panel h2 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 900;
}

.sav-sidebar-search .sav-blog-search {
  grid-template-columns: 1fr;
}

.sav-consult-box {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(223, 31, 38, 0.95), rgba(8, 25, 54, 0.96)),
    var(--red);
  border: 0;
}

.sav-consult-box span,
.sav-consult-box strong,
.sav-consult-box p,
.sav-consult-box a {
  display: block;
}

.sav-consult-box span {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.sav-consult-box strong {
  margin-top: 6px;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.2;
}

.sav-consult-box p {
  margin: 12px 0 16px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.sav-consult-box a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  color: var(--navy);
  background: var(--white);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 900;
}

.sav-category-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sav-category-list a {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  color: var(--navy);
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  font-weight: 800;
}

.sav-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.sav-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  padding: 0 12px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 900;
}

.sav-pagination .current {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
}

.sav-empty-state {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 56px 24px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  text-align: center;
}

.sav-empty-state i {
  color: var(--red);
  font-size: 34px;
}

.sav-empty-state h2,
.sav-empty-state p {
  margin: 0;
}

.sav-empty-state p {
  max-width: 520px;
  color: var(--muted);
}

.sav-empty-state a {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  color: var(--white);
  background: var(--red);
  border-radius: 6px;
  font-weight: 900;
}

.sav-article-hero {
  padding: 46px 0;
}

.sav-article-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.75fr);
  gap: 44px;
  align-items: center;
}

.sav-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.sav-article-hero .sav-post-category {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 10px;
  color: var(--white);
  background: var(--red);
  border-radius: 6px;
}

.sav-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.sav-article-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.sav-article-hero-media {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.24);
}

.sav-article-hero-media img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.sav-article-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 34px;
  align-items: start;
}

.sav-article-content {
  min-width: 0;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(8, 25, 54, 0.06);
}

.sav-page-shell .sav-article-content {
  max-width: 920px;
}

.sav-article-content > *:first-child {
  margin-top: 0;
}

.sav-article-content > *:last-child {
  margin-bottom: 0;
}

.sav-article-content h1,
.sav-article-content h2,
.sav-article-content h3 {
  color: var(--navy);
  line-height: 1.25;
}

.sav-article-content h1 {
  font-size: 38px;
}

.sav-article-content h2 {
  margin-top: 30px;
  font-size: 27px;
}

.sav-article-content h3 {
  margin-top: 24px;
  font-size: 22px;
}

.sav-article-content p,
.sav-article-content li {
  color: #2f3948;
  font-size: 17px;
}

.sav-article-content p {
  margin: 16px 0;
}

.sav-article-content ul,
.sav-article-content ol {
  display: grid;
  gap: 10px;
  margin: 16px 0;
  padding-left: 22px;
}

.sav-article-content a {
  color: var(--blue);
  font-weight: 900;
}

.sav-article-cta {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  padding: 22px;
  color: var(--white);
  background: linear-gradient(135deg, #08244c, #0d427f);
  border-radius: 8px;
}

.sav-article-cta strong,
.sav-article-cta span,
.sav-article-cta a {
  display: block;
}

.sav-article-cta strong {
  font-size: 22px;
  font-weight: 900;
}

.sav-article-cta span {
  color: rgba(255, 255, 255, 0.82);
}

.sav-article-cta a {
  justify-self: start;
  min-height: 44px;
  margin-top: 6px;
  padding: 11px 16px;
  color: var(--white);
  background: var(--red);
  border-radius: 6px;
  font-size: 14px;
}

.sav-article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.sav-article-tags a {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  color: var(--navy);
  background: #eef3fa;
  border-radius: 999px;
  font-size: 13px;
}

.sav-mini-posts {
  display: grid;
  gap: 14px;
}

.sav-mini-post {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 12px;
  align-items: center;
}

.sav-mini-post img {
  width: 82px;
  height: 68px;
  object-fit: cover;
  border-radius: 6px;
}

.sav-mini-post strong,
.sav-mini-post small {
  display: block;
}

.sav-mini-post strong {
  color: var(--navy);
  font-size: 14px;
  line-height: 1.3;
}

.sav-mini-post small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.sav-related-posts {
  background: var(--white);
}

.contact {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(560px, 1.1fr);
  gap: 56px;
  align-items: start;
}

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

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

.contact-form .wpcf7,
.contact-form .wpcf7-form,
.sav-cf7-form {
  width: 100%;
}

.contact-form .wpcf7-form {
  display: block;
}

.sav-cf7-form {
  display: grid;
  gap: 14px;
}

.sav-cf7-form br,
.sav-cf7-form > p:empty {
  display: none;
}

.sav-cf7-form p {
  margin: 0;
}

.contact-form label {
  display: grid;
  gap: 6px;
}

.contact-form label > span:first-child,
.sav-field-label {
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.sav-cf7-form .sav-field-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.sav-field {
  position: relative;
  margin-bottom: 12px;
}

.sav-field-message {
  margin-bottom: 16px;
}

.sav-field .wpcf7-form-control-wrap {
  position: relative;
  display: block;
  width: 100%;
}

.sav-field .wpcf7-form-control-wrap::before {
  position: absolute;
  z-index: 1;
  top: 18px;
  left: 18px;
  color: #6b7280;
  font-family: "Font Awesome 6 Free";
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

.sav-field-name .wpcf7-form-control-wrap::before {
  content: "\f007";
}

.sav-field-phone .wpcf7-form-control-wrap::before {
  content: "\f095";
}

.sav-field-project .wpcf7-form-control-wrap::before {
  content: "\f1ad";
}

.sav-field-message .wpcf7-form-control-wrap::before {
  content: "\f15c";
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 58px;
  padding: 0 18px 0 50px;
  color: var(--text);
  background: var(--white);
  border: 1px solid #cfd6e1;
  border-radius: 7px;
  outline: none;
}

.contact-form textarea {
  min-height: 116px;
  padding-top: 16px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(15, 95, 168, 0.12);
}

.contact-form .wpcf7-not-valid {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(223, 31, 38, 0.1);
}

.contact-form .wpcf7-not-valid-tip {
  display: block;
  margin-top: 6px;
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
}

.form-submit {
  width: 100%;
  margin-top: 12px;
  padding: 0 32px !important;
  color: var(--white) !important;
  background: linear-gradient(180deg, #ef222b, var(--red-dark)) !important;
  border: 0;
  font-size: 20px;
  cursor: pointer;
}

.contact-form .wpcf7-submit.form-submit {
  min-height: 58px;
  box-shadow: 0 16px 28px rgba(223, 31, 38, 0.22);
}

.contact-form .wpcf7-submit.form-submit:hover {
  background: linear-gradient(180deg, #f5323a, #c9141b) !important;
}

.sav-form-actions {
  display: block;
}

.contact-form .wpcf7-spinner {
  margin: 10px auto 0;
}

.contact-form .wpcf7-response-output {
  margin: 12px 0 0 !important;
  padding: 12px 14px !important;
  color: var(--navy);
  background: #f4f7fb;
  border: 1px solid var(--line) !important;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 700;
}

.contact-form .sent .wpcf7-response-output {
  color: #0f5132;
  background: #eefbf4;
  border-color: #9bd9b8 !important;
}

.contact-form .invalid .wpcf7-response-output,
.contact-form .failed .wpcf7-response-output {
  color: #842029;
  background: #fff5f5;
  border-color: #f1aeb5 !important;
}

body.sav-form-popup-open {
  overflow: hidden;
}

.sav-form-popup {
  position: fixed;
  z-index: 999999;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 22px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.sav-form-popup.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.sav-form-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 18, 48, 0.58);
  backdrop-filter: blur(5px);
}

.sav-form-popup-panel {
  position: relative;
  width: min(100%, 480px);
  padding: 30px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(4, 14, 38, 0.28);
  transform: translateY(14px) scale(0.98);
  transition: transform 180ms ease;
}

.sav-form-popup.is-visible .sav-form-popup-panel {
  transform: translateY(0) scale(1);
}

.sav-form-popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--navy);
  background: #f3f6fb;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
}

.sav-form-popup-icon {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  margin-bottom: 18px;
  color: var(--white);
  background: var(--red);
  border-radius: 50%;
  font-size: 28px;
}

.sav-form-popup.is-success .sav-form-popup-icon {
  background: #118651;
}

.sav-form-popup.is-warning .sav-form-popup-icon {
  background: #d99a16;
}

.sav-form-popup.is-error .sav-form-popup-icon {
  background: var(--red);
}

.sav-form-popup-kicker {
  margin: 0 0 8px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.sav-form-popup.is-success .sav-form-popup-kicker {
  color: #118651;
}

.sav-form-popup.is-warning .sav-form-popup-kicker {
  color: #9a6810;
}

.sav-form-popup-copy h3 {
  margin: 0 0 10px;
  font-size: 28px;
  line-height: 1.15;
}

.sav-form-popup-copy p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.sav-form-popup-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  margin-top: 24px;
}

.sav-form-popup-actions .btn {
  min-height: 50px;
}

.sav-form-popup-actions .btn-outline {
  padding-inline: 24px;
  background: var(--white);
}

@media (max-width: 560px) {
  .sav-form-popup {
    align-items: end;
    padding: 14px;
  }

  .sav-form-popup-panel {
    padding: 26px 20px 20px;
  }

  .sav-form-popup-copy h3 {
    font-size: 23px;
  }

  .sav-form-popup-actions {
    grid-template-columns: 1fr;
  }

  .sav-form-popup-actions .btn-outline {
    width: 100%;
  }
}

.form-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

.form-note i {
  color: var(--navy);
}

.contact-side {
  display: grid;
  gap: 20px;
}

.contact-photo {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: center 54%;
  border-radius: 8px;
}

.commitment {
  padding: 22px 24px;
  background: #fbfcfe;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.commitment h3 {
  margin: 0 0 18px;
  color: var(--red);
  font-size: 22px;
  font-weight: 900;
}

.commitment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 28px;
}

.commitment article {
  position: relative;
  min-height: 76px;
  padding-left: 54px;
}

.commitment article::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 38px;
  height: 38px;
  border: 2px solid rgba(223, 31, 38, 0.22);
  border-radius: 50%;
  background: radial-gradient(circle at center, var(--red) 0 44%, transparent 46%);
}

.commitment strong,
.commitment span {
  display: block;
}

.commitment strong {
  color: var(--navy);
  font-size: 15px;
  font-weight: 900;
}

.commitment span {
  margin-top: 5px;
  color: #3b4351;
  font-size: 14px;
}

.company-card {
  display: grid;
  grid-template-columns: 112px 1fr 150px;
  gap: 18px;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.company-card img {
  width: 104px;
  height: 92px;
  object-fit: contain;
}

.company-card h3 {
  margin: 0 0 5px;
  color: var(--red);
  font-size: 18px;
  font-weight: 900;
}

.company-card p {
  margin: 2px 0;
  color: #2d3542;
  font-size: 13px;
}

.company-card a {
  justify-self: end;
  color: var(--red);
  font-size: 20px;
  font-weight: 900;
}

.site-footer {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(8, 25, 54, 0.98), rgba(7, 59, 121, 0.98)),
    #08244c;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
  gap: 36px;
  padding: 42px 0 34px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 28px;
  font-weight: 900;
}

.footer-brand img {
  width: 92px;
  height: 76px;
  object-fit: contain;
  background: var(--white);
  border-radius: 6px;
}

.site-footer p {
  max-width: 290px;
  margin: 18px 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.site-footer h3 {
  margin: 0 0 12px;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}

.site-footer a:not(.footer-brand) {
  display: block;
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  display: grid !important;
  place-items: center;
  width: 36px;
  height: 36px;
  margin: 0 !important;
  color: var(--white) !important;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  font-size: 12px !important;
  font-weight: 900;
}

.socials a i {
  font-size: 16px;
  line-height: 1;
}

.footer-bottom {
  padding: 16px 24px 20px;
  color: rgba(255, 255, 255, 0.7);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 13px;
  text-align: center;
}

.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 25;
  display: none;
  gap: 8px;
}

.floating-cta a {
  display: grid;
  place-items: center;
  min-height: 42px;
  padding: 0 14px;
  color: var(--white);
  background: var(--red);
  border-radius: 6px;
  box-shadow: 0 14px 28px rgba(8, 25, 54, 0.22);
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 1280px) {
  .site-header {
    grid-template-columns: 280px 1fr 268px;
    gap: 18px;
    padding-inline: 34px;
  }

  .main-nav {
    gap: 28px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero-product-main {
    width: 420px;
    height: 500px;
  }

  .hero-product-kit {
    right: 360px;
    width: 215px;
    height: 250px;
  }

  .product-showcase {
    grid-template-columns: 360px 1fr 340px;
  }

  .standards-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
    min-height: 92px;
    padding: 12px 24px;
  }

  .brand img {
    width: 70px;
    height: 62px;
  }

  .brand strong {
    font-size: 22px;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    padding: 0;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
  }

  .menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--navy);
  }

  .menu-toggle span + span {
    margin-top: -14px;
  }

  .main-nav {
    position: fixed;
    top: calc(92px + var(--adminbar-offset));
    right: 16px;
    left: 16px;
    display: none;
    padding: 16px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: grid;
    gap: 2px;
  }

  .main-nav a {
    padding: 13px 10px;
  }

  .header-hotline {
    min-width: 0;
    grid-template-columns: 42px 1fr;
    min-height: 62px;
    padding: 8px 12px;
  }

  .hotline-icon {
    width: 42px;
    height: 42px;
  }

  .header-hotline b:nth-of-type(n + 2),
  .header-hotline small {
    display: none;
  }

  .header-hotline b {
    font-size: 15px;
  }

  .hero {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 0;
    padding: 38px 24px 30px;
  }

  .hero-content {
    max-width: 680px;
    margin: 0;
    padding: 0;
  }

  .hero-products {
    min-height: 470px;
    margin: 26px 0 0;
  }

  .hero-product-main {
    right: 0;
    left: auto;
    width: 64%;
  }

  .hero-product-kit {
    right: auto;
    left: 0;
  }

  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
    padding-inline: 20px;
  }

  .trust-item:nth-child(3) {
    border-left: 0;
  }

  .solution-row,
  .shop-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .category-card:nth-child(3n) {
    border-right: 0;
  }

  .category-card:nth-child(n + 4) {
    border-top: 1px solid #bfc7d5;
  }

  .product-showcase,
  .insights-layout,
  .sav-blog-hero-grid,
  .sav-blog-layout,
  .sav-article-hero-grid,
  .sav-article-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .sav-blog-sidebar {
    position: static;
  }

  .sav-post-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .insights-section .blog-list {
    grid-template-rows: none;
    height: auto;
  }

  .blog-card {
    grid-template-columns: 1fr;
  }

  .sav-post-card.is-horizontal {
    grid-template-columns: 1fr;
  }

  .insights-section .blog-list .sav-post-card.is-horizontal {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .sav-post-card.is-horizontal .sav-post-card-media {
    min-height: 190px;
  }

  .insights-section .blog-list .sav-post-card.is-horizontal .sav-post-card-media {
    min-height: 190px;
  }

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

  .blog-secondary-row .sav-post-card.is-horizontal {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .blog-secondary-row .sav-post-card.is-horizontal .sav-post-card-media {
    min-height: 190px;
  }

  .blog-card img {
    height: 190px;
  }

}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, 680px);
  }

  .section-pad {
    padding: 36px 0;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    padding: 10px 14px;
  }

  .brand img {
    width: 58px;
    height: 52px;
  }

  .brand strong {
    font-size: 19px;
  }

  .brand small {
    font-size: 10px;
  }

  .header-hotline {
    display: none;
  }

  .hero {
    padding: 30px 14px 20px;
  }

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

  .hero p {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
    min-height: 54px;
  }

  .hero-products {
    min-height: 390px;
  }

  .hero-product-main {
    width: 76%;
    height: 332px;
    bottom: 0;
  }

  .hero-product-kit {
    width: 42%;
    height: 190px;
    bottom: 24px;
  }

  .trust-strip,
  .solution-row,
  .shop-grid,
  .blog-list,
  .footer-grid,
  .standard-list,
  .sav-post-grid,
  .insights-tools,
  .commitment-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    padding-inline: 0;
  }

  .trust-item,
  .trust-item + .trust-item,
  .trust-item:nth-child(3) {
    justify-content: flex-start;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .section-heading h2,
  .product-heading h2 {
    font-size: 27px;
  }

  .video-frame,
  .video-frame img {
    min-height: 260px;
  }

  .video-copy {
    padding: 20px;
  }

  .video-copy h3 {
    font-size: 24px;
  }

  .video-play {
    width: 64px;
    height: 64px;
  }

  .blog-card img {
    height: 210px;
  }

  .insights-tools {
    gap: 10px;
  }

  .insights-all-link {
    justify-self: stretch;
    justify-content: center;
  }

  .sav-blog-search {
    grid-template-columns: 1fr;
  }

  .sav-post-card.is-horizontal {
    grid-template-columns: 1fr;
  }

  .sav-post-card.is-horizontal .sav-post-card-media {
    min-height: 210px;
  }

  .insights-section .blog-list .sav-post-card.is-horizontal .sav-post-card-media {
    min-height: 210px;
  }

  .blog-secondary-row {
    grid-template-columns: 1fr;
  }

  .blog-secondary-row .sav-post-card.is-horizontal .sav-post-card-media {
    min-height: 210px;
  }

  .sav-blog-hero .section-heading h1,
  .sav-article-hero h1 {
    font-size: 32px;
  }

  .sav-article-hero {
    padding: 34px 0;
  }

  .sav-article-hero-media img {
    height: 260px;
  }

  .sav-article-content {
    padding: 22px;
  }

  .sav-article-content h1 {
    font-size: 30px;
  }

  .sav-article-content h2 {
    font-size: 23px;
  }

  .sav-article-content p,
  .sav-article-content li {
    font-size: 16px;
  }

  .sav-sidebar-panel {
    padding: 18px;
  }

  .category-strip {
    display: flex;
    gap: 12px;
    margin-inline: -14px;
    padding: 2px 14px 12px;
    overflow-x: auto;
    overflow-y: hidden;
    border: 0;
    border-radius: 0;
    background: transparent;
    scroll-padding-inline: 14px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .category-card {
    flex: 0 0 min(78vw, 300px);
    grid-template-rows: auto 54px;
    overflow: hidden;
    border: 1px solid #bfc7d5;
    border-radius: 8px;
    scroll-snap-align: start;
  }

  .category-card img {
    height: auto;
    padding: 12px;
  }

  .category-strip::-webkit-scrollbar {
    display: none;
  }

  .category-card:last-child,
  .category-card:nth-child(2n),
  .category-card:nth-child(3n),
  .category-card:nth-child(n + 3) {
    border: 1px solid #bfc7d5;
  }

  .category-carousel-nav {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    align-items: center;
    gap: 12px;
    margin: 0 0 18px;
  }

  .main-product-frame {
    min-height: 360px;
  }

  .product-copy h3 {
    font-size: 27px;
  }

  .spec-table th,
  .spec-table td {
    display: block;
    width: 100%;
  }

  .standards-panel {
    padding: 18px;
  }

  .standard-list {
    gap: 10px;
  }

  .standard-list div {
    padding-left: 0;
    border-left: 0;
  }

  .contact-form .section-heading h2 {
    font-size: 28px;
  }

  .contact-photo {
    height: 220px;
  }

  .company-card {
    grid-template-columns: 76px 1fr;
  }

  .company-card img {
    width: 72px;
    height: 66px;
  }

  .company-card a {
    grid-column: 1 / -1;
    justify-self: center;
    text-align: center;
  }

  .floating-cta {
    display: none;
  }
}

@media (max-width: 430px) {
  .hero h1 {
    font-size: 34px;
  }

  .hero-products {
    min-height: 340px;
  }

  .hero-product-main {
    width: 78%;
    height: 300px;
  }

  .hero-product-kit {
    width: 45%;
    height: 172px;
  }

  .category-strip {
    grid-template-columns: none;
  }

  .category-card,
  .category-card:nth-child(2n),
  .category-card:nth-child(3n) {
    flex-basis: min(84vw, 300px);
    border: 1px solid #bfc7d5;
  }

  .category-card + .category-card {
    border-top: 1px solid #bfc7d5;
  }
}
