:root {
  --ink: #0d1730;
  --ink-2: #26364f;
  --muted: #607084;
  --line: rgba(13, 23, 48, .14);
  --teal: #1594d2;
  --teal-dark: #0d5f8c;
  --teal-soft: rgba(21, 148, 210, .10);
  --coral: #b24d42;
  --amber: #bd8b39;
  --paper: #f2f6fa;
  --white: #ffffff;
  --shadow: 0 18px 42px rgba(13, 23, 48, .11);
  --font-head: Arial, "Helvetica Neue", Helvetica, sans-serif;
  --font-body: Arial, "Helvetica Neue", Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body.konmask-neon-home,
.konmask-neon-home {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  line-height: normal;
  background: #e9eff5;
}

.konmask-neon-home div,
.konmask-neon-home span,
.konmask-neon-home em,
.konmask-neon-home i,
.konmask-neon-home ol,
.konmask-neon-home li {
  line-height: normal;
}

.konmask-neon-home a {
  color: inherit;
  text-decoration: none;
}

.konmask-neon-home img {
  display: block;
  max-width: 100%;
}

.artboard {
  width: min(1440px, 100%);
  margin: 0 auto;
  background: var(--white);
  box-shadow: 0 0 34px rgba(13, 23, 48, .12);
  overflow: hidden;
}

.topline {
  min-height: 28px;
  padding: 0 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #edf6ff;
  background: #0b1429;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  font-size: 12px;
}

.topline div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.topline span,
.topline a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #edf6ff;
  text-decoration: none;
  white-space: nowrap;
}

.topline span::before,
.topline a::before {
  color: #55bde8;
  font-weight: 900;
}

.topline a:nth-child(1)::before,
.topline span:nth-child(1)::before {
  content: "☎";
}

.topline a:nth-child(2)::before,
.topline span:nth-child(2)::before {
  content: "✉";
}

.topline a:hover {
  color: #ffffff;
}

.header {
  min-height: 76px;
  padding: 0 64px;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr) 360px;
  align-items: center;
  gap: 22px;
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 10;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 214px;
  height: auto;
  filter: drop-shadow(0 6px 10px rgba(13, 23, 48, .10));
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 23px;
  white-space: nowrap;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.nav a {
  min-height: 76px;
  display: inline-flex;
  align-items: center;
  position: relative;
}

.nav a:hover,
.nav a.active {
  color: var(--teal-dark);
}

.nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  height: 3px;
  background: var(--teal);
  box-shadow: none;
}

.tools {
  display: grid;
  grid-template-columns: minmax(150px, 1fr) auto;
  align-items: center;
  gap: 10px;
}

.search {
  height: 38px;
  display: grid;
  grid-template-columns: 1fr 38px;
  border: 1px solid rgba(6, 16, 22, .18);
  background: #fff;
}

.search input {
  min-width: 0;
  border: 0;
  padding: 0 12px;
  background: transparent;
  color: var(--ink);
  font-size: 13px;
  outline: 0;
}

.search button {
  border: 0;
  background: var(--paper);
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.quote,
.btn,
.mini-btn,
.case-actions a,
.rfq-card .rfq-primary {
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}

.quote:hover,
.btn:hover,
.mini-btn:hover,
.case-actions a:hover,
.rfq-card .rfq-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(13, 23, 48, .12);
}

.quote {
  height: 38px;
  padding: 0 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #f7ffff;
  background: var(--ink);
  border: 1px solid rgba(21, 148, 210, .45);
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.konmask-neon-home .quote,
.konmask-neon-home .btn.primary,
.konmask-neon-home .rfq-card .rfq-primary,
.konmask-neon-home .case-actions a {
  color: #f7ffff;
}

.konmask-neon-home .btn,
.konmask-neon-home .mini-btn {
  color: var(--ink);
}

.konmask-neon-home .btn.mail {
  color: var(--teal-dark);
}

.konmask-neon-home .quick-models a {
  color: var(--teal-dark);
}

.home-main {
  background: #fff;
}

.konmask-hero {
  min-height: 520px;
  display: flex;
  align-items: center;
  padding: 58px 64px 54px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(8, 16, 34, .92) 0%, rgba(8, 16, 34, .76) 42%, rgba(8, 16, 34, .34) 74%, rgba(8, 16, 34, .16) 100%),
    url("../images/konmask-hero-wide-v54.webp") 56% center / cover no-repeat,
    #0b1429;
  border-bottom: 1px solid rgba(13, 23, 48, .08);
}

.konmask-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, .05), transparent 38%, rgba(7, 13, 28, .22));
  pointer-events: none;
}

.konmask-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding: 0;
}

.eyebrow {
  width: fit-content;
  margin: 0 0 18px;
  padding: 8px 12px;
  color: #d9f4ff;
  background: rgba(7, 15, 31, .58);
  border: 1px solid rgba(100, 210, 255, .40);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 900;
  line-height: .96;
  text-transform: uppercase;
}

.konmask-neon-home h1,
.konmask-neon-home h2,
.konmask-neon-home h3 {
  margin: 0 !important;
  line-height: .96 !important;
}

.konmask-hero h1 {
  max-width: 620px;
  font-size: clamp(40px, 4.4vw, 60px);
  line-height: .98;
  color: #fff;
  text-shadow: 0 16px 34px rgba(0, 0, 0, .26);
}

