/* ============================================================
 * common.css — Global layer for demo058cc (industrial B2B site)
 * Shared across every page: tokens, reset, layout, header, mega/dropdown,
 * footer, float-nav, page-banner, faq, form, buttons, reveal, responsive.
 * Per project rule: CSS variables are used for COLOR only.
 * ============================================================ */
/* #region tokens (color variables only) */
:root {
  --c-navy: #0B2A4A;
  /* primary deep blue */
  --c-navy-2: #11375F;
  /* lighter navy panel */
  --c-navy-dark: #071E36;
  /* footer / overlay */
  --c-orange: #F26522;
  /* CTA / accent */
  --c-orange-2: #FF7A3C;
  /* accent hover */
  --c-ink: #1A2533;
  /* body text */
  --c-mid: #5A6B7B;
  /* secondary text */
  --c-line: #E2E8F0;
  /* borders */
  --c-soft: #F4F7FB;
  /* soft section bg */
  --c-soft-2: #EAF0F7;
  /* alt soft bg */
  --c-white: #ffffff;
  --c-star: #FFB23E;
  /* rating */
}
/* #endregion */
/* #region reset */
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
html {
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
}
/* clip (not hidden) so position:sticky header keeps working */
html,
body {
  width: 100%;
}
body {
  font-family: Arial, Helvetica, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-ink);
  background: var(--c-white);
  overflow-x: clip;
}
a {
  text-decoration: none;
  color: inherit;
}
ol,
ul,
li {
  list-style: none;
}
img {
  display: block;
  border: 0;
  max-width: 100%;
  height: auto;
}
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  outline: none;
  border: none;
  background: none;
}
table {
  border-spacing: 0;
  border-collapse: collapse;
}
h1,
h2,
h3,
h4,
h5 {
  line-height: 1.25;
  font-weight: 800;
  color: var(--c-navy);
}
svg {
  display: inline-block;
  vertical-align: middle;
}
/* #endregion */
/* #region layout: container + flex helpers (no float anywhere) */
:root {
  --max: 1600px;
}
/* single source of truth for content width */
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 40px;
}
.flex {
  display: flex;
}
.flex-wrap {
  flex-wrap: wrap;
}
.items-center {
  align-items: center;
}
.items-start {
  align-items: flex-start;
}
.items-end {
  align-items: flex-end;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.flex-col {
  flex-direction: column;
}
.flex-1 {
  flex: 1;
}
.text-center {
  text-align: center;
}
.mt-14 {
  margin-top: 14px;
}
.mt-44 {
  margin-top: 44px;
}
.w-full {
  width: 100%;
}
.justify-center-self {
  justify-content: center;
}
.clamp-1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
/* responsive section spacing — 1920:90 / 1440:80 / 1200:70 / 991:60 / 768:60 */
.section-pad {
  padding-top: 90px;
  padding-bottom: 90px;
}
.section-pt {
  padding-top: 90px;
}
.section-pb {
  padding-bottom: 90px;
}
.bg-soft {
  background: var(--c-soft);
}
.bg-soft-2 {
  background: var(--c-soft-2);
}
.bg-navy {
  background: var(--c-navy);
}
/* #endregion */
/* #region equal-ratio image box (per md spec) */
.img_box {
  overflow: hidden;
  position: relative;
  display: block;
  background: linear-gradient(135deg, var(--c-soft-2), var(--c-soft));
}
.img_box img,
.img_box iframe,
.img_box video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.img_box img {
  transition: transform 0.6s ease;
}
.img-content .img_box {
  padding-top: 50%;
}
.img-hover:hover .img_box img {
  transform: scale(1.06);
}
/* placeholder watermark inside img boxes (shows ratio while no real asset) */
.ph {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(11, 42, 74, 0.28);
  font-size: 13px;
  letter-spacing: 0.12em;
  font-weight: 700;
  text-transform: uppercase;
}
/* #endregion */
/* #region section heads */
.sec-head {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}
.sec-head.left {
  margin-left: 0;
  text-align: left;
}
.sec-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--c-orange);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.sec-label::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--c-orange);
  display: inline-block;
}
.sec-label.center {
  display: inline-flex;
}
.sec-title {
  font-size: clamp(26px, 3vw, 40px);
}
.sec-title.on-dark {
  color: var(--c-white);
}
.sec-sub {
  margin-top: 16px;
  color: var(--c-mid);
  font-size: 16px;
}
.sec-sub.on-dark {
  color: rgba(255, 255, 255, 0.78);
}
/* #endregion */
/* #region buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn svg {
  width: 18px;
  height: 18px;
}
.btn-primary {
  background: var(--c-orange);
  color: var(--c-white);
}
.btn-primary:hover {
  background: var(--c-orange-2);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(242, 101, 34, 0.32);
}
.btn-navy {
  background: var(--c-navy);
  color: var(--c-white);
}
.btn-navy:hover {
  background: var(--c-navy-2);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--c-navy);
  border: 1.5px solid var(--c-line);
}
.btn-ghost:hover {
  border-color: var(--c-navy);
  color: var(--c-navy);
}
.btn-ghost.on-dark {
  color: var(--c-white);
  border-color: rgba(255, 255, 255, 0.4);
}
.btn-ghost.on-dark:hover {
  background: var(--c-white);
  color: var(--c-navy);
}
.btn-sm {
  padding: 10px 20px;
  font-size: 14px;
}
.link-more {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--c-orange);
  font-weight: 700;
  font-size: 15px;
}
.link-more svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}
.link-more:hover svg {
  transform: translateX(4px);
}
/* #endregion */
/* #region topbar */
.topbar {
  background: var(--c-navy-dark);
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 40px;
}
.topbar-info {
  display: flex;
  align-items: center;
  gap: 26px;
}
.topbar-info a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: color 0.25s;
  font-size: 16px;
}
.topbar-info a:hover {
  color: var(--c-white);
}
.topbar-info svg {
  width: 15px;
  height: 15px;
  color: var(--c-orange);
}
.topbar-social {
  display: flex;
  align-items: center;
  gap: 14px;
}
.topbar-social a:hover {
  color: var(--c-white);
}
.topbar-social svg {
  width: 22px;
  height: 22px;
}
.hide-sm {
  display: inline;
}
@media (max-width: 1200px) {
  .hide-sm {
    display: none;
  }
}
/* #endregion */
/* #region navbar + mega/dropdown */
.navbar {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--c-white);
  box-shadow: 0 2px 14px rgba(7, 30, 54, 0.06);
  transition: box-shadow 0.3s;
}
.navbar.scrolled {
  box-shadow: 0 6px 22px rgba(7, 30, 54, 0.12);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.nav-logo {
  display: flex;
  align-items: center;
  height: 50px;
}
.nav-logo img {
  width: auto;
  height: 100%;
}
.nav-menu {
  display: flex;
  align-items: center;
  height: 100%;
}
.nav-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
.nav-item > a {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 100%;
  padding: 0 18px;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--c-ink);
  transition: color 0.25s;
}
.nav-item > a .caret {
  width: 15px;
  height: 15px;
  transition: transform 0.3s;
  color: var(--c-mid);
}
.nav-item:hover > a {
  color: var(--c-orange);
}
.nav-item:hover > a .caret {
  transform: rotate(180deg);
}
.nav-item.active > a {
  color: var(--c-orange);
}
.nav-item.active > a::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  height: 2px;
  background: var(--c-orange);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-search-btn,
