:root {
  --navy: #126f82;
  --navy-dark: #12384a;
  --navy-soft: #248fa8;
  --blue: #2a98b5;
  --green: #67c52f;
  --aqua: #62cbbd;
  --red: #df3f48;
  --ink: #111827;
  --muted: #70808a;
  --line: #dce9eb;
  --panel: #f2f8f8;
  --white: #ffffff;
  --shadow: 0 22px 55px rgba(18, 111, 130, .15);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: min(1344px, calc(100% - 48px)); margin-inline: auto; }
.skip-link {
  position: fixed;
  z-index: 9999;
  left: 16px;
  top: -60px;
  padding: 10px 14px;
  border-radius: 4px;
  color: #fff;
  background: var(--navy);
}
.skip-link:focus { top: 16px; }

.topline {
  color: rgba(255,255,255,.72);
  background: var(--navy-dark);
  font-size: 14px;
}
.topline-inner {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.top-phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.top-phone span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 50%;
}
.top-phone strong { letter-spacing: .04em; }
.topline-links {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.topline-links span {
  width: 1px;
  height: 15px;
  background: rgba(255,255,255,.22);
}
.topline a:hover { color: #fff; }

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  background: #fff;
  box-shadow: 0 1px 0 rgba(17,27,54,.08);
}
.header-main {
  min-height: 104px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.brand img {
  width: auto;
  height: 56px;
  aspect-ratio: 186 / 172;
  flex: 0 0 auto;
  object-fit: contain;
  border: 1px solid rgba(18, 111, 130, .16);
  box-shadow: 0 8px 22px rgba(18, 111, 130, .12);
}
.brand span { display: grid; line-height: 1.1; }
.brand strong {
  color: var(--navy);
  font-size: 30px;
  letter-spacing: .02em;
}
.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}
.account-link {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  column-gap: 12px;
}
.account-link span {
  grid-row: span 2;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid #d8dde7;
  border-radius: 50%;
  color: var(--navy);
  font-size: 30px;
}
.account-link strong {
  align-self: end;
  color: #111;
  font-size: 14px;
}
.account-link small {
  align-self: start;
  color: var(--muted);
  font-size: 13px;
}
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 10px;
}
.menu-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: var(--navy);
}