.konmask-hero-lead {
  max-width: 560px;
  margin: 15px 0 0;
  color: rgba(242, 248, 255, .88);
  font-size: 17px;
  line-height: 1.45;
  font-weight: 700;
}

.btns {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  min-height: 46px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(6, 16, 22, .2);
  background: rgba(255, 255, 255, .9);
  color: var(--ink);
  font-family: var(--font-head);
  font-size: 14px;
  text-transform: uppercase;
  clip-path: polygon(0 0, calc(100% - 11px) 0, 100% 11px, 100% 100%, 11px 100%, 0 calc(100% - 11px));
}

.btn.primary {
  color: #f7ffff;
  background: linear-gradient(135deg, #101820, #132a44);
  border-color: rgba(21, 148, 210, .42);
  box-shadow: 0 14px 28px rgba(13, 23, 48, .14);
}

.btn.mail {
  border-color: rgba(21, 148, 210, .34);
  color: var(--teal-dark);
}

.konmask-hero-stats {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 660px;
}

.stat {
  min-height: 72px;
  padding: 12px 14px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(21, 148, 210, .20);
  box-shadow: 0 10px 24px rgba(13, 23, 48, .055);
}

.stat b {
  display: block;
  color: var(--ink);
  font-family: var(--font-head);
  font-size: 24px;
  line-height: .95;
}

.stat span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.brand-quick-search {
  padding: 48px 64px;
  display: grid;
  grid-template-columns: minmax(260px, .62fr) minmax(0, 1.38fr);
  gap: 28px;
  align-items: center;
  background: #f4f7fa;
  border-top: 1px solid rgba(13, 23, 48, .08);
  border-bottom: 1px solid rgba(13, 23, 48, .08);
}

.brand-quick-search h2 {
  max-width: 430px;
  font-size: clamp(28px, 2.4vw, 40px);
}

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

.brand-chip-grid a {
  min-height: 132px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: #fff;
  border: 1px solid rgba(21, 148, 210, .20);
  box-shadow: 0 12px 24px rgba(13, 23, 48, .055);
  position: relative;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.brand-chip-grid a:hover {
  border-color: rgba(21, 148, 210, .36);
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(13, 23, 48, .075);
}

.brand-chip-grid a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--teal);
  opacity: .62;
}

.brand-chip-grid img {
  width: 100%;
  height: 58px;
  margin-bottom: 13px;
  object-fit: contain;
  object-position: left center;
}

.brand-chip-grid span {
  color: var(--ink);
  font-family: var(--font-head);
  font-size: 18px;
  line-height: 1;
  text-transform: uppercase;
}

.brand-chip-grid b {
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.2;
}

.rfq-card {
  background: rgba(255, 255, 255, .91);
  border: 1px solid rgba(21, 148, 210, .30);
  box-shadow: var(--shadow), inset 0 0 18px rgba(21, 148, 210, .04);
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
  padding: 22px;
}

.rfq-card h2 {
  font-size: 31px;
}

.rfq-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.rfq-card ul {
  list-style: none;
  margin: 14px 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.rfq-card li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.32;
}

.rfq-card li::before {
  content: "";
  width: 22px;
  height: 22px;
  border: 1px solid rgba(21, 148, 210, .48);
  background:
    linear-gradient(135deg, transparent 46%, var(--teal) 48%, var(--teal) 54%, transparent 56%),
    rgba(21, 148, 210, .07);
  transform: rotate(45deg);
}

.rfq-card .rfq-primary {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f7ffff;
  background: var(--teal-dark);
  border: 1px solid rgba(21, 148, 210, .54);
  font-family: var(--font-head);
  font-size: 15px;
  text-transform: uppercase;
}

.rfq-contact {
  margin-top: 15px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.rfq-contact a {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(6, 16, 22, .14);
  background: #fff;
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 800;
}

.quick-models {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.quick-models strong {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-head);
  font-size: 15px;
  text-transform: uppercase;
}

.quick-models div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.quick-models a {
  padding: 8px 10px;
  color: var(--teal-dark);
  background: var(--teal-soft);
  border: 1px solid rgba(21, 148, 210, .28);
  font-size: 12px;
  font-weight: 800;
}

.section {
  padding: 56px 64px;
}

.konmask-neon-home .section {
  display: block !important;
  padding: 56px 64px !important;
}

.konmask-neon-home .section > * {
  width: 100%;
}

.section.alt {
  background: var(--paper);
}

#about {
  color: #f7ffff;
  background:
    linear-gradient(90deg, rgba(13, 23, 48, .98), rgba(12, 38, 62, .94)),
    var(--ink);
}

#about .section-title {
  color: #fff;
}

#about .section-copy {
  color: rgba(234, 246, 255, .72);
}

#about .section-kicker {
  color: #8ed8ff;
}