.nav-quote {
  display: inline-flex;
  align-items: center;
}
.nav-search {
  position: relative;
  z-index: 1;
}
.nav-search-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--c-soft);
  color: var(--c-navy);
  justify-content: center;
  transition: all 0.25s;
  cursor: pointer;
  transition: all 0.5s;
}
.nav-search-form.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0px) scale(1);
}
.nav-search-form {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  z-index: 1;
  display: flex;
  background: #F4F7FB;
  padding: 10px;
  border-radius: 8px;
  transition: all 0.5s;
  opacity: 0;
  pointer-events: none;
  transform: translateY(30px) scale(0.5);
}
.nav-search-form input {
  width: 200px;
  height: 46px;
  background-color: #fff;
  padding: 0 15px;
  font-size: 16px;
  color: #222 !important;
  flex-shrink: 0;
  border-radius: 8px 0 0 8px;
}
.nav-search-form button {
  width: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #222;
  flex-shrink: 0;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
  transition: all 0.5s;
}
.nav-search-form button svg {
  width: 50%;
}
.nav-search-form button svg path,
.nav-search-form button svg circle {
  stroke: #fff;
}
.nav-search-form button:hover {
  background: var(--c-orange);
}
.nav-search-btn:hover {
  background: var(--c-navy);
  color: #fff;
}
.nav-search-btn svg {
  width: 18px;
  height: 18px;
}
/* simple dropdown (Case / Blog) */
.dropdown {
  position: absolute;
  top: 100%;
  left: 8px;
  min-width: 230px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(7, 30, 54, 0.16);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.28s ease;
  border-top: 3px solid var(--c-orange);
}
.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  color: var(--c-ink);
  transition: all 0.2s;
}
.dropdown a svg {
  width: 16px;
  height: 16px;
  color: var(--c-orange);
  flex: none;
}
.dropdown a:hover {
  background: var(--c-soft);
  color: var(--c-orange);
  padding-left: 18px;
}
/* mega menu (Products) */
.mega {
  position: fixed;
  left: 0;
  right: 0;
  top: 120px;
  background: #fff;
  box-shadow: 0 24px 50px rgba(7, 30, 54, 0.16);
  border-top: 1px solid var(--c-line);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  z-index: 59;
}
.navbar.scrolled .mega {
  top: 80px;
}
/* topbar scrolled away → anchor to navbar bottom */
.nav-item.has-mega:hover .mega {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mega-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr) 300px;
  gap: 30px;
  padding: 38px 0 42px;
}
.mega-col h4 {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-orange);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--c-line);
}
.mega-col a {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 0;
  font-size: 15px;
  color: var(--c-mid);
  font-weight: 600;
  transition: all 0.2s;
}
.mega-col a:hover {
  color: var(--c-orange);
  transform: translateX(4px);
}
.mega-col a svg {
  width: 15px;
  height: 15px;
  color: var(--c-navy);
  opacity: 0.6;
}
.mega-feature {
  background: linear-gradient(150deg, var(--c-navy), var(--c-navy-2));
  border-radius: 12px;
  padding: 26px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.mega-feature h5 {
  color: #fff;
  font-size: 19px;
  margin-bottom: 8px;
}
.mega-feature p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 18px;
}
/* hamburger (mobile) */
.hamburger {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: var(--c-soft);
  color: var(--c-navy);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.hamburger svg {
  width: 22px;
  height: 22px;
}
/* #endregion */
/* #region mobile menu */
.m-menu {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(360px, 86vw);
  background: #fff;
  z-index: 120;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  box-shadow: -10px 0 40px rgba(7, 30, 54, 0.18);
  display: flex;
  flex-direction: column;
}
.m-menu.open {
  transform: translateX(0);
}
.m-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7, 30, 54, 0.5);
  z-index: 110;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s;
}
.m-overlay.open {
  opacity: 1;
  visibility: visible;
}
.m-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--c-line);
}
.m-close {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--c-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.m-close svg {
  width: 20px;
  height: 20px;
}
.m-nav {
  padding: 10px 0;
  overflow-y: auto;
  flex: 1;
}
.m-nav > li {
  border-bottom: 1px solid var(--c-line);
}
.m-nav > li > a,
.m-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 22px;
  font-size: 16px;
  font-weight: 600;
  color: var(--c-ink);
  cursor: pointer;
}
.m-row .caret {
  width: 14px;
  height: 14px;
  transition: transform 0.3s;
  color: var(--c-mid);
}
.m-row.open .caret {
  transform: rotate(180deg);
}
.m-sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background: var(--c-soft);
}
.m-sub-item .m-sub-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 35px;
}
.m-sub-item .m-sub-flex > a {
  display: inline-block;
  padding: 12px 34px;
  font-size: 16px;
  color: var(--c-mid);
}
.m-sub-item .m-sub-flex svg {
  width: 15px;
  transition: all 0.5s;
}
.m-sub-item.open .m-sub-flex svg {
  transform: rotate(180deg);
}
.m-sub-item .m-sub-flex svg path {
  stroke: var(--c-mid);
}
.m-sub-item .m-sub-flex > a:hover {
  color: var(--c-orange);
}
.nav-three {
  padding: 0px 50px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.nav-three-box {
  display: none;
}
.nav-three a {
  font-size: 16px;
  color: #5A6B7B;
  display: inline-block;
  padding: 5px 0;
  line-height: 1.5;
  transition: all 0.5s;
}
.nav-three a:hover {
  color: var(--c-orange);
}
.m-menu-foot {
  padding: 20px 22px;
  border-top: 1px solid var(--c-line);
}
/* #endregion */
/* #region page banner (inner pages) — uses <img>, never background */
.page-banner {
  position: relative;
  height: 420px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.page-banner .banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.page-banner .banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 30, 54, 0.82) 0%, rgba(7, 30, 54, 0.55) 55%, rgba(7, 30, 54, 0.25) 100%);
}
.page-banner .container {
  position: relative;
  z-index: 2;
}
.banner-content {
  max-width: 680px;
  color: #fff;
}
.banner-content h1 {
  color: #fff;
  font-size: clamp(30px, 4vw, 50px);
  margin-bottom: 16px;
}
.banner-content p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 26px;
}
.crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 18px;
}
.crumb a:hover {
  color: var(--c-orange);
}
.crumb svg {
  width: 13px;
  height: 13px;
}
/* #endregion */
/* #region breadcrumb bar (sits BELOW the banner, light strip) */
.crumb-bar {
  background: var(--c-soft);
  border-bottom: 1px solid var(--c-line);
}
.crumb-bar .crumb {
  margin: 0;
  padding: 15px 0;
  color: var(--c-mid);
}
.crumb-bar .crumb a {
  color: var(--c-mid);
}
.crumb-bar .crumb a:hover {
  color: var(--c-orange);
}
.crumb-bar .crumb svg {
  color: var(--c-mid);
  opacity: 0.65;
}
.crumb-bar .crumb span {
  color: var(--c-navy);
  font-weight: 600;
}
/* #endregion */
/* #region cards (generic) */
.card {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(7, 30, 54, 0.13);
  border-color: transparent;
}
.card .card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card .card-title {
  font-size: 19px;
  margin-bottom: 10px;
}
.card .card-title a:hover {
  color: var(--c-orange);
}
.card .card-title a {
  transition: all 0.4s;
}
.card .card-desc {
  color: var(--c-mid);
  font-size: 15px;
  margin-bottom: 18px;
}
.card .card-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card .card-date {
  font-size: 13.5px;
  color: var(--c-mid);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.card .card-date svg {
  width: 14px;
  height: 14px;
  color: var(--c-orange);
}
/* #endregion */
/* #region pagination */
.pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 56px;
}
.pager a,
.pager span {
  min-width: 44px;
  height: 44px;
  padding: 0 12px;
  border-radius: 6px;
  border: 1px solid var(--c-line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  color: var(--c-ink);
  transition: all 0.25s;
}
.pager a:hover {
  border-color: var(--c-navy);
  color: var(--c-navy);
}
.pager .current {
  background: var(--c-navy);
  border-color: var(--c-navy);
  color: #fff;
}
.pager .dots {
  border: none;
}
.pager svg {
  width: 16px;
  height: 16px;
}
/* #endregion */
/* #region FAQ block (shared) */
.faq-row {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: start;
}
.faq-visual .img_box {
  padding-top: 110%;
  border-radius: 14px;
}
.faq-visual {
  position: relative;
}
.faq-badge {
  position: absolute;
  right: -18px;
  bottom: 30px;
  background: var(--c-orange);
  color: #fff;
  border-radius: 12px;
  padding: 20px 24px;
  box-shadow: 0 16px 34px rgba(242, 101, 34, 0.34);
}
.faq-badge b {
  display: block;
  font-size: 30px;
  line-height: 1;
  color: #fff;
}
.faq-badge span {
  font-size: 13px;
  opacity: 0.92;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  border: 1px solid var(--c-line);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.3s;
}
.faq-item.open {
  box-shadow: 0 12px 28px rgba(7, 30, 54, 0.1);
  border-color: transparent;
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 700;
  font-size: 16.5px;
  color: var(--c-navy);
}
.faq-q .ico {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--c-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  transition: all 0.3s;
}
.faq-q .ico svg {
  width: 15px;
  height: 15px;
  transition: transform 0.3s;
}
.faq-item.open .faq-q .ico {
  background: var(--c-orange);
  color: #fff;
}
.faq-item.open .faq-q .ico svg {
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-a-inner {
  padding: 0 24px 22px;
  color: var(--c-mid);
  font-size: 15px;
}
/* #endregion */
/* #region Form block (shared, CF7-style static) */
.form-row {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 54px rgba(7, 30, 54, 0.16);
}
.form-left {
  background: linear-gradient(160deg, var(--c-navy), var(--c-navy-2));
  padding: 52px 48px;
  color: #fff;
}
.form-left h3 {
  color: #fff;
  font-size: 26px;
  margin-bottom: 10px;
}
.form-left p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  margin-bottom: 28px;
}
.cf7-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

.cf7-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.cf7-field.full {
  grid-column: 1 / -1;
}
.cf7-field label {
  font-size: 15px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.03em;
}
.cf7-field input,
.cf7-field textarea {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  padding: 13px 15px;
  color: #fff;
  font-size: 15px;
  transition: all 0.25s;
}
.cf7-field input::placeholder,
.cf7-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}
.cf7-field input:focus,
.cf7-field textarea:focus {
  border-color: var(--c-orange);
  background: rgba(255, 255, 255, 0.13);
}
.cf7-field textarea {
  resize: vertical;
  min-height: 110px;
}
.form-right {
  position: relative;
  background: linear-gradient(135deg, var(--c-soft-2), var(--c-soft));
}
.form-right .img_box {
  position: absolute;
  inset: 0;
  padding: 0;
  height: 100%;
}
.form-note {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 14px;
  grid-column: 1/-1;
}
/* #endregion */
/* #region footer */
.footer {
  background: var(--c-navy-dark);
  color: rgba(255, 255, 255, 0.72);
}
.footer-top {
  padding: 70px 0 50px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.4fr;
  gap: 40px;
}
.footer-brand .nav-logo .logo-text b {
  color: #fff;
}
.footer-brand p {
  margin: 20px 0 22px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 320px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.28s;
}
.footer-social a:hover {
  background: var(--c-orange);
  transform: translateY(-3px);
}
.footer-social svg {
  width: 18px;
  height: 18px;
}
.footer-col h4 {
  color: #fff;
  font-size: 17px;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}