.primary-nav {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #f8f9fb;
}
.nav-inner {
  min-height: 60px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: stretch;
}
.nav-inner > a,
.nav-inner > button {
  position: relative;
  min-width: 0;
  border: 0;
  border-right: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: #303846;
  background: transparent;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.nav-inner > a:first-child { border-left: 1px solid var(--line); }
.nav-inner > a:hover,
.nav-inner > button:hover,
.nav-inner > a.is-active,
.nav-inner > button.active {
  color: var(--navy);
  background: #fff;
}
.nav-inner > a::after,
.nav-inner > button::after {
  content: "";
  position: absolute;
  left: 24%;
  right: 24%;
  bottom: 0;
  height: 3px;
  background: transparent;
}
.nav-inner > a:hover::after,
.nav-inner > button:hover::after,
.nav-inner > a.is-active::after,
.nav-inner > button.active::after { background: var(--green); }

.mega-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 1001;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.mega-menu.open,
.site-header:has(.nav-products:hover) .mega-menu,
.site-header:has(.nav-products:focus-visible) .mega-menu,
.site-header:has(.mega-menu:focus-within) .mega-menu,
.mega-menu:hover {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.mega-inner {
  min-height: 430px;
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr) 320px;
  gap: 32px;
  padding: 34px 40px;
  color: var(--navy);
  background: #f7f9fc;
  box-shadow: var(--shadow);
}
.mega-categories {
  padding-right: 26px;
  border-right: 2px solid var(--navy);
}
.mega-categories a {
  position: relative;
  display: grid;
  gap: 2px;
  padding: 8px 0;
  color: #858c98;
  font-weight: 800;
  font-size: 15px;
}
.mega-categories a small {
  color: #a2a9b5;
  font-size: 11px;
  font-weight: 700;
}
.mega-categories a.active,
.mega-categories a:hover { color: var(--navy); }
.mega-categories a.active small,
.mega-categories a:hover small { color: #697386; }
.mega-categories a.active::after {
  content: "";
  position: absolute;
  right: -33px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-top: 2px solid var(--navy);
  border-right: 2px solid var(--navy);
  transform: translateY(-50%) rotate(45deg);
  background: #f7f9fc;
}
.mega-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-content: start;
}
.mega-columns h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 15px;
}
.mega-columns a {
  display: block;
  margin: 8px 0;
  color: #6e7786;
  font-size: 14px;
  font-weight: 700;
}
.mega-columns a:hover { color: var(--navy); }
.mega-detail {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 24px;
}
.mega-panel-head {
  min-width: 0;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.mega-panel-head h2 {
  margin: 4px 0 0;
  color: #101828;
  font-size: 22px;
  line-height: 1.15;
}
.mega-eyebrow {
  color: #778195;
  font-size: 12px;
  font-weight: 800;
}
.mega-all-link {
  flex: 0 0 auto;
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.mega-brandline {
  display: grid;
  gap: 10px;
  padding-top: 2px;
}
.mega-brandline strong {
  color: #7b8492;
  font-size: 11px;
  text-transform: uppercase;
}
.mega-brandline div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.mega-brandline span {
  padding: 7px 10px;
  border: 1px solid #dce2eb;
  color: #344054;
  background: #fff;
  font-size: 12px;
  font-weight: 800;
}
.mega-visual {
  position: relative;
  min-width: 0;
  align-self: center;
  min-height: 300px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
}
.mega-visual img {
  width: 100%;
  height: 300px;
  padding: 24px;
  object-fit: contain;
  transition: transform .2s ease;
}
.mega-visual:hover img { transform: scale(1.025); }
.mega-visual-label {
  position: absolute;
  z-index: 1;
  left: 14px;
  right: 14px;
  bottom: 14px;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  color: #fff;
  background: rgba(18, 111, 130, .95);
  font-size: 12px;
  font-weight: 900;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.9) 43%, rgba(255,255,255,.24) 73%, rgba(255,255,255,0) 100%),
    linear-gradient(120deg, #f7fbfb 0%, #f7fbfb 46%, #d9f0ee 46%, #e7f4f7 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -8% -180px 48%;
  height: 360px;
  background: rgba(98, 203, 189, .16);
  transform: skewY(-9deg);
}
.hero-inner {
  position: relative;
  z-index: 1;
  min-height: 590px;
  display: grid;
  grid-template-columns: minmax(360px, 520px) 1fr;
  align-items: center;
  gap: 32px;
  padding-block: 74px 44px;
}
.section-kicker {
  display: inline-block;
  color: var(--navy-soft);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero h1,
.section-head h2,
.about h2,
.quote h2,
.contact h2 {
  margin: 14px 0 18px;
  color: #05080f;
  line-height: 1.06;
  letter-spacing: 0;
}
.hero h1 {
  max-width: 580px;
  font-size: clamp(40px, 5vw, 64px);
}
.hero p {
  max-width: 610px;
  color: #596374;
  font-size: 18px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 0;
  font-weight: 900;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #fff;
  background: var(--navy);
  box-shadow: 0 12px 24px rgba(18, 111, 130, .22);
}
.btn-secondary {
  color: var(--navy);
  background: #fff;
  border-color: #ccd4e1;
}
.btn-blue {
  color: #fff;
  background: var(--blue);
}
.btn-full {
  width: 100%;
  border: 0;
}
.hero-image {
  margin: 0;
  align-self: stretch;
  display: grid;
  place-items: end;
}
.hero-image img {
  width: min(920px, 68vw);
  max-width: none;
  object-fit: contain;
  filter: drop-shadow(0 28px 45px rgba(17,27,54,.18));
}
.hero-tabs {
  position: relative;
  z-index: 2;
  min-height: 92px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: rgba(255,255,255,.94);
  box-shadow: 0 -1px 0 var(--line);
}
.hero-tabs a {
  min-width: 0;
  padding: 18px 24px;
  display: grid;
  align-content: center;
  gap: 4px;
  border-right: 1px solid var(--line);
  color: var(--navy);
  font-weight: 900;
}
.hero-tabs a:first-child { border-left: 1px solid var(--line); }
.hero-tabs span {
  color: #9aa3b1;
  font-size: 12px;
}

.quick-access {
  padding-block: 42px 64px;
  background: #fff;
}
.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.quick-grid a {
  min-height: 134px;
  padding: 28px;
  display: grid;
  align-content: center;
  border: 1px solid var(--line);
  border-right: 0;
  background: #fff;
}
.quick-grid a:last-child { border-right: 1px solid var(--line); }
.quick-grid strong {
  color: var(--navy);
  font-size: 20px;
}
.quick-grid span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.logo-strip {
  padding-block: 34px 70px;
  background: #fff;
}
.strip-tabs {
  display: flex;
  justify-content: center;
  gap: 70px;
  margin-bottom: 36px;
}
.strip-tabs button {
  position: relative;
  border: 0;
  color: #c4c8cf;
  background: transparent;
  font-weight: 900;
  text-transform: uppercase;
}
.strip-tabs a {
  position: relative;
  color: #a8b2b7;
  font-weight: 900;
  text-transform: uppercase;
}
.strip-tabs button.active,
.strip-tabs a.active { color: var(--navy); }
.strip-tabs button.active::after,
.strip-tabs a.active::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -11px;
  height: 2px;
  background: var(--green);
}
.reference-logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  align-items: center;
}
.reference-logos > * {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  padding: 14px;
  border: 1px solid #eef1f6;
  background: #fff;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.reference-logos > *:hover {
  transform: translateY(-3px);
  border-color: rgba(18, 111, 130, .25);
  box-shadow: var(--shadow);
}
.reference-logos img {
  width: 100%;
  height: 92px;
  padding: 6px;
  object-fit: contain;
}
.reference-logos span {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--navy);
  font-size: 23px;
  font-weight: 900;
}
.reference-logos strong {
  max-width: 130px;
  text-align: center;
  color: #333;
  font-size: 13px;
}

.solutions {
  padding-block: 74px 92px;
  background: var(--panel);
}
.section-head {
  margin-bottom: 42px;
  max-width: 820px;
}
.section-head.split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  max-width: none;
}
.section-head h2,
.about h2,
.quote h2,
.contact h2 {
  font-size: clamp(32px, 4.2vw, 52px);
}
.text-link {
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.solution-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 420px;
  background: #fff;
}
.solution-feature figure {
  margin: 0;
  min-height: 100%;
  overflow: hidden;
}
.solution-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
}
.solution-feature > div {
  padding: clamp(34px, 5vw, 68px);
  display: grid;
  align-content: center;
}
.solution-feature span,
.solution-grid span {
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.solution-feature h3 {
  margin: 13px 0 14px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.18;
}
.solution-feature p,
.about p,
.quote p,
.contact p {
  color: #687384;
  font-size: 16px;
}
.solution-feature .btn { width: fit-content; margin-top: 14px; }
.solution-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 20px;
}
.solution-grid article {
  min-height: 230px;
  padding: 26px;
  border: 1px solid var(--line);
  background: #fff;
}
.solution-grid h3 {
  margin: 14px 0 10px;
  color: #111;
  font-size: 21px;
  line-height: 1.18;
}
.solution-grid p {
  margin: 0;
  color: #687384;
  font-size: 14px;
}