.section-head {
  margin: 0 0 28px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.section-title {
  font-size: clamp(32px, 3.5vw, 50px);
}

.section-kicker {
  margin: 0 0 8px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.section-copy {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

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

.procurement-strip {
  margin-top: 18px;
  min-height: 76px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background:
    linear-gradient(90deg, rgba(13, 23, 48, .96), rgba(31, 52, 56, .94)),
    var(--ink);
  color: #f7ffff;
  border-left: 4px solid var(--teal);
}

.procurement-strip strong {
  display: block;
  font-family: var(--font-head);
  font-size: 22px;
  line-height: 1;
  text-transform: uppercase;
}

.procurement-strip span {
  display: block;
  margin-top: 6px;
  color: rgba(247, 255, 255, .74);
  font-size: 14px;
}

.procurement-strip a {
  min-height: 40px;
  padding: 0 16px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(255, 255, 255, .36);
  font-family: var(--font-head);
  font-size: 13px;
  text-transform: uppercase;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.cut-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(21, 148, 210, .25);
  box-shadow: 0 14px 28px rgba(13, 23, 48, .075), inset 0 0 14px rgba(21, 148, 210, .035);
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
}

.product {
  min-height: 304px;
  padding: 18px 18px 17px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.product::before {
  content: none;
}

.product em {
  width: fit-content;
  padding: 5px 8px;
  position: relative;
  z-index: 2;
  color: var(--teal-dark);
  background: rgba(21, 148, 210, .08);
  border: 1px solid rgba(21, 148, 210, .22);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.product img {
  width: 100%;
  height: 132px;
  object-fit: contain;
  margin: 10px 0 14px;
  padding: 6px;
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, #f8fbfd, #f0f5f9);
  border: 1px solid rgba(13, 23, 48, .08);
  filter: drop-shadow(0 10px 12px rgba(6, 16, 22, .10));
}

.product h3 {
  font-size: 23px;
}

.product p {
  margin: 9px 0 16px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.product p strong {
  display: block;
  margin-bottom: 2px;
  color: var(--ink);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 400;
}

.mini-btn {
  width: fit-content;
  min-height: 34px;
  margin-top: auto;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(13, 23, 48, .16);
  font-family: var(--font-head);
  font-size: 12px;
  text-transform: uppercase;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.why-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.why-card {
  min-height: 188px;
  padding: 18px 20px 20px;
  background: rgba(255, 255, 255, .06);
  border-color: rgba(107, 204, 245, .24);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 16px 30px rgba(0, 0, 0, .16);
}

.why-card em {
  color: #8ed8ff;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.why-icon {
  width: 48px;
  height: 48px;
  margin: 14px 0 16px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(142, 216, 255, .44);
  background: rgba(142, 216, 255, .10);
  clip-path: polygon(0 0, calc(100% - 9px) 0, 100% 9px, 100% 100%, 9px 100%, 0 calc(100% - 9px));
}

.why-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: #f7ffff;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-card h3 {
  color: #fff;
  font-size: 23px;
}

.why-card p {
  margin: 8px 0 0;
  color: rgba(234, 246, 255, .70);
  font-size: 13px;
  line-height: 1.55;
}

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

.tile {
  min-height: 260px;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  background-image: var(--bg);
  background-position: var(--pos, center);
  background-repeat: no-repeat;
  background-size: 205% 205%;
  border: 1px solid rgba(21, 148, 210, .24);
}

.tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(13, 23, 48, .10), rgba(13, 23, 48, .70)),
    linear-gradient(135deg, rgba(21, 148, 210, .12), transparent 54%, rgba(13, 95, 140, .10));
}

.tile-label {
  width: 100%;
  min-height: 104px;
  padding: 20px;
  position: relative;
  z-index: 1;
  color: #fff;
}

.tile-label span {
  display: block;
  margin-bottom: 8px;
  color: #b9e5e2;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.tile-label h3 {
  font-size: 30px;
  text-shadow: 0 6px 18px rgba(0,0,0,.45);
}

.tech-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: stretch;
}

.tech-map {
  min-height: 340px;
  position: relative;
  border: 1px solid rgba(21, 148, 210, .24);
  background:
    radial-gradient(circle at 50% 48%, rgba(21, 148, 210, .10), transparent 38%),
    linear-gradient(135deg, #ffffff, #f4f8fb),
    #fff;
  overflow: hidden;
}

.tech-map::before,
.tech-map::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 78%;
  height: 1px;
  background: rgba(21, 148, 210, .30);
  transform-origin: center;
}

.tech-map::before {
  transform: translate(-50%, -50%) rotate(27deg);
}

.tech-map::after {
  transform: translate(-50%, -50%) rotate(-27deg);
}

.tech-map .ring {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 230px;
  height: 230px;
  transform: translate(-50%, -50%);
  border: 1px dashed rgba(21, 148, 210, .30);
  border-radius: 50%;
}

.hex {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 128px;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  color: var(--ink);
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(21, 148, 210, .42);
  clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
  font-family: var(--font-head);
  font-size: 22px;
  line-height: .95;
  text-align: center;
  z-index: 1;
}

.tech-note {
  position: absolute;
  width: 150px;
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.tech-note::after {
  content: "";
  display: block;
  width: 54px;
  height: 2px;
  margin-top: 8px;
  background: var(--teal);
}

.tn1 {
  left: 28px;
  top: 38px;
}

.tn2 {
  right: 28px;
  top: 38px;
  text-align: right;
}

.tn2::after,
.tn4::after {
  margin-left: auto;
}

.tn3 {
  left: 28px;
  bottom: 42px;
}

.tn4 {
  right: 28px;
  bottom: 42px;
  text-align: right;
}

.flow-step {
  position: absolute;
  z-index: 2;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--teal-dark);
  background: #fff;
  border: 1px solid rgba(21, 148, 210, .44);
  border-radius: 50%;
  font-family: var(--font-head);
}

.trust-layout {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 28px;
  align-items: stretch;
}

.trust-stack-map {
  min-height: 340px;
  position: relative;
  padding: 24px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(21, 148, 210, .32);
  background:
    linear-gradient(135deg, rgba(13, 23, 48, .98), rgba(12, 42, 70, .94)),
    var(--ink);
  overflow: hidden;
  color: #f7ffff;
}

.trust-stack-map::before,
.trust-stack-map::after {
  content: none;
}

.trust-workbench-head {
  margin-bottom: 18px;
  padding-bottom: 16px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(142, 216, 255, .24);
}

.trust-workbench-head span {
  color: #8ed8ff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.trust-workbench-head b {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.trust-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.trust-steps li {
  min-height: 58px;
  margin: 0 !important;
  padding: 13px 14px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 4px 12px;
  align-items: center;
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(142, 216, 255, .20);
}

.trust-steps span {
  grid-row: 1 / span 2;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #0b1429;
  background: #8ed8ff;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 900;
  clip-path: polygon(0 0, calc(100% - 7px) 0, 100% 7px, 100% 100%, 7px 100%, 0 calc(100% - 7px));
}

.trust-steps strong {
  color: #fff;
  font-family: var(--font-head);
  font-size: 16px;
  line-height: 1.05;
  text-transform: uppercase;
}

.trust-steps em {
  color: rgba(234, 246, 255, .70);
  font-size: 13px;
  font-style: normal;
  line-height: 1.35;
}

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

.trust-doc {
  min-height: 340px;
  padding: 18px;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 14px;
  background: #fff;
  border: 1px solid rgba(21, 148, 210, .22);
  box-shadow: 0 18px 34px rgba(13, 23, 48, .08);
}

.doc-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.doc-top span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--ink);
  clip-path: polygon(0 0, calc(100% - 7px) 0, 100% 7px, 100% 100%, 7px 100%, 0 calc(100% - 7px));
}

.doc-paper {
  min-height: 250px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--ink-2);
  background: linear-gradient(180deg, rgba(255,255,255,.99), rgba(245, 249, 253, .98));
  border: 1px solid rgba(13, 23, 48, .12);
  box-shadow: inset 0 0 0 8px rgba(21, 148, 210, .035);
}