.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 2px;
  background: var(--c-orange);
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col a {
  font-size: 15px;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-col a:hover {
  color: var(--c-orange);
  padding-left: 4px;
}
.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 3px;
}
.footer-contact li,
.footer-contact li span,
.footer-contact li a {
  font-size: 15px;
  line-height: 1.5;
}
.footer-contact svg {
  width: 18px;
  height: 18px;
  color: var(--c-orange);
  flex: none;
  margin-top: 3px;
}
.footer-contact svg path {
  fill: var(--c-orange);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  gap: 14px;
  flex-wrap: wrap;
}
.footer-bottom a:hover {
  color: var(--c-orange);
}
.footer-bottom-links {
  display: flex;
  gap: 18px;
}
.footer-bottom-links a {
  transition: all 0.4s;
}
/* #endregion */
/* #region float side nav (fixed below banner) */
.float-nav {
  position: fixed;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 80;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.float-nav a {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--c-navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(7, 30, 54, 0.22);
  transition: all 0.28s;
}
.float-nav a:hover {
  background: var(--c-orange);
  transform: translateX(-3px);
}
.float-nav a svg {
  width: 21px;
  height: 21px;
}
.float-nav a svg path {
  fill: #fff;
}
.float-nav a .tip {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: var(--c-ink);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s;
  pointer-events: none;
}
.float-nav a .tip::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--c-ink);
}
.float-nav a:hover .tip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}
.float-nav .to-top {
  background: var(--c-orange);
  opacity: 0;
  visibility: hidden;
}
.float-nav .to-top.show {
  opacity: 1;
  visibility: visible;
}
/* #endregion */
/* #region reveal (degrade-safe: visible by default, hides only with .has-js) */
.reveal {
  opacity: 1;
  transform: none;
}
.has-js .reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.has-js .reveal.visible {
  opacity: 1;
  transform: none;
  transition: all 0.5s;
}
.has-js .reveal.d1 {
  transition-delay: 0.1s;
}
.has-js .reveal.d2 {
  transition-delay: 0.2s;
}
.has-js .reveal.d3 {
  transition-delay: 0.3s;
}
/* #endregion */
/* #region video modal (YouTube popup) */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(7, 30, 54, 0.86);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s;
}
.video-modal.open {
  opacity: 1;
  visibility: visible;
}
.video-modal .vm-inner {
  width: min(960px, 100%);
  aspect-ratio: 16/9;
  position: relative;
}
.video-modal iframe {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.video-modal .vm-close {
  position: absolute;
  top: -46px;
  right: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s;
}
.video-modal .vm-close:hover {
  background: var(--c-orange);
}
.video-modal .vm-close svg {
  width: 20px;
  height: 20px;
}
.play-btn {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--c-orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(242, 101, 34, 0.45);
  transition: transform 0.3s;
}
.play-btn:hover {
  transform: scale(1.08);
}
.play-btn svg {
  width: 26px;
  height: 26px;
  margin-left: 3px;
}
/* #endregion */
/* #region swiper shared bits */
.swiper {
  width: 100%;
}
.swiper-pagination-bullet {
  background: var(--c-navy);
  opacity: 0.3;
}
.swiper-pagination-bullet-active {
  background: var(--c-orange);
  opacity: 1;
  width: 22px;
  border-radius: 4px;
}
.sw-nav {
  display: flex;
  gap: 10px;
}
.sw-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--c-line);
  background: #fff;
  color: var(--c-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.28s;
}
.sw-btn:hover {
  background: var(--c-navy);
  color: #fff;
  border-color: var(--c-navy);
}
.sw-btn.swiper-button-disabled {
  opacity: 0.4;
  cursor: default;
}
.sw-btn:hover.swiper-button-disabled {
  background: #fff;
  color: var(--c-navy);
  border-color: var(--c-line);
}
.sw-btn svg {
  width: 18px;
  height: 18px;
}
/* #endregion */
/* #region star rating */
.stars {
  display: inline-flex;
  gap: 2px;
  color: var(--c-star);
}
.stars svg {
  width: 16px;
  height: 16px;
}
/* #endregion */
/* ============================================================
 * Shared responsive (header/footer/version width/section spacing only).
 * Page-specific breakpoints live in each page's inline <style>.
 * ============================================================ */