.about {
  padding-block: 86px;
  background: #fff;
}
.about-inner {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 86px;
  align-items: start;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 12px;
}
.check-list li {
  position: relative;
  padding-left: 30px;
  color: #303846;
  font-weight: 700;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 14px;
  height: 8px;
  border-left: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(-45deg);
}

.brands {
  padding-block: 70px;
  color: #fff;
  background: linear-gradient(125deg, var(--navy-dark) 0%, var(--navy) 64%, var(--navy-soft) 100%);
  border-top: 5px solid var(--green);
}
.brands .section-kicker { color: rgba(255,255,255,.58); }
.brands h2 { color: #fff; }
.brand-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.brand-cloud span {
  padding: 14px 20px;
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.88);
  background: rgba(255,255,255,.07);
  font-weight: 900;
}

.quote {
  padding-block: 92px;
  background: linear-gradient(125deg, #12384a 0%, #126f82 58%, #2a98b5 100%);
}
.quote-inner {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 72px;
  align-items: center;
}
.quote .section-kicker { color: rgba(255,255,255,.62); }
.quote h2,
.quote p { color: #fff; }
.quote p { color: rgba(255,255,255,.74); }
.contact-mini {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}
.contact-mini a {
  width: fit-content;
  display: grid;
}
.contact-mini small {
  color: rgba(255,255,255,.55);
}
.contact-mini strong {
  color: #fff;
  font-size: 22px;
}
.quote-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: 34px;
  background: #fff;
  box-shadow: var(--shadow);
}
.quote-form label {
  display: grid;
  gap: 7px;
  color: #202938;
  font-size: 13px;
  font-weight: 900;
}
.quote-form label:nth-of-type(3),
.quote-form label:nth-of-type(4),
.quote-form button,
.quote-form small { grid-column: 1 / -1; }
input,
select,
textarea {
  width: 100%;
  border: 1px solid #d7dde8;
  border-radius: 0;
  padding: 13px 14px;
  outline: none;
  color: var(--ink);
  background: #fff;
}
input:focus,
select:focus,
textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(18, 111, 130, .13);
}
textarea { resize: vertical; }
.quote-form small {
  color: var(--muted);
  text-align: center;
  font-size: 11px;
}

.contact {
  padding-block: 86px;
  background: #fff;
}
.contact-inner {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
}
.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.contact-cards > * {
  min-height: 132px;
  padding: 22px;
  display: grid;
  align-content: center;
  border: 1px solid var(--line);
  background: #f9fafc;
}
.contact-cards small {
  color: var(--muted);
  font-weight: 800;
}
.contact-cards strong {
  margin-top: 7px;
  color: var(--navy);
  font-size: 17px;
}