.doc-paper strong {
  color: var(--ink);
  font-size: 22px;
  line-height: 1.08;
  text-transform: uppercase;
}

.doc-paper p {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.55;
}

.doc-paper i {
  width: 54px;
  height: 54px;
  margin-top: 28px;
  margin-left: auto;
  border: 2px solid rgba(21, 148, 210, .48);
  border-radius: 50%;
  box-shadow: inset 0 0 0 8px rgba(21, 148, 210, .08);
}

.fs1 {
  left: 50%;
  top: 46px;
  transform: translateX(-50%);
}

.fs2 {
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
}

.fs3 {
  left: 50%;
  bottom: 46px;
  transform: translateX(-50%);
}

.fs4 {
  left: 50px;
  top: 50%;
  transform: translateY(-50%);
}

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

.paper-card {
  min-height: 340px;
  padding: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.99), rgba(245,249,253,.96));
  border: 1px solid rgba(21, 148, 210, .22);
  box-shadow: 0 14px 28px rgba(13, 23, 48, .065);
}

.paper-card h3 {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 26px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(21, 148, 210, .18);
  font-size: 25px;
}

.paper-card span {
  display: block;
  height: 12px;
  margin: 0 0 15px;
  background: linear-gradient(90deg, rgba(21, 148, 210, .34), rgba(13, 23, 48, .07));
  border-radius: 20px;
}

.paper-card span:nth-of-type(2) {
  width: 78%;
}

.paper-card span:nth-of-type(3) {
  width: 88%;
}

.paper-card span:nth-of-type(4) {
  width: 58%;
}

.paper-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.paper-card li {
  min-height: 34px;
  padding: 0 0 0 28px;
  display: flex;
  align-items: center;
  position: relative;
  color: var(--ink-2);
  border-bottom: 1px solid rgba(13, 23, 48, .08);
  font-size: 14px;
  line-height: 1.35;
}

.paper-card li::before {
  content: "";
  position: absolute;
  left: 0;
  width: 15px;
  height: 15px;
  border: 1px solid rgba(21, 148, 210, .46);
  transform: rotate(45deg);
  background: rgba(21, 148, 210, .06);
}

.mini-seal {
  display: block;
  width: 58px;
  height: 58px;
  margin-top: 34px;
  margin-left: auto;
  border: 2px solid rgba(21, 148, 210, .48);
  border-radius: 50%;
  box-shadow: inset 0 0 0 8px rgba(21, 148, 210, .08);
}

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

.case {
  overflow: hidden;
}

.case-img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  object-position: center;
  filter: saturate(.96) contrast(1.02);
}

.case-body {
  padding: 20px;
}

.case h3 {
  font-size: 25px;
}

.case h3::before {
  content: attr(data-tag);
  display: block;
  margin-bottom: 7px;
  color: var(--teal-dark);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.case p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.case-actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  font-family: var(--font-head);
  text-transform: uppercase;
}