@media (max-width: 1600px) {
  .mega-grid {
    grid-template-columns: repeat(4, 1fr) 260px;
  }
}
@media (max-width: 1440px) {
  .section-pad {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .section-pt {
    padding-top: 80px;
  }
  .section-pb {
    padding-bottom: 80px;
  }
  .nav-item > a {
    padding: 0 14px;
    font-size: 15px;
  }
}
@media (max-width: 1200px) {
  .container {
    padding: 0 30px;
  }
  .section-pad {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .section-pt {
    padding-top: 70px;
  }
  .section-pb {
    padding-bottom: 70px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .form-right {
    min-height: 280px;
  }
  .faq-visual {
    max-width: 480px;
  }
}
@media screen and (max-width: 1140px) {
  .nav-item > a {
    padding: 0 7px;
    font-size: 15px;
  }
}
@media (max-width: 991px) {
  .section-pad {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .faq-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .faq-visual {
    max-width: 100%;
  }
  .faq-badge {
    right: 63px;
    bottom: 30px;
  }
  .section-pt {
    padding-top: 60px;
  }
  .section-pb {
    padding-bottom: 60px;
  }
  .topbar {
    display: none;
  }
  .nav-menu,
  .nav-search-btn {
    display: none;
  }
  .nav-quote {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .nav-inner {
    height: 70px;
  }
  .page-banner {
    height: 340px;
  }
  .cf7-form {
    grid-template-columns: 1fr;
  }
  .float-nav {
    right: 12px;
  }
  .float-nav a {
    width: 44px;
    height: 44px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
  .section-pad {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .form-left {
    padding: 36px 24px;
  }
  .page-banner {
    height: 300px;
  }
  .pager {
    flex-wrap: wrap;
  }
}