.page-hero {
  padding-block: 74px 58px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.98), rgba(255,255,255,.75)),
    linear-gradient(135deg, #f6f8fb 0%, #e8edf5 100%);
}
.page-hero-inner {
  max-width: 850px;
}
.page-hero h1 {
  margin: 14px 0 16px;
  color: #05080f;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.06;
}
.page-hero p {
  max-width: 760px;
  color: #596374;
  font-size: 18px;
}
.catalog,
.support,
.content-section {
  padding-block: 78px 92px;
  background: var(--panel);
}
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.catalog-card {
  min-height: 340px;
  display: grid;
  grid-template-rows: 178px 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
a.catalog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(15, 42, 95, .28);
  box-shadow: var(--shadow);
}
.catalog-card figure {
  min-width: 0;
  margin: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #f8fafc;
}
.catalog-card figure img {
  width: 100%;
  height: 178px;
  padding: 18px;
  object-fit: contain;
  transition: transform .2s ease;
}
.catalog-card:hover figure img { transform: scale(1.035); }
.catalog-card-body { padding: 24px; }
.catalog-card span {
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.catalog-card h2,
.catalog-card h3 {
  margin: 14px 0 10px;
  font-size: 23px;
  line-height: 1.16;
}
.catalog-card p {
  margin: 0;
  color: #687384;
  font-size: 14px;
}
.support-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 30px;
  align-items: start;
}
.support-search {
  position: sticky;
  top: 184px;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.support-search label {
  display: grid;
  gap: 10px;
  color: var(--navy);
  font-weight: 900;
}
.support-search input {
  min-height: 54px;
  font-size: 16px;
}
.support-search p {
  margin: 18px 0 0;
  color: #687384;
  font-size: 14px;
}
.faq-list {
  display: grid;
  gap: 12px;
}
.faq-item {
  border: 1px solid var(--line);
  background: #fff;
}
.faq-item[hidden] { display: none; }
.faq-item summary {
  padding: 21px 24px;
  color: #111;
  font-weight: 900;
  cursor: pointer;
}
.faq-item p {
  margin: 0;
  padding: 0 24px 24px;
  color: #687384;
}
.support-page-hero {
  border-bottom: 1px solid var(--line);
  background: linear-gradient(120deg, #ffffff 0%, #ffffff 52%, #e4f5f2 52%, #edf8fa 100%);
}
.support-hub .container {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 70px;
}
.support-hub .container > * { min-width: 0; }
.support-search-panel {
  position: relative;
  margin-top: -112px;
  padding: 30px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 18px 28px;
  border-top: 5px solid var(--green);
  background: #fff;
  box-shadow: var(--shadow);
}
.support-search-panel label {
  display: grid;
  gap: 10px;
  color: var(--navy-dark);
  font-weight: 900;
}
.support-search-panel input {
  min-height: 62px;
  padding-inline: 18px;
  border-color: #cddfe2;
  font-size: 17px;
}
.support-filters {
  min-height: 48px;
  display: inline-flex;
  border: 1px solid var(--line);
  background: #f7fbfb;
}
.support-filters button {
  min-height: 48px;
  padding: 0 17px;
  border: 0;
  border-right: 1px solid var(--line);
  color: #60717b;
  background: transparent;
  font-size: 12px;
  font-weight: 900;
}
.support-filters button:last-child { border-right: 0; }
.support-filters button.active {
  color: #fff;
  background: var(--navy);
}
.support-search-panel > p {
  grid-column: 1 / -1;
  margin: 0;
  color: #77858d;
  font-size: 13px;
}
.support-resource-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
}
.support-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.support-section-head h2 {
  margin: 7px 0 0;
  color: #101828;
  font-size: 32px;
  line-height: 1.12;
}
.support-section-head > p {
  max-width: 510px;
  margin: 0;
  color: #6d7b84;
  text-align: right;
}
.software-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.software-card {
  min-width: 0;
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
}
.software-brand {
  min-height: 100%;
  display: grid;
  place-items: center;
  padding: 18px;
  color: #fff;
  background: linear-gradient(155deg, var(--navy-dark), var(--navy-soft));
  font-size: 15px;
  font-weight: 900;
  text-align: center;
}
.software-copy {
  min-width: 0;
  padding: 24px;
}
.software-copy > span {
  color: var(--navy-soft);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.software-copy h3 {
  margin: 7px 0 9px;
  color: #111827;
  font-size: 24px;
}
.software-copy p {
  margin: 0;
  color: #687781;
  font-size: 14px;
}
.software-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 18px;
}
.software-meta span {
  padding: 5px 8px;
  border: 1px solid var(--line);
  color: #60717b;
  background: var(--panel);
  font-size: 10px;
  font-weight: 900;
}
.software-download {
  grid-column: 1 / -1;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-top: 1px solid var(--line);
  color: var(--navy);
  background: #f7fbfb;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}
.software-download:hover {
  color: #fff;
  background: var(--navy);
}
.software-download span { font-size: 20px; line-height: 1; }
.support-empty {
  padding: 28px;
  border: 1px solid var(--line);
  color: #566770;
  background: #fff;
  text-align: center;
  font-weight: 800;
}
.support-search-item[hidden],
.support-resource-section[hidden],
.support-empty[hidden] { display: none !important; }
.reference-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.reference-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.reference-filters button {
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--line);
  color: #4d5d69;
  background: #fff;
  font-size: 13px;
  font-weight: 800;
}
.reference-filters button:hover,
.reference-filters button.active {
  border-color: var(--navy);
  color: #fff;
  background: var(--navy);
}
.reference-card {
  min-width: 0;
  display: grid;
  grid-template-rows: 210px 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
}
.reference-card[hidden] { display: none; }
.reference-card figure {
  margin: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.reference-card img {
  width: 100%;
  height: 210px;
  padding: 28px;
  object-fit: contain;
}
.reference-card > div { padding: 23px; }
.reference-card h2 {
  margin: 0 0 8px;
  color: var(--navy-dark);
  font-size: 21px;
}
.reference-card p {
  margin: 0;
  color: #6b7982;
  font-size: 14px;
}
.two-column-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.info-panel {
  padding: 30px;
  border: 1px solid var(--line);
  background: #fff;
}
.info-panel h2,
.info-panel h3 {
  margin-top: 0;
}
.brand-logo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.brand-logo-card {
  min-height: 118px;
  padding: 18px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: #fff;
}
a.brand-logo-card {
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
a.brand-logo-card:hover {
  transform: translateY(-3px);
  border-color: rgba(15, 42, 95, .28);
  box-shadow: var(--shadow);
}
.brand-logo-card img {
  max-width: 150px;
  max-height: 74px;
  object-fit: contain;
}
.brands .brand-logo-grid {
  margin-top: 0;
}
.brand-groups {
  display: grid;
  gap: 32px;
}
.brand-group {
  display: grid;
  gap: 14px;
}
.brand-group-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}
.brand-group-header h3 {
  margin: 0;
  color: #fff;
  font-size: 24px;
}
.brand-group-header a {
  color: rgba(255,255,255,.76);
  font-weight: 900;
}
.category-detail {
  padding-block: 76px 92px;
  background: var(--panel);
}
.category-detail .solution-feature {
  margin-top: 22px;
}
.product-subnav,
.product-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 54px;
  border: 1px solid var(--line);
  background: #fff;
}
.product-subnav a,
.product-tabs [role="tab"] {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  padding: 0 22px;
  border: 0;
  border-right: 1px solid var(--line);
  color: #566174;
  background: #fff;
  font-size: 13px;
  font-weight: 900;
}
.product-subnav a:hover,
.product-tabs [role="tab"]:hover,
.product-tabs [role="tab"][aria-selected="true"] {
  color: #fff;
  background: var(--navy);
}
.product-tab-panel[hidden] { display: none; }
.tabs-enhanced .product-tab-panel + .product-tab-panel {
  margin-top: 0;
  padding-top: 4px;
  border-top: 0;
}
.product-brand-section {
  scroll-margin-top: 190px;
  padding-top: 4px;
}
.product-brand-section + .product-brand-section {
  margin-top: 76px;
  padding-top: 58px;
  border-top: 1px solid #dce2eb;
}
.product-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 26px;
}
.product-section-head h2 {
  margin: 8px 0 0;
  color: #101828;
  font-size: 30px;
  line-height: 1.12;
}
.product-section-head > p {
  max-width: 440px;
  margin: 0;
  color: #687384;
  text-align: right;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.product-grid-compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.product-card {
  position: relative;
  min-width: 0;
  display: grid;
  grid-template-rows: 238px 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.product-status {
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 12px;
  padding: 6px 9px;
  color: #24570d;
  background: #eefae7;
  box-shadow: 0 0 0 1px rgba(103,197,47,.35);
  font-size: 10px;
  font-weight: 900;
}
.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(15, 42, 95, .28);
  box-shadow: var(--shadow);
}
.product-card figure {
  min-width: 0;
  margin: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.product-card figure img {
  width: 100%;
  height: 238px;
  padding: 22px;
  object-fit: contain;
  transition: transform .2s ease;
}
.product-card:hover figure img { transform: scale(1.035); }
.product-card > div {
  min-width: 0;
  display: grid;
  align-content: start;
  padding: 22px;
}
.product-card > div > span {
  color: var(--navy);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.product-card h3 {
  margin: 10px 0 9px;
  color: #111827;
  font-size: 19px;
  line-height: 1.2;
}
.product-card p {
  margin: 0 0 22px;
  color: #697386;
  font-size: 13px;
}
.product-card > div > a {
  align-self: end;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.product-card > div > a b { float: right; }
.product-card .brand-product-visual img {
  max-width: 230px;
  height: auto;
  padding: 18px;
}
.product-brand-logos {
  margin: 0 0 58px;
  grid-template-columns: repeat(4, 1fr);
}
.category-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 76px;
  border: 1px solid var(--line);
  background: #fff;
}
.category-process > div {
  min-width: 0;
  padding: 25px;
  border-right: 1px solid var(--line);
}
.category-process > div:last-child { border-right: 0; }
.category-process span {
  display: block;
  margin-bottom: 12px;
  color: #94a0b2;
  font-size: 12px;
  font-weight: 900;
}
.category-process strong {
  color: var(--navy);
  font-size: 17px;
}
.category-process p {
  margin: 7px 0 0;
  color: #6c7687;
  font-size: 13px;
}
.category-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.site-footer {
  color: rgba(255,255,255,.72);
  background: var(--navy-dark);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr .7fr .8fr;
  gap: 72px;
  padding-block: 62px 48px;
}
.footer-brand strong { color: #fff; }
.footer-brand small { color: rgba(255,255,255,.45); }
.footer-inner p {
  max-width: 420px;
  color: rgba(255,255,255,.52);
  font-size: 14px;
}
.footer-address {
  max-width: 430px;
  margin-top: 20px;
  display: grid;
  gap: 3px;
  color: rgba(255,255,255,.72);
  font-size: 13px;
}
.footer-address span {
  color: var(--aqua);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}
.footer-address strong {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}
.footer-compact-address {
  padding-block: 26px;
}
.footer-compact-address .footer-address {
  max-width: 620px;
}
.footer-inner h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 14px;
}
.footer-inner > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-inner a:hover { color: #fff; }
.footer-bottom {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.42);
  font-size: 12px;
}
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 999;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #25d366;
  box-shadow: 0 14px 34px rgba(18,111,130,.22);
  font-size: 28px;
  font-weight: 900;
}

@media (max-width: 1100px) {
  .header-main {
    grid-template-columns: 1fr auto;
  }
  .account-link { display: none; }
  .mega-inner {
    grid-template-columns: 245px 1fr;
  }
  .mega-visual { display: none; }
  .solution-grid,
  .catalog-grid,
  .brand-logo-grid,
  .product-grid,
  .reference-gallery { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .container { width: min(100% - 32px, 1344px); }
  .topline-links { display: none; }
  .topline-inner { justify-content: center; }
  .header-main {
    min-height: 86px;
    grid-template-columns: 1fr auto;
  }
  .brand strong { font-size: 24px; }
  .brand small { font-size: 9px; }
  .menu-toggle { display: block; }
  .primary-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #fff;
    box-shadow: var(--shadow);
  }
  .primary-nav.open { display: block; }
  .nav-inner {
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr;
    padding: 12px 0;
  }
  .nav-inner > a,
  .nav-inner > button {
    min-height: 48px;
    justify-content: start;
    padding-inline: 18px;
    border: 0;
  }
  .nav-inner > a::after,
  .nav-inner > button::after { display: none; }
  .mega-menu {
    position: static;
    display: none;
    visibility: visible;
    opacity: 1;
    transform: none;
  }
  .mega-menu.open { display: block; }
  .mega-inner {
    width: 100%;
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 26px 18px;
    box-shadow: none;
  }
  .mega-categories {
    padding-right: 0;
    border-right: 0;
  }
  .mega-categories a.active::after { display: none; }
  .mega-columns { grid-template-columns: 1fr; }
  .hero-inner {
    min-height: 0;
    grid-template-columns: 1fr;
    padding-block: 56px 28px;
  }
  .hero-image {
    place-items: center;
  }
  .hero-image img {
    width: 100%;
  }
  .hero-tabs,
  .quick-grid,
  .reference-logos,
  .solution-feature,
  .about-inner,
  .quote-inner,
  .contact-inner,
  .footer-inner,
  .support-layout,
  .two-column-list {
    grid-template-columns: 1fr;
  }
  .support-search { position: static; }
  .hero-tabs a,
  .hero-tabs a:first-child,
  .quick-grid a,
  .quick-grid a:last-child {
    border-left: 1px solid var(--line);
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }
  .hero-tabs a:last-child,
  .quick-grid a:last-child { border-bottom: 1px solid var(--line); }
  .reference-logos {
    grid-template-columns: repeat(2, 1fr);
  }
  .solution-feature figure { min-height: 280px; }
  .support-search-panel {
    margin-top: -90px;
    grid-template-columns: 1fr;
  }
  .support-filters { width: fit-content; }
  .support-section-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .support-section-head > p { text-align: left; }
  .software-grid { grid-template-columns: 1fr; }
  .product-section-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .product-section-head > p { text-align: left; }
  .category-process { grid-template-columns: repeat(2, 1fr); }
  .category-process > div:nth-child(2) { border-right: 0; }
  .category-process > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

@media (max-width: 620px) {
  .brand img { width: auto; height: 48px; }
  .hero h1 { font-size: 37px; }
  .hero p { font-size: 16px; }
  .hero-actions .btn { width: 100%; }
  .strip-tabs { gap: 24px; }
  .solution-grid,
  .catalog-grid,
  .brand-logo-grid,
  .product-grid,
  .product-brand-logos,
  .category-process,
  .reference-gallery,
  .quote-form,
  .contact-cards {
    grid-template-columns: 1fr;
  }
  .support-search-panel { padding: 22px; }
  .support-filters { width: 100%; display: grid; }
  .support-filters button {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .support-filters button:last-child { border-bottom: 0; }
  .software-card { grid-template-columns: 82px minmax(0, 1fr); }
  .software-copy { padding: 20px; }
  .reference-card { grid-template-rows: 190px 1fr; }
  .reference-card img { height: 190px; }
  .product-subnav,
  .product-tabs { display: grid; }
  .product-subnav a,
  .product-tabs [role="tab"] {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .product-subnav a:last-child,
  .product-tabs [role="tab"]:last-child { border-bottom: 0; }
  .product-card { grid-template-rows: 220px 1fr; }
  .product-card figure img { height: 220px; }
  .category-process > div,
  .category-process > div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .category-process > div:last-child { border-bottom: 0; }
  .quote-form label,
  .quote-form button,
  .quote-form small { grid-column: 1 / -1; }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}

/* Shared application shell and 2026 content components */
.icon {
  width: 1.25em;
  height: 1.25em;
  flex: 0 0 auto;
  overflow: visible;
}

:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 3px solid #84d83e;
  outline-offset: 3px;
}

.top-phone,
.topline-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.top-phone .icon {
  width: 34px;
  height: 34px;
  padding: 8px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 50%;
}

.topline-links .icon { color: var(--aqua); }
.topline-links { flex: 0 0 auto; }
.topline-links a span {
  width: auto;
  height: auto;
  background: none;
}
.topline-slogan {
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.brand img,
.site-logo {
  display: block;
  width: auto;
  height: 46px;
  max-width: 100%;
  aspect-ratio: auto;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  object-fit: contain;
  transform: none;
}

.header-main { min-height: 94px; }
.header-main .brand {
  gap: 10px;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
}
.header-main .brand .brand-mark {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  object-fit: contain;
}
.brand-wordmark {
  min-width: 0;
  display: grid;
  align-content: center;
  line-height: 1;
}
.header-main .brand .brand-name {
  color: var(--navy);
  font-size: 30px;
  font-weight: 750;
  line-height: .95;
  letter-spacing: 0;
}
.header-main .brand .brand-tagline {
  margin-top: 7px;
  color: #75818b;
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
}
.header-actions { min-width: 0; }
.free-survey {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border: 1px solid rgba(103,197,47,.45);
  color: #24570d;
  background: #f1faeb;
  font-size: 13px;
  font-weight: 900;
}

.account-link {
  min-height: 54px;
  display: flex;
  grid-template-columns: none;
  gap: 10px;
  padding: 7px 12px;
  border: 1px solid var(--line);
}
.account-link > .icon {
  width: 34px;
  height: 34px;
  padding: 7px;
  border-radius: 50%;
  color: #fff;
  background: var(--navy);
}
.account-link > span {
  width: auto;
  height: auto;
  display: grid;
  grid-row: auto;
  place-items: initial;
  border: 0;
  border-radius: 0;
  font-size: inherit;
}
.account-link strong,
.account-link small { align-self: auto; }
.nav-inner { grid-template-columns: repeat(7, 1fr); }
.nav-inner > a {
  min-height: 60px;
  padding-inline: 8px;
  font-size: 12px;
  text-align: center;
}
.mega-all-link,
.mega-visual-label,
.back-to-top {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.mega-all-link .icon,
.mega-visual-label .icon { width: 16px; height: 16px; }

.footer-grid {
  display: grid;
  grid-template-columns: minmax(245px, 1.35fr) repeat(5, minmax(125px, .75fr));
  gap: 30px;
  padding-block: 58px 44px;
}
.footer-brand .site-logo { height: 48px; }
.footer-grid > div { min-width: 0; }
.footer-grid h2 {
  margin: 0 0 17px;
  color: #fff;
  font-size: 14px;
}
.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-grid > div:not(:first-child) a {
  color: rgba(255,255,255,.68);
  font-size: 13px;
}
.footer-grid a:hover { color: #fff; }
.footer-brand-column > p {
  max-width: 390px;
  margin: 18px 0 12px;
  color: rgba(255,255,255,.58);
  font-size: 14px;
}
.footer-slogan {
  display: block;
  margin-bottom: 19px;
  color: #a8e781;
  font-size: 13px;
}
.footer-contact-list {
  display: grid;
  gap: 8px;
}
.footer-contact-list a {
  min-height: 30px;
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: rgba(255,255,255,.78);
  font-size: 13px;
}
.footer-contact-list .icon {
  margin-top: 2px;
  color: var(--aqua);
}
.back-to-top { min-height: 44px; color: rgba(255,255,255,.72); }
.back-to-top .icon { width: 18px; height: 18px; }
.whatsapp-float .icon { width: 27px; height: 27px; }

.page-hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.page-hero-actions .btn,
.cta-actions .btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.free-discovery-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: #24570d;
  font-weight: 800;
}
.free-discovery-note .icon { color: var(--green); }

.home-hero {
  min-height: 396px;
  display: flex;
  align-items: stretch;
  background-color: #f7f9fa;
  background-image: url("assets/nedsa-security-systems.png");
  background-position: center;
  background-size: cover;
}
.home-hero-inner {
  min-height: 396px;
  display: flex;
  align-items: center;
}
.home-hero-copy {
  width: min(590px, 52%);
  padding: 28px 0;
}
.home-hero h1 {
  margin: 8px 0 18px;
  color: #102b39;
  font-size: clamp(43px, 5vw, 68px);
  line-height: 1.03;
}
.home-hero p {
  max-width: 570px;
  margin: 0;
  color: #53636e;
  font-size: 18px;
}
.hero-slogan {
  display: block;
  margin-top: 18px;
  color: #2d6516;
  font-size: 14px;
}

.section-intro {
  max-width: 760px;
  margin-bottom: 34px;
}
.section-intro h2 {
  margin: 6px 0 12px;
  color: #0f2733;
  font-size: clamp(28px, 4vw, 43px);
  line-height: 1.12;
}
.section-intro p { margin: 0; color: var(--muted); }

.service-grid,
.sector-grid,
.trust-grid,
.support-category-grid,
.legal-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.service-card,
.sector-card,
.trust-card,
.support-category-card,
.legal-card {
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--line);
  background: #fff;
}
.service-card .icon-badge,
.sector-card .icon-badge,
.trust-card .icon-badge,
.support-category-card .icon-badge {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 17px;
  color: #fff;
  background: var(--navy);
}
.icon-badge .icon { width: 22px; height: 22px; }
.service-card:nth-child(3n+2) .icon-badge,
.sector-card:nth-child(3n+2) .icon-badge,
.trust-card:nth-child(3n+2) .icon-badge { background: #397a2c; }
.service-card:nth-child(3n) .icon-badge,
.sector-card:nth-child(3n) .icon-badge,
.trust-card:nth-child(3n) .icon-badge { background: #364152; }
.service-card h3,
.sector-card h3,
.trust-card h3,
.support-category-card h3,
.legal-card h3 {
  margin: 0 0 9px;
  color: #102e3d;
  font-size: 18px;
  line-height: 1.25;
}
.service-card p,
.sector-card p,
.trust-card p,
.support-category-card p,
.legal-card p {
  margin: 0;
  color: #6b7785;
  font-size: 14px;
}
.support-category-card {
  display: block;
  transition: transform .2s ease, border-color .2s ease;
}
.support-category-card:hover {
  border-color: var(--green);
  transform: translateY(-3px);
}
.support-category-card .icon-badge { background: var(--navy-dark); }

.process-grid {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  border: 1px solid var(--line);
  background: #fff;
}
.process-step {
  counter-increment: step;
  min-width: 0;
  padding: 22px 18px;
  border-right: 1px solid var(--line);
}
.process-step:last-child { border-right: 0; }
.process-step::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  margin-bottom: 15px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}
.process-step .icon {
  width: 24px;
  height: 24px;
  margin-bottom: 13px;
  color: var(--navy);
}
.process-step h3 {
  margin: 0 0 7px;
  color: #153647;
  font-size: 15px;
  line-height: 1.3;
}
.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}
.content-band { padding: 78px 0; background: #fff; }
.content-band-alt { padding: 78px 0; background: var(--panel); }
.cta-band {
  color: #fff;
  background: var(--navy-dark);
}
.cta-band .container {
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-block: 48px;
}
.cta-band h2 {
  max-width: 680px;
  margin: 6px 0 10px;
  color: #fff;
  font-size: clamp(28px, 4vw, 43px);
  line-height: 1.12;
}
.cta-band p { max-width: 670px; margin: 0; color: rgba(255,255,255,.7); }
.cta-band .btn-secondary { color: #fff; border-color: rgba(255,255,255,.45); }

.download-list {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
}
.download-card {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  border: 1px solid var(--line);
  background: #fff;
}
.download-card-brand {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 12px;
  padding: 28px;
  color: #fff;
  background: var(--navy-dark);
  text-align: center;
}
.download-card-brand .icon { width: 42px; height: 42px; }
.download-card-brand strong { font-size: 18px; }
.download-card-body { min-width: 0; padding: 28px; }
.download-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
}
.download-card h3 {
  margin: 0 0 7px;
  color: #102f3f;
  font-size: 25px;
}
.download-card p { color: #697788; }
.software-status {
  flex: 0 0 auto;
  padding: 7px 10px;
  color: #6b3300;
  background: #fff2dd;
  font-size: 11px;
  font-weight: 900;
}
.software-status.recommended { color: #24570d; background: #eefae7; }
.download-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(115px, 1fr));
  gap: 1px;
  margin: 20px 0;
  border: 1px solid var(--line);
  background: var(--line);
}
.download-meta div { min-width: 0; padding: 12px; background: #f8fbfb; }
.download-meta small { display: block; color: #7a8793; font-size: 10px; text-transform: uppercase; }
.download-meta strong { display: block; margin-top: 3px; color: #263644; font-size: 13px; overflow-wrap: anywhere; }
.hash-block {
  margin: 18px 0;
  padding: 14px;
  border-left: 3px solid var(--green);
  background: #f1f7f7;
}
.hash-block small { display: block; margin-bottom: 6px; color: #65727e; font-weight: 800; }
.hash-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hash-row code,
.command-block code {
  min-width: 0;
  overflow-x: auto;
  color: #19313c;
  font-family: Consolas, monospace;
  font-size: 12px;
  white-space: nowrap;
}
.command-block code {
  display: block;
  max-width: 100%;
}
.hash-row button {
  min-height: 36px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  color: var(--navy);
  background: #fff;
  font-size: 12px;
  font-weight: 800;
}
.software-warning,
.notice {
  padding: 16px 18px;
  border-left: 4px solid #ca6c12;
  color: #58300a;
  background: #fff7e8;
  font-size: 14px;
}
.notice.tip {
  border-left-color: var(--green);
  color: #294d1b;
  background: #f1faed;
}
.software-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.software-actions .btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.mobile-app-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.mobile-app-card {
  padding: 26px;
  border: 1px solid var(--line);
  background: #fff;
}
.mobile-app-card h3 { margin: 0 0 9px; color: #102f3f; }
.store-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }

.guide-layout,
.legal-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}
.guide-toc,
.legal-toc {
  position: sticky;
  top: 178px;
  padding: 22px;
  border: 1px solid var(--line);
  background: #fff;
}
.guide-toc h2,
.legal-toc h2 {
  margin: 0 0 14px;
  color: #173747;
  font-size: 16px;
}
.guide-toc a,
.legal-toc a {
  display: block;
  padding: 7px 0;
  color: #63717e;
  font-size: 13px;
}
.guide-toc a:hover,
.legal-toc a:hover { color: var(--navy); }
.toc-list {
  margin: 0;
  padding-left: 21px;
}
.toc-list li + li { margin-top: 2px; }
.toc-list a { overflow-wrap: anywhere; }
.guide-content,
.legal-content { min-width: 0; }
.guide-content > section,
.legal-content > section {
  scroll-margin-top: 190px;
  padding: 0 0 38px;
  margin-bottom: 38px;
  border-bottom: 1px solid var(--line);
}
.guide-content h2,
.legal-content h2 {
  margin: 0 0 13px;
  color: #102f3f;
  font-size: 27px;
}
.guide-content h3,
.legal-content h3 { color: #163d4f; }
.guide-content p,
.guide-content li,
.legal-content p,
.legal-content li { color: #5f6d79; }
.guide-content li + li,
.legal-content li + li { margin-top: 8px; }
.guide-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 20px 0 0;
}
.guide-meta span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  color: #536370;
  background: #fff;
  font-size: 12px;
}
.guide-pager {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 34px;
}
.guide-pager a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  padding: 10px 15px;
  border: 1px solid var(--line);
  color: var(--navy);
  font-weight: 800;
}
.source-list a { color: var(--navy); text-decoration: underline; }
.legal-updated { color: #74818d; font-size: 13px; }
.legal-placeholder {
  padding: 16px 18px;
  border: 1px solid #efd3a8;
  color: #663b12;
  background: #fff8ec;
}

.reference-tag {
  display: inline-block;
  margin-bottom: 8px;
  color: #397a2c;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.form-disclosure {
  grid-column: 1 / -1;
  margin: 0;
  color: #5d6c78;
  font-size: 12px;
}
.form-disclosure a { color: var(--navy); text-decoration: underline; }

@media (max-width: 1180px) {
  .footer-grid { grid-template-columns: 1.35fr repeat(2, 1fr); }
  .footer-grid > div:nth-child(n+4) { padding-top: 10px; }
  .service-grid,
  .sector-grid,
  .trust-grid,
  .support-category-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(4, 1fr); }
  .process-step { border-bottom: 1px solid var(--line); }
}

@media (max-width: 860px) {
  .topline-slogan { display: none; }
  .topline-inner { justify-content: space-between; }
  .topline-links {
    display: inline-flex;
  }
  .topline-links a:last-child { display: none; }
  .free-survey { display: none; }
  .account-link { display: none; }
  .nav-inner { grid-template-columns: 1fr; }
  .nav-inner > a { min-height: 48px; text-align: left; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .footer-brand-column { grid-column: 1 / -1; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .download-card { grid-template-columns: minmax(0, 1fr); }
  .download-card-brand { min-height: 150px; }
  .download-meta { grid-template-columns: repeat(2, 1fr); }
  .guide-layout,
  .legal-layout { grid-template-columns: 1fr; gap: 30px; }
  .guide-toc,
  .legal-toc { position: static; }
  .cta-band .container { align-items: flex-start; flex-direction: column; }
  .section-head.split {
    align-items: flex-start;
    flex-direction: column;
  }
  .home-hero {
    min-height: 500px;
    background-position: 63% center;
  }
  .home-hero-inner {
    min-height: 500px;
    align-items: flex-end;
  }
  .home-hero-copy {
    width: 100%;
    margin: 0 -16px;
    padding: 34px 20px 38px;
    background: rgba(255,255,255,.92);
  }
}

@media (max-width: 620px) {
  .topline-inner { min-height: 48px; }
  .top-phone .icon { width: 30px; height: 30px; }
  .top-phone strong { font-size: 13px; }
  .topline-links a { min-width: 44px; justify-content: center; }
  .topline-links a span { display: none; }
  .brand img,
  .site-logo { width: auto; height: 38px; }
  .header-main .brand { gap: 8px; }
  .header-main .brand .brand-mark {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }
  .header-main .brand .brand-name { font-size: 23px; }
  .header-main .brand .brand-tagline {
    margin-top: 5px;
    font-size: 7px;
  }
  .footer-brand .site-logo { height: 40px; }
  .brand strong { font-size: 21px; }
  .brand small { max-width: 155px; }
  .footer-grid,
  .service-grid,
  .sector-grid,
  .trust-grid,
  .support-category-grid,
  .legal-card-grid,
  .process-grid,
  .mobile-app-grid { grid-template-columns: 1fr; }
  .footer-grid > div:nth-child(n+4) { padding-top: 0; }
  .process-step { border-right: 0; }
  .page-hero-actions .btn,
  .cta-actions .btn,
  .software-actions .btn { width: 100%; justify-content: center; }
  .download-card-head { flex-direction: column; }
  .download-meta { grid-template-columns: 1fr; }
  .hash-row { align-items: stretch; flex-direction: column; }
  .hash-row button { width: 100%; }
  .guide-pager { flex-direction: column; }
  .guide-pager a { width: 100%; }
  .home-hero h1 { font-size: 40px; }
  .home-hero p { font-size: 16px; }
}