.case-actions span {
  color: var(--muted);
}

.case-actions a {
  min-height: 38px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  color: #f7ffff;
  background: var(--ink);
  border: 1px solid rgba(21, 148, 210, .38);
  clip-path: polygon(0 0, calc(100% - 9px) 0, 100% 9px, 100% 100%, 9px 100%, 0 calc(100% - 9px));
}

.closing-cta {
  padding: 48px 64px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(13, 23, 48, .98), rgba(12, 42, 70, .94)),
    var(--ink);
  color: #f7ffff;
}

.closing-cta .section-kicker {
  color: #8ed8ff;
}

.closing-cta h2 {
  max-width: 780px;
  color: #fff;
  font-size: clamp(30px, 3vw, 48px);
}

.closing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.closing-actions .btn {
  color: var(--ink);
  background: #fff;
}

.closing-actions .btn.primary {
  color: #f7ffff;
  background: var(--teal-dark);
  border-color: rgba(255, 255, 255, .26);
}

.footer {
  padding: 0;
  color: #eaf6ff;
  background:
    linear-gradient(180deg, rgba(15, 38, 65, .98), rgba(7, 17, 31, 1));
  border-top: 3px solid var(--teal);
}

.footer-shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 40px 0 24px;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .72fr);
  gap: 36px;
  align-items: stretch;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(234, 246, 255, .11);
}

.footer-brand {
  display: grid;
  align-content: center;
  gap: 18px;
}

.footer-brand img {
	width: 230px;
	max-width: 100%;
	height: auto;
	padding: 10px 14px;
	background: rgba(255, 255, 255, .96);
	box-shadow: 0 16px 34px rgba(0, 0, 0, .16);
}

.footer-brand p {
  max-width: 560px;
  color: rgba(234, 246, 255, .74);
  font-size: 15px;
  line-height: 1.75;
}

.footer-contact-card {
  padding: 24px;
  border: 1px solid rgba(32, 167, 206, .25);
  background: rgba(255, 255, 255, .045);
  box-shadow: inset 3px 0 0 rgba(32, 167, 206, .75);
}

.footer-contact-card > span {
  display: block;
  margin-bottom: 9px;
  color: #7ed8f0;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer-contact-card h3 {
  max-width: 420px;
  font-size: 24px;
  line-height: 1.14;
  letter-spacing: 0;
  text-transform: none;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  padding-top: 30px;
}

.footer h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 17px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.footer p,
.footer a {
  margin: 0;
  color: rgba(234, 246, 255, .74);
  font-size: 13px;
  line-height: 1.8;
}

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

.footer-contact-actions {
  display: grid;
  gap: 9px;
  margin-top: 20px;
}

.contact-line {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  gap: 10px;
  padding: 8px 12px 8px 8px;
  border: 1px solid rgba(32, 167, 206, .22);
  background: rgba(255, 255, 255, .035);
  color: #eaf6ff !important;
  line-height: 1.25 !important;
  text-decoration: none;
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
}

.contact-line b {
  flex: 0 0 auto;
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  color: #eaf6ff;
  border: 1px solid rgba(32, 167, 206, .5);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 900;
}

.contact-line span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.contact-line:hover {
  border-color: rgba(32, 167, 206, .72);
  background: rgba(32, 167, 206, .12);
  transform: translateY(-1px);
}

.contact-line.whatsapp b {
  border-color: rgba(37, 211, 102, .65);
  color: #d7ffe5;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid rgba(234, 246, 255, .09);
  color: rgba(234, 246, 255, .54);
  font-size: 12px;
}

.mobile-action-bar {
  display: none;
}

@media (max-width: 1180px) {
  .topline,
  .header,
  .konmask-hero,
  .section,
  .brand-quick-search {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }

  .footer {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-contact-card {
    max-width: 520px;
  }

  .header {
    grid-template-columns: 220px 1fr;
  }

  .tools {
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 1fr) auto;
    padding-bottom: 14px;
  }

  .nav {
    justify-content: flex-end;
    gap: 16px;
  }

  .product-row,
  .why-cards,
  .solution-grid,
  .brand-chip-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand-quick-search {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  body.konmask-neon-home {
    padding-bottom: calc(86px + env(safe-area-inset-bottom, 0px));
  }

  .topline {
    padding-top: 7px;
    padding-bottom: 7px;
    align-items: center;
    flex-direction: row;
    font-size: 11px;
    line-height: 1.2;
  }

  .topline div {
    gap: 10px;
  }

  .topline div:nth-child(2) span:nth-child(2) {
    display: none;
  }

  .header {
    grid-template-columns: 1fr;
    padding-top: 12px;
    padding-bottom: 14px;
  }

  .brand-logo {
    width: 198px;
  }

  .nav {
    justify-content: flex-start;
    overflow-x: auto;
    gap: 10px;
    font-size: 11px;
  }

  .nav a {
    min-height: 38px;
  }

  .nav a[href$="/news/"],
  .nav a[href$="/about-us/"],
  .nav a[href$="/contact-us/"] {
    display: none;
  }

  .nav a.active::after {
    bottom: 0;
  }

  .tools,
  .rfq-contact,
  .konmask-hero-stats,
  .tech-layout,
  .trust-layout,
  .trust-docs,
  .paper-cards,
  .footer {
    grid-template-columns: 1fr;
  }

  .tools {
    grid-template-columns: minmax(0, 1fr) 112px;
    gap: 8px;
    padding-bottom: 0;
  }

  .search {
    height: 40px;
  }

  .search input {
    min-height: 38px;
    height: 38px;
    padding: 0 12px;
    font-size: 13px;
  }

  .search input::placeholder {
    font-size: 11px;
  }

  .search button {
    min-height: 38px;
    height: 38px;
  }

  .quote {
    width: auto;
    min-height: 40px;
    height: 40px;
    padding: 0 8px;
    font-size: 10.5px;
  }

  .konmask-hero {
    min-height: 0;
    padding-top: 42px;
    padding-bottom: 44px;
    background:
      linear-gradient(180deg, rgba(8, 16, 34, .92) 0%, rgba(8, 16, 34, .82) 54%, rgba(8, 16, 34, .56) 100%),
      url("../images/konmask-hero-wide-v54.webp") 62% center / cover no-repeat,
      #0b1429;
  }

  .konmask-hero h1 {
    font-size: clamp(36px, 10vw, 48px);
    line-height: .98;
  }

  .konmask-hero-lead {
    margin-top: 16px;
    font-size: 15px;
  }

  .konmask-hero-copy .btns {
    display: none;
  }

  .konmask-hero-stats {
    display: none;
  }

  .section {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }

  .brand-quick-search {
    padding-top: 38px !important;
    padding-bottom: 36px !important;
    gap: 20px;
  }

  .brand-quick-search h2 {
    max-width: 340px;
    font-size: 31px;
    line-height: 1.02 !important;
  }

  .brand-quick-search .eyebrow {
    margin-bottom: 12px;
    font-size: 11px;
  }

  .brand-chip-grid {
    gap: 10px;
  }

  .brand-chip-grid a {
    min-height: 118px;
    padding: 12px;
  }

  .brand-chip-grid img {
    height: 46px;
    margin-bottom: 10px;
  }

  .rfq-card {
    padding: 18px;
  }

  .rfq-card h2 {
    font-size: 29px;
  }

  .rfq-card p {
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.5;
  }

  .rfq-card ul {
    margin: 13px 0;
    gap: 8px;
  }

  .rfq-card li {
    grid-template-columns: 22px 1fr;
    gap: 8px;
    font-size: 13px;
    line-height: 1.32;
  }

  .rfq-card li::before {
    width: 18px;
    height: 18px;
  }

  .rfq-contact {
    display: none;
  }

  .quick-models {
    margin-top: 12px;
    padding-top: 12px;
  }

  .section-head {
    display: block;
  }

  .section-copy {
    margin-top: 10px;
  }

  .product-row,
  .why-cards,
  .solution-grid,
  .case-grid {
    grid-template-columns: 1fr;
  }

  .why-cards {
    gap: 10px;
  }

  .why-card {
    min-height: 0;
    padding: 16px 18px;
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 4px 14px;
    align-items: center;
  }

  .why-icon {
    grid-row: 1 / span 2;
    width: 44px;
    height: 44px;
    margin: 0;
  }

  .why-icon svg {
    width: 23px;
    height: 23px;
  }

  .why-card em {
    font-size: 11px;
  }

  .why-card h3 {
    font-size: 21px;
  }

  .why-card p {
    grid-column: 1 / -1;
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.45;
  }

  .product-row {
    gap: 12px;
  }

  .product {
    min-height: 0;
    padding: 15px 18px;
    display: grid;
    grid-template-columns: 104px minmax(0, 1fr);
    grid-template-areas:
      "tag tag"
      "image title"
      "image copy"
      "button button";
    column-gap: 16px;
    align-items: center;
  }

  .product::before {
    left: 66px;
    top: 54px;
    width: 104px;
    height: 104px;
    transform: none;
  }

  .product em {
    grid-area: tag;
  }

  .product img {
    grid-area: image;
    width: 104px;
    height: 98px;
    margin: 8px 0 6px;
  }

  .product h3 {
    grid-area: title;
    font-size: 24px;
  }

  .product p {
    grid-area: copy;
    margin: 6px 0 0;
    font-size: 13px;
    line-height: 1.4;
  }

  .product p strong {
    font-size: 12px;
  }

  .product .mini-btn {
    grid-area: button;
    display: none;
  }

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

  .brand-quick-search {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .brand-chip-grid a {
    min-height: 112px;
    padding: 13px 12px;
  }

  .brand-chip-grid img {
    height: 42px;
    margin-bottom: 10px;
  }

  .brand-chip-grid span {
    font-size: 15px;
  }

  .brand-chip-grid b {
    font-size: 11px;
  }

  .procurement-strip,
  .closing-cta {
    display: block;
  }

  .procurement-strip {
    padding: 18px 20px;
  }

  .procurement-strip a {
    display: none;
  }

  .closing-actions {
    margin-top: 18px;
    display: grid;
    grid-template-columns: 1fr;
  }

  .closing-actions .btn {
    width: 100%;
  }

  .tile {
    min-height: 220px;
  }

  .trust-stack-map {
    min-height: 0;
    padding: 18px;
  }

  .trust-doc {
    min-height: 0;
  }

  .doc-paper {
    min-height: 210px;
  }

  .case-img {
    height: 190px;
  }

  .mobile-action-bar {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: calc(8px + env(safe-area-inset-bottom, 0px));
    z-index: 50;
    min-height: 48px;
    display: grid;
    grid-template-columns: 1.18fr 1.02fr .72fr .72fr;
    gap: 7px;
    padding: 6px;
    background: rgba(255, 255, 255, .94);
    border: 1px solid rgba(13, 23, 48, .13);
    box-shadow: 0 14px 34px rgba(13, 23, 48, .20);
    backdrop-filter: blur(14px);
  }

  .mobile-action-bar a {
    min-width: 0;
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    background: #fff;
    border: 1px solid rgba(13, 23, 48, .14);
    font-family: var(--font-head);
    font-size: 11px;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .mobile-action-bar .mobile-action-primary {
    color: #f7ffff;
    background: var(--ink);
    border-color: rgba(21, 148, 210, .36);
  }
}

@media (max-width: 360px) {
  .brand-chip-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }
}

/* Live deployment hardening: avoid theme class collisions and keep mobile layouts contained. */
.konmask-neon-home .konmask-hero {
  display: flex !important;
}

.konmask-neon-home .konmask-hero[style] {
  display: flex !important;
}

.konmask-neon-home .closing-cta,
.konmask-neon-home .closing-cta h2 {
  color: #f7ffff;
}

.konmask-neon-home .closing-cta .section-copy {
  color: rgba(234, 246, 255, .76);
}

@media (max-width: 760px) {
  .konmask-neon-home {
    padding-bottom: calc(74px + env(safe-area-inset-bottom, 0px));
  }

  .konmask-neon-home .artboard {
    width: 100%;
    box-shadow: none;
  }

  .konmask-neon-home .topline,
  .konmask-neon-home .header,
  .konmask-neon-home .konmask-hero,
  .konmask-neon-home .section,
  .konmask-neon-home .brand-quick-search,
  .konmask-neon-home .closing-cta {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  .konmask-neon-home .footer {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .footer-shell {
    width: min(100% - 32px, 1180px);
    padding: 30px 0 82px;
  }

  .footer-top {
    gap: 22px;
    padding-bottom: 24px;
  }

  .footer-brand img {
    width: 190px;
  }

  .footer-contact-card {
    padding: 20px;
  }

  .footer-contact-card h3 {
    font-size: 21px;
  }

  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 24px;
    padding-top: 24px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .konmask-neon-home .section {
    display: block !important;
  }

  .konmask-neon-home .section > * {
    width: 100%;
  }

  .konmask-neon-home .section-title,
  .konmask-neon-home .brand-quick-search h2,
  .konmask-neon-home .closing-cta h2 {
    font-size: clamp(30px, 9vw, 40px);
    line-height: 1.02;
    overflow-wrap: anywhere;
  }

  .konmask-neon-home .brand-quick-search h2 {
    max-width: 340px;
    font-size: 31px;
    line-height: 1.02 !important;
  }

  .konmask-neon-home .konmask-hero {
    min-height: 430px;
    align-items: flex-end;
  }

  .konmask-neon-home .konmask-hero h1 {
    font-size: clamp(34px, 10vw, 46px);
    overflow-wrap: anywhere;
  }

  .konmask-neon-home .brand-quick-search,
  .konmask-neon-home .section-head,
  .konmask-neon-home .tech-layout,
  .konmask-neon-home .trust-layout,
  .konmask-neon-home .trust-docs,
  .konmask-neon-home .paper-cards,
  .konmask-neon-home .closing-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .konmask-neon-home .brand-chip-grid,
  .konmask-neon-home .product-row,
  .konmask-neon-home .why-cards,
  .konmask-neon-home .solution-grid,
  .konmask-neon-home .case-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .konmask-neon-home .brand-chip-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .konmask-neon-home .brand-chip-grid a,
  .konmask-neon-home .product,
  .konmask-neon-home .solution-tile,
  .konmask-neon-home .trust-doc,
  .konmask-neon-home .paper-card,
  .konmask-neon-home .case {
    width: 100%;
    min-width: 0;
  }

  .konmask-neon-home .mobile-action-bar {
    grid-template-columns: 1fr 1fr .72fr .72fr;
    left: 6px;
    right: 6px;
    bottom: calc(6px + env(safe-area-inset-bottom, 0px));
    min-height: 44px;
    gap: 5px;
    padding: 5px;
  }

  .konmask-neon-home .mobile-action-bar a {
    min-height: 32px;
    font-size: 10.5px;
  }

  .konmask-neon-home .case-actions {
    display: none;
  }
}

/* Mobile chrome refinement: keep the buying path visible without letting the header dominate the first view. */
@media (max-width: 760px) {
  body.konmask-neon-home,
  .konmask-neon-home {
    padding-bottom: calc(62px + env(safe-area-inset-bottom, 0px));
  }

  .konmask-neon-home .topline {
    min-height: 28px;
    padding-top: 5px !important;
    padding-bottom: 5px !important;
    gap: 8px;
    font-size: 10.5px;
  }

  .konmask-neon-home .topline div {
    min-width: 0;
    gap: 10px;
  }

  .konmask-neon-home .topline div:first-child {
    flex: 1 1 auto;
    overflow: hidden;
  }

  .konmask-neon-home .topline a,
  .konmask-neon-home .topline span {
    gap: 5px;
  }

  .konmask-neon-home .topline a:nth-child(2) {
    min-width: 0;
    max-width: 172px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .konmask-neon-home .header {
    min-height: 0;
    padding-top: 10px !important;
    padding-bottom: 12px !important;
    gap: 10px;
  }

  .konmask-neon-home .brand-logo {
    width: 176px;
  }

  .konmask-neon-home .nav {
    gap: 4px;
    padding: 4px;
    overflow: visible;
    background: #f3f7fb;
    border: 1px solid rgba(13, 23, 48, .08);
  }

  .konmask-neon-home .nav a {
    min-height: 28px;
    padding: 0 8px;
    justify-content: center;
    color: #17233a;
    border: 1px solid transparent;
    font-size: 10.5px;
  }

  .konmask-neon-home .nav a.active,
  .konmask-neon-home .nav a:hover {
    color: var(--teal-dark);
    background: #fff;
    border-color: rgba(21, 148, 210, .28);
  }

  .konmask-neon-home .nav a.active::after {
    display: none;
  }

  .konmask-neon-home .tools {
    grid-template-columns: minmax(0, 1fr) 118px;
    gap: 7px;
  }

  .konmask-neon-home .search {
    height: 36px;
    grid-template-columns: minmax(0, 1fr) 36px;
  }

  .konmask-neon-home .search input {
    min-height: 34px;
    height: 34px;
    padding: 0 10px;
    font-size: 12px;
  }

  .konmask-neon-home .search input::placeholder {
    font-size: 12px;
  }

  .konmask-neon-home .search button {
    min-height: 34px;
    height: 34px;
  }

  .konmask-neon-home .quote {
    min-height: 36px;
    height: 36px;
    padding: 0 8px;
    font-size: 9.5px;
    letter-spacing: 0;
    white-space: nowrap;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
  }

  .konmask-neon-home .konmask-hero {
    min-height: 400px;
    padding-top: 34px !important;
    padding-bottom: 38px !important;
  }

  .konmask-neon-home .konmask-hero h1 {
    font-size: clamp(32px, 9.2vw, 42px);
    line-height: 1;
  }

  .konmask-neon-home .konmask-hero-lead {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.62;
  }

  .konmask-neon-home .mobile-action-bar {
    left: 10px;
    right: 10px;
    bottom: calc(8px + env(safe-area-inset-bottom, 0px));
    min-height: 40px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 4px;
    padding: 4px;
    background: rgba(8, 18, 37, .94);
    border-color: rgba(85, 189, 232, .30);
    box-shadow: 0 12px 28px rgba(7, 17, 31, .28);
  }

  .konmask-neon-home .mobile-action-bar a {
    min-height: 32px;
    gap: 4px;
    color: #eaf6ff;
    background: rgba(255, 255, 255, .06);
    border-color: rgba(234, 246, 255, .14);
    font-size: 10px;
    letter-spacing: 0;
    overflow: hidden;
  }

  .konmask-neon-home .mobile-action-bar a::before {
    flex: 0 0 auto;
    color: #7ed8f0;
    font-size: 10px;
    font-weight: 900;
  }

  .konmask-neon-home .mobile-action-bar a:nth-child(1)::before {
    content: "Q";
  }

  .konmask-neon-home .mobile-action-bar a:nth-child(2)::before {
    content: "WA";
  }

  .konmask-neon-home .mobile-action-bar a:nth-child(3)::before {
    content: "TEL";
  }

  .konmask-neon-home .mobile-action-bar a:nth-child(4)::before {
    content: "@";
  }

  .konmask-neon-home .mobile-action-bar .mobile-action-primary {
    color: #ffffff;
    background: #0b5f89;
    border-color: rgba(126, 216, 240, .45);
  }

  .konmask-neon-home .footer-shell {
    padding-bottom: 74px;
  }
}

/* Mobile brand section refinement: make the brand grid feel like a fast chooser, not another hero block. */
@media (max-width: 760px) {
  .konmask-neon-home .brand-quick-search {
    padding-top: 30px !important;
    padding-bottom: 62px !important;
    gap: 16px;
  }

  .konmask-neon-home .brand-quick-search .section-kicker {
    margin-bottom: 9px;
    font-size: 11px;
    line-height: 1.2;
    letter-spacing: .06em;
  }

  .konmask-neon-home .brand-quick-search h2 {
    max-width: 330px;
    font-size: clamp(26px, 7.2vw, 29px) !important;
    line-height: 1.08 !important;
    letter-spacing: 0;
  }

  .konmask-neon-home .brand-chip-grid {
    gap: 8px;
  }

  .konmask-neon-home .brand-chip-grid a {
    min-height: 104px;
    padding: 11px 10px;
    box-shadow: 0 10px 20px rgba(13, 23, 48, .045);
  }

  .konmask-neon-home .brand-chip-grid img {
    height: 36px;
    margin-bottom: 9px;
  }

  .konmask-neon-home .brand-chip-grid span {
    font-size: 14px;
    line-height: 1.08;
  }

  .konmask-neon-home .brand-chip-grid b {
    margin-top: 5px;
    font-size: 10.5px;
  }
}
