
:root {
  --r: #e6000f;
  --rd: #c4000d;
  --rl: #ff1a2a;
  --bk: #0a0a0a;
  --g9: #1a1a1a;
  --g8: #222;
  --g7: #333;
  --g6: #555;
  --g5: #6e6e6e;
  --g4: #999;
  --g3: #b0b0b0;
  --g2: #ddd;
  --g1: #efefef;
  --g0: #f7f7f8;
  --w: #fff;
  --f: 'Plus Jakarta Sans', 'DM Sans', system-ui, -apple-system, sans-serif;
  --e: cubic-bezier(.25, .1, .25, 1);
  --mx: 1280px;
  --radius: 0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.12);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
a.nk, a.nddi, a.nddi-sub, a.ml, a.ml.su, .ftc a, .nl { text-decoration: none; cursor: pointer; }
a.nc { text-decoration: none; cursor: pointer; }
a.nl { display: block; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--f);
  color: var(--bk);
  background: var(--w);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.65;
  overflow-x: hidden;
  font-size: 1rem;
}
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--g0); }
::-webkit-scrollbar-thumb { background: var(--g3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--g5); }
button { cursor: pointer; font-family: var(--f); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }

.tb {
  height: 4px;
  background: var(--r);
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
}

.nav {
  position: fixed;
  top: 4px; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 clamp(16px, 3vw, 40px);
  border-bottom: 1px solid var(--g1);
  transition: box-shadow .3s, background .3s;
}

.nav-inner {
  width: 100%;
  max-width: var(--mx);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav.sh {
  box-shadow: 0 2px 20px rgba(0,0,0,.06);
}

.nl {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  text-decoration: none;
}
.nl-b {
  width: 48px; height: 48px;
  background: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--w);
  letter-spacing: -.02em;
  transition: background .3s;
}
.nl:hover .nl-b { background: var(--rd); }
.nl-t {
  font-weight: 800;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  line-height: 1.15;
}
.nl-t span {
  display: block;
  font-weight: 400;
  font-size: .68rem;
  color: var(--g5);
  letter-spacing: .04em;
  text-transform: none;
}

.nks {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2px;
}
.nk {
  padding: 10px 18px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--g7);
  background: none;
  border: none;
  position: relative;
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: 5px;
  letter-spacing: -.01em;
}
.nk:hover, .nk.a { color: var(--r); }
.nk::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 18px; right: 18px;
  height: 2px;
  background: var(--r);
  transform: scaleX(0);
  transition: transform .3s var(--e);
}
.nk:hover::after, .nk.a::after { transform: scaleX(1); }

.nc {
  margin-left: 12px;
  padding: 11px 28px;
  background: var(--bk);
  color: var(--w);
  border: none;
  font-weight: 700;
  font-size: .84rem;
  letter-spacing: .01em;
  transition: all .3s var(--e);
}
.nc:hover {
  background: var(--r);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(230,0,15,.2);
}

.ndd { position: relative; }
.nddm {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 240px;
  background: var(--w);
  border: 1px solid var(--g1);
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all .25s var(--e);
  z-index: 10;
}
.ndd:hover .nddm {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nddi {
  display: block;
  width: 100%;
  padding: 8px 20px;
  font-size: .875rem;
  font-weight: 500;
  color: var(--g6);
  background: none;
  border: none;
  text-align: left;
  transition: all .2s;
  border-left: 3px solid transparent;
}
.nddi:hover, .nddi.a {
  background: var(--g0);
  color: var(--r);
  border-left-color: var(--r);
}

.nddi-sub {
  padding-left: 32px;
  font-size: .875rem;
  color: var(--g6);
}

.nh { display: none; background: none; border: none; padding: 6px; }
.nh svg { width: 26px; height: 26px; }

.mp {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 360px;
  max-width: 92vw;
  background: var(--w);
  z-index: 2000;
  transform: translateX(100%);
  transition: transform .4s var(--e);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.mp.op { transform: translateX(0); }
.mo {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: all .3s;
}
.mo.sh { opacity: 1; visibility: visible; }
.mh {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--g1);
}
.mc { background: none; border: none; padding: 6px; }
.ml {
  display: block;
  padding: 11px 28px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--g6);
  border-bottom: 1px solid var(--g1);
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
  width: 100%;
  text-align: left;
  font-family: var(--f);
  transition: color .2s;
}
.ml:hover, .ml.a { color: var(--r); }
.ml.su {
  padding-left: 40px;
  font-weight: 500;
  font-size: .92rem;
  color: var(--g6);
}
.ml.su.a { color: var(--r); }
.mob-acc { border-bottom: 1px solid var(--g1); }
.mob-acc-btn { display: flex; align-items: center; justify-content: space-between; border-bottom: none !important; }
.mob-acc-ico { font-size: 20px; transition: transform .3s var(--e); color: var(--g4); }
.mob-acc-panel { max-height: 0; overflow: hidden; transition: max-height .35s var(--e); }
.mob-acc-panel.open { max-height: 600px; }
.mob-acc-panel .ml.su { border-bottom: 1px solid var(--g1); }
.mob-acc-panel .ml.su:last-child { border-bottom: none; }

@media(max-width: 1080px) {
  .nks { display: none; }
  .nh { display: block; }
}

.pw { animation: fi .5s var(--e) forwards; }
@keyframes fi {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  background: var(--bk);
  overflow: hidden;
  padding-top: 76px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, #080810, #12122a 40%, #0d0d18 80%);
}
.hero-bg img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 130%;
  object-fit: cover;
  opacity: .25;
  mix-blend-mode: luminosity;
  will-change: transform;
}
.hero-gr {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(230,0,15,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(230,0,15,.02) 1px, transparent 1px);
  background-size: 80px 80px;
}
.hero-gd {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(0,0,0,.7), transparent);
}
.hero-in {
  position: relative;
  z-index: 2;
  max-width: var(--mx);
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px) clamp(56px, 7vw, 96px);
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 56px;
  align-items: end;
}
.hero h1 {
  font-size: clamp(2.6rem, 5.2vw, 4.2rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--w);
  letter-spacing: -.035em;
  margin-bottom: 22px;
}
.hero h1 span { color: var(--r); }
.hero-p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.72);
  max-width: 540px;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 30px;
}
.hero-sm {
  font-size: .95rem;
  color: rgba(255,255,255,.55);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 36px;
  font-weight: 300;
}
.hbs { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-size: .9rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-family: var(--f);
  transition: all .3s var(--e);
  text-decoration: none;
  letter-spacing: .01em;
}
.br { background: var(--r); color: var(--w); }
.br:hover {
  background: var(--rd);
  transform: translateY(-2px);
}
.bw { background: transparent; color: var(--w); border: 2px solid rgba(255,255,255,.18); }
.bw:hover { border-color: var(--w); background: rgba(255,255,255,.04); }
.bb { background: var(--bk); color: var(--w); }
.bb:hover { background: var(--r); transform: translateY(-2px); }
.bwh { background: var(--w); color: var(--bk); }
.bwh:hover { background: var(--g1); }

.hst {
  display: flex;
  flex-wrap: wrap;
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.08);
}
.hs {
  padding: 32px 28px;
  border-right: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  min-width: 0;
  flex: 1 1 30%;
  text-align: center;
  transition: background .3s, transform .3s, box-shadow .3s;
  cursor: default;
}
.hs:nth-child(3n) { border-right: none; }
.hs:nth-child(n+4) { border-bottom: none; }
.hs:hover {
  background: rgba(255,255,255,.08);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0,0,0,.35);
}
.hs .material-symbols-outlined {
  font-size: 36px;
  color: var(--r);
  display: block;
  margin-bottom: 10px;
}
.hs strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--w);
  line-height: 1.2;
}
.hs .hs-sub {
  font-size: .65rem;
  color: rgba(255,255,255,.38);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  margin-top: 4px;
  display: block;
}

@media(max-width: 960px) {
  .hero-in { grid-template-columns: 1fr; }
  .hst { flex-wrap: wrap; }
  .hs { flex: 1 1 30%; padding: 24px 18px; }
}

@media (hover: none), (pointer: coarse), (max-width: 1024px) {
  .hero-bg img {
    height: 100%;
    mix-blend-mode: normal;
    opacity: .28;
    will-change: auto;
    transform: none !important;
  }
  .hst {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(255,255,255,.06);
  }
  .nav {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

.sec {
  padding: clamp(56px, 9vw, 108px) clamp(20px, 4vw, 56px);
}
.si { max-width: var(--mx); margin: 0 auto; }
.sec-xonly {
  padding-top: 0;
  padding-bottom: 0;
}

.sec-tight-top {
  padding-top: clamp(40px, 6vw, 72px);
}

.sec-tight-bottom {
  padding-bottom: clamp(32px, 5vw, 56px);
}

.sec-tight-bottom .fb,
.sec-tight-bottom .fbr {
  margin-bottom: 0;
}

.sd { background: var(--bk); color: var(--w); }
.sg { background: var(--g0); }

.sl {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--r);
  margin-bottom: 16px;
}
.sl::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--r);
}

.st {
  font-size: clamp(1.85rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.025em;
  margin-bottom: 14px;
}

.sde {
  font-size: 1.05rem;
  color: var(--g5);
  max-width: 620px;
  line-height: 1.75;
  font-weight: 400;
}
.sd .sde { color: rgba(255,255,255,.42); }

.shr {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: clamp(24px, 3vw, 32px);
}
.shr + .fb,
.shr + .fbr {
  margin-top: 0;
}

.cg4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0;
  border: 1px solid var(--g1);
}
.cg5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0;
  border: 1px solid var(--g1);
}
.cd {
  background: var(--w);
  border-right: 1px solid var(--g1);
  border-bottom: 1px solid var(--g1);
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  transition: background .3s;
  cursor: default;
}
a.cd { cursor: pointer; text-decoration: none; color: inherit; }
.cd::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--r);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--e);
}
.cd:hover::before { transform: scaleX(1); }
.cd:hover { background: var(--g0); }

.cd-ic {
  width: 56px; height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--g0);
  margin-bottom: 18px;
  transition: background .25s;
}
.cd:hover .cd-ic { background: rgba(230,0,15,.09); }

.cd h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
  letter-spacing: -.01em;
}
.cd p {
  font-size: .92rem;
  color: var(--g5);
  line-height: 1.65;
}

.cd-hl {
  background: var(--w);
  border: 1px solid var(--g1);
  padding: 36px 30px;
  cursor: default;
  position: relative;
  overflow: hidden;
  transition: all .35s var(--e);
}
.cd-hl::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--r);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--e);
}
.cd-hl:hover::before { transform: scaleX(1); }
.cd-hl:hover {
  background: var(--g0);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.cd-hl-ic {
  width: 64px; height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--g0);
  margin-bottom: 20px;
  transition: background .25s;
}
.cd-hl:hover .cd-hl-ic { background: rgba(230,0,15,.09); }

.cd-hl h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -.01em;
}
.cd-hl p {
  font-size: .92rem;
  color: var(--g5);
  line-height: 1.65;
  margin-bottom: 18px;
}
.pl {
  font-size: .84rem;
  font-weight: 700;
  color: var(--r);
  background: none;
  border: none;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--f);
  transition: gap .3s var(--e);
}
.cd-hl:hover .pl { gap: 10px; }

.fb {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: clamp(32px, 4vw, 48px);
  max-width: var(--mx);
  margin: clamp(40px, 6vw, 72px) auto;
}
.fbr {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: clamp(32px, 4vw, 48px);
  max-width: var(--mx);
  margin: clamp(40px, 6vw, 72px) auto;
}

.fb-stack {
  grid-template-columns: 1fr !important;
}
.fb-stack .fbi {
  order: -1;
  min-height: clamp(220px, 36vw, 420px);
  margin-top: 0;
  margin-bottom: 0;
}
.fb-stack .fbt {
  padding: 0 0 24px;
}

.fbi {
  min-height: 180px;
  min-width: 0;
  position: relative;
  overflow: hidden;
  margin-top: clamp(8px, 1vw, 12px);
  margin-bottom: clamp(8px, 1vw, 12px);
}
.fbi img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pan-x-img {
  position: absolute !important;
  top: -5% !important;
  left: 0 !important;
  height: 110% !important;
  width: auto !important;
  min-width: 115% !important;
  max-width: none !important;
  object-fit: cover !important;
  inset: auto !important;
  will-change: transform;
}
.fbii {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.fbs {
  background: var(--g1);
  position: relative;
  overflow: hidden;
}
.fbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fbs.bg { grid-row: 1/3; }

.fbt {
  padding: clamp(16px, 2vw, 24px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.fbt h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 14px;
}
.fbt p {
  font-size: 1rem;
  color: var(--g5);
  line-height: 1.75;
  margin-bottom: 20px;
}
.fbt > :last-child { margin-bottom: 0; }
.fbl {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.fbli {
  display: flex;
  gap: 12px;
  font-size: .92rem;
  color: var(--g7);
  line-height: 1.55;
  font-weight: 500;
}
.fbli svg { flex-shrink: 0; margin-top: 2px; stroke: var(--r); }

@media(max-width: 1024px) {
  .fb { grid-template-columns: 1fr; }
  .fb .fbi { order: -1; }
  .fbr { grid-template-columns: 1fr; }
  .fbr .fbi { order: -1; }
  .fbi {
    min-height: clamp(220px, 36vw, 340px);
    margin-top: 0;
    margin-bottom: 0;
  }
  .fb, .fbr { margin: clamp(24px, 4vw, 40px) auto; }
  .fbt { padding: 0 20px 24px; }
}

@media(max-width: 1024px) {
  .pan-x-img {
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    min-width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    transform: none !important;
  }
}

.sr {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--g1);
  border-bottom: 1px solid var(--g1);
  max-width: var(--mx);
  width: 100%;
  margin: 0 auto;
}
.sri {
  min-width: 0;
  padding: 42px 32px;
  border-right: 1px solid var(--g1);
  text-align: center;
}
.sri:last-child { border-right: none; }
.sri strong {
  display: block;
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -.03em;
}
.sri span {
  font-size: .78rem;
  color: var(--g5);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 600;
}

.sri strong,
.sri span {
  overflow-wrap: normal;
  word-break: normal;
}

.sr-home .sri strong {
  font-size: clamp(2rem, 4.2vw, 2.6rem);
}

@media(max-width: 1280px) {
  .sr-home {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sr-home .sri {
    border-bottom: 1px solid var(--g1);
    padding: 34px 24px;
  }
  .sr-home .sri strong {
    font-size: clamp(2rem, 3.4vw, 2.45rem);
  }
  .sr-home .sri span {
    font-size: .74rem;
  }
  .sr-home .sri:nth-child(2n) {
    border-right: none;
  }
  .sr-home .sri:nth-last-child(-n+2) {
    border-bottom: none;
  }
}

@media(max-width: 700px) {
  .sr-home {
    grid-template-columns: 1fr;
  }
  .sr-home .sri {
    border-right: none;
    border-bottom: 1px solid var(--g1);
  }
  .sr-home .sri:last-child {
    border-bottom: none;
  }
}

@media(max-width: 768px) {
  .sr { grid-template-columns: 1fr 1fr; }
  .sri { border-bottom: 1px solid var(--g1); }
}

.dh {
  padding: clamp(110px, 14vw, 160px) clamp(20px, 4vw, 56px) clamp(50px, 7vw, 80px);
  background: var(--bk);
  position: relative;
  overflow: hidden;
}
.dh::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(230,0,15,.07), transparent 50%);
  z-index: 1;
}
.dh-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.dh-img img {
  width: 100%;
  height: 130%;
  object-fit: cover;
  opacity: .18;
  filter: saturate(.3);
  will-change: transform;
}

.pj-img {
  width: 100%;
  height: 180px;
  overflow: hidden;
  margin-bottom: 16px;
}
.pj-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--e);
}
.cd:hover .pj-img img {
  transform: scale(1.05);
}

.about-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  margin-top: 28px;
  border: 1px solid var(--g1);
}
.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dhi {
  max-width: var(--mx);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.dbk {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.3);
  font-size: .84rem;
  font-weight: 600;
  background: none;
  border: none;
  font-family: var(--f);
  margin-bottom: 20px;
  transition: color .2s;
}
.dbk:hover { color: var(--w); }
.dtg {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(230,0,15,.12);
  color: var(--r);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 16px;
}
.dh h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  color: var(--w);
  line-height: 1.08;
  margin-bottom: 16px;
  letter-spacing: -.025em;
}
.dh p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.48);
  max-width: 660px;
  line-height: 1.75;
  font-weight: 300;
}

.df {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0;
  border: 1px solid var(--g1);
  margin-top: 44px;
}
.dfi {
  padding: 30px 26px;
  border-right: 1px solid var(--g1);
  border-bottom: 1px solid var(--g1);
  transition: background .2s;
}
.dfi:hover { background: var(--g0); }
.dfi h4 {
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.dfi h4 svg { stroke: var(--r); flex-shrink: 0; }
.dfi p {
  font-size: .88rem;
  color: var(--g5);
  line-height: 1.6;
}

.dsp {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0;
  border: 1px solid var(--g1);
  border-top: none;
  background: var(--g0);
}
.dsp > div {
  padding: 24px;
  border-right: 1px solid var(--g1);
}
.dsp h5 {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--g5);
  font-weight: 700;
  margin-bottom: 4px;
}
.dsp p {
  font-size: 1rem;
  font-weight: 700;
}

.plg {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0;
  border: 1px solid rgba(255,255,255,.08);
  margin-top: 48px;
}
.plc {
  padding: 48px 32px;
  border-right: 1px solid rgba(255,255,255,.08);
  position: relative;
  overflow: hidden;
  transition: background .3s;
}
.plc::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--r);
  transform: scaleX(0);
  transition: transform .4s var(--e);
}
.plc:hover::before { transform: scaleX(1); }
.plc:hover { background: rgba(255,255,255,.03); }
.pln {
  font-size: 3.2rem;
  font-weight: 800;
  color: rgba(230,0,15,.15);
  line-height: 1;
  margin-bottom: 16px;
  transition: color .4s var(--e);
}
.plc:hover .pln { color: var(--r); }
.plc h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.plc p {
  font-size: .9rem;
  color: rgba(255,255,255,.38);
  line-height: 1.65;
}

.sd-highlight {
  background: var(--g0);
  border-radius: 12px;
  padding: 28px 32px;
}
.sd-highlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 32px;
}
.sd-hi { display: flex; gap: 10px; align-items: flex-start; }
.sd-hi .material-symbols-outlined { font-size: 7px; color: var(--r); margin-top: 7px; flex-shrink: 0; }
.sd-hi h4 { font-size: .95rem; font-weight: 700; margin-bottom: 3px; }
.sd-hi p { font-size: .88rem; color: var(--g5); line-height: 1.55; }

.cta-band {
  background: var(--bk);
}
.sec:has(.cta-band) {
  padding-top: 48px;
}
.cta-inner {
  max-width: var(--mx);
  margin: 0 auto;
  padding: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.cta-band h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--w);
  letter-spacing: -.01em;
}
.cta-band p {
  color: rgba(255,255,255,.38);
  font-size: .92rem;
  margin-top: 4px;
}

.ctg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 48px;
}
.ctb {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.ctl {
  display: flex;
  gap: 20px;
  align-items: stretch;
}
.cti {
  width: 56px;
  min-width: 56px;
  background: var(--g0);
  border: 1px solid var(--g1);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 12px;
  flex-shrink: 0;
}
.cti svg { stroke: var(--r); }
.ctl h4 {
  font-size: .92rem;
  font-weight: 700;
  margin-bottom: 3px;
}
.ctl p, .ctl a {
  font-size: .9rem;
  color: var(--g5);
  text-decoration: none;
  line-height: 1.6;
}
.ctl a:hover { color: var(--r); }

.cf {
  background: var(--g0);
  border: 1px solid var(--g1);
  padding: 36px;
}
.cf h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.fr {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.fg {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.fg.fu { grid-column: 1 / -1; }
.fg label {
  font-size: .76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--g7);
}
.fg input, .fg textarea, .fg select {
  padding: 12px 16px;
  border: 1px solid var(--g1);
  background: var(--w);
  font-family: var(--f);
  font-size: .9rem;
  color: var(--bk);
  outline: none;
  transition: border-color .2s;
}
.fg input::placeholder, .fg textarea::placeholder { color: var(--g2); }
.fg input:focus, .fg textarea:focus, .fg select:focus {
  border-color: var(--r);
}
.fg textarea { min-height: 100px; resize: vertical; }

@media(max-width: 768px) {
  .ctg, .fr { grid-template-columns: 1fr; }
}

.rc {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0 48px;
}
.rch {
  padding: 12px 24px;
  border: 1px solid var(--g1);
  font-size: .84rem;
  font-weight: 600;
  color: var(--g7);
  background: var(--w);
  transition: all .3s;
  cursor: default;
}
.rch:hover {
  border-color: var(--r);
  color: var(--r);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.rg {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0;
  border: 1px solid var(--g1);
}
.rs {
  padding: 32px 24px;
  border-right: 1px solid var(--g1);
  border-bottom: 1px solid var(--g1);
  text-align: center;
  transition: background .2s;
}
.rs:hover { background: var(--g0); }
.rsi { font-size: 2rem; margin-bottom: 12px; }
.rs h4 { font-size: .92rem; font-weight: 700; }
.rs p { font-size: .78rem; color: var(--g5); margin-top: 4px; }

.tlg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 48px;
}
.tlc h3 {
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -.01em;
}
.tlc p {
  font-size: .95rem;
  color: var(--g5);
  line-height: 1.8;
  margin-bottom: 12px;
}
.tl {
  position: relative;
  padding-left: 30px;
}
.tl::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 4px;
  bottom: 4px;
  width: 2px;
  background: var(--g1);
}
.ti {
  padding: 12px 0;
  position: relative;
}
.td {
  position: absolute;
  left: -30px;
  top: 16px;
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 2px solid var(--g1);
  background: var(--w);
  transition: all .3s;
}
.ti:hover .td {
  border-color: var(--r);
  background: var(--r);
}
.ty {
  font-size: .74rem;
  font-weight: 700;
  color: var(--r);
  letter-spacing: .08em;
}
.ti h4 {
  font-size: .95rem;
  font-weight: 700;
  margin: 3px 0;
}
.ti p {
  font-size: .86rem;
  color: var(--g5);
  line-height: 1.55;
}

@media(max-width: 768px) {
  .tlg { grid-template-columns: 1fr; }
}

.comp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0;
  border: 1px solid var(--g1);
  margin-top: 40px;
}
.comp-card {
  padding: 32px 28px;
  border-right: 1px solid var(--g1);
  border-bottom: 1px solid var(--g1);
  background: var(--w);
  transition: background .2s;
}
.comp-card:hover { background: var(--g0); }
.comp-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.comp-card .comp-loc {
  font-size: .76rem;
  color: var(--g4);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 12px;
}
.comp-card p {
  font-size: .88rem;
  color: var(--g5);
  line-height: 1.6;
}

.foot {
  background: var(--bk);
  padding: 52px clamp(20px, 4vw, 56px) 24px;
  color: rgba(255,255,255,.42);
}
.fti { max-width: var(--mx); margin: 0 auto; }
.ftg {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.ftb p {
  font-size: .88rem;
  line-height: 1.75;
  margin-top: 16px;
  max-width: 300px;
}
.ftc h4 {
  color: var(--w);
  font-size: .74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 16px;
}
.ftc ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.ftc button {
  color: rgba(255,255,255,.35);
  font-size: .88rem;
  background: none;
  border: none;
  font-family: var(--f);
  cursor: pointer;
  text-align: left;
  padding: 0;
  transition: color .2s;
}
.ftc button:hover { color: var(--w); }
.ftc a {
  color: rgba(255,255,255,.35);
  font-size: .88rem;
  font-family: var(--f);
  transition: color .2s;
}
.ftc a:hover { color: var(--w); }
.ftc span {
  color: rgba(255,255,255,.35);
  font-size: .88rem;
  font-family: var(--f);
}
.fbo {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: .78rem;
}
.fbo a {
  color: rgba(255,255,255,.35);
  text-decoration: none;
  transition: color .2s;
}
.fbo a:hover { color: var(--w); }

@media(max-width: 768px) {
  .ftg { grid-template-columns: 1fr 1fr; gap: 24px; }
  .fbo { flex-direction: column; gap: 10px; text-align: center; align-items: center; }
}

.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 40;
  vertical-align: middle;
  line-height: 1;
}
.cd-ic .material-symbols-outlined,
.cd-hl-ic .material-symbols-outlined { font-size: 36px; color: var(--r); }
.dfi h4 .material-symbols-outlined { font-size: 20px; color: var(--r); }
.cti .material-symbols-outlined { font-size: 36px; color: var(--r); }
.fbli .material-symbols-outlined { font-size: 18px; color: var(--r); flex-shrink: 0; margin-top: 2px; }
.rs .material-symbols-outlined { font-size: 36px; color: var(--r); margin-bottom: 10px; display: block; }

.nav-inner > .nl { flex-shrink: 0; }
.nks {
  gap: 0;
  flex-shrink: 1;
  min-width: 0;
}
.nk {
  padding: 10px 12px;
  font-size: .82rem;
  white-space: nowrap;
}
.nc {
  margin-left: 8px;
  padding: 10px 20px;
  font-size: .82rem;
  white-space: nowrap;
  flex-shrink: 0;
}
@media(max-width: 1200px) {
  .nk { padding: 10px 9px; font-size: .78rem; }
  .nc { padding: 9px 16px; }
}
@media(max-width: 1080px) {
  .nks { display: none; }
  .nh { display: block; }
}

.srv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--g1);
  margin-top: 40px;
}
.srv-card {
  padding: 40px 32px;
  border-right: 1px solid var(--g1);
  border-bottom: 1px solid var(--g1);
  background: var(--w);
  position: relative;
  overflow: hidden;
  transition: background .3s, transform .3s, box-shadow .3s;
}
.srv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--r);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s cubic-bezier(.25,.1,.25,1);
}
.srv-card:hover::before { transform: scaleX(1); }
.srv-card:hover { background: var(--g0); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.srv-card .srv-ic {
  width: 60px; height: 60px;
  background: var(--g0);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: background .25s;
}
.srv-card:hover .srv-ic { background: rgba(230,0,15,.09); }
.srv-card .srv-ic .material-symbols-outlined { font-size: 32px; color: var(--r); }
.srv-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; letter-spacing: -.01em; }
.srv-card p { font-size: .9rem; color: var(--g5); line-height: 1.65; margin-bottom: 14px; }
.srv-card ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.srv-card ul li {
  font-size: .85rem; color: var(--g6);
  display: flex; align-items: flex-start; gap: 8px; line-height: 1.5;
}
.srv-card ul li::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--r);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}

@media(max-width: 900px) { .srv-grid { grid-template-columns: repeat(3, 1fr); } }
@media(max-width: 768px) { .srv-grid { grid-template-columns: 1fr; } .srv-card { border-right: none; } }

.proc-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border: 1px solid var(--g1);
  margin-top: 48px;
}
@media(max-width: 900px) { .proc-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width: 500px) { .proc-grid { grid-template-columns: 1fr; } }
.proc-step {
  padding: 36px 24px;
  border-right: 1px solid var(--g1);
  position: relative;
}
.proc-step::after {
  content: attr(data-arrow);
  position: absolute;
  right: -14px; top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  color: var(--r);
  z-index: 1;
  display: none;
}
.proc-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(230,0,15,.12);
  line-height: 1;
  margin-bottom: 12px;
}
.proc-step h4 { font-size: .95rem; font-weight: 700; margin-bottom: 8px; }
.proc-step p { font-size: .85rem; color: var(--g5); line-height: 1.6; }

.kt3 > div {
  position: relative;
  overflow: hidden;
  transition: background .3s, transform .3s, box-shadow .3s;
}
.kt3 > div::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--r);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--e);
}
.kt3 > div:hover::before { transform: scaleX(1); }
.kt3 > div:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.sector-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0;
  border: 1px solid var(--g1);
  margin-top: 40px;
}
.sector-item {
  padding: 28px 20px;
  background: #fff;
  border-right: 1px solid var(--g1);
  border-bottom: 1px solid var(--g1);
  text-align: center;
  transition: background .2s, transform .18s ease, box-shadow .18s ease;
  cursor: default;
  -webkit-tap-highlight-color: transparent;
}
.sector-item:hover { background: var(--g0); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.sector-item-inv {
  background: var(--g0);
  border-color: rgba(17,24,39,.055);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.42);
}
.sector-item-inv:hover {
  background: #fff;
  transform: translateY(-3px);
  box-shadow: 0 4px 20px rgba(17,24,39,.05), inset 0 1px 0 rgba(255,255,255,.55);
}
.sector-item .material-symbols-outlined { font-size: 32px; color: var(--r); display: block; margin-bottom: 10px; }
.sector-item h4 { font-size: .88rem; font-weight: 700; }
.sector-item p { font-size: .76rem; color: var(--g5); margin-top: 4px; }

@media (hover: none), (pointer: coarse) {
  .sector-item:hover {
    background: #fff;
    transform: none;
    box-shadow: none;
  }

  .sector-item-inv:hover {
    background: var(--g0);
    transform: none;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.42);
  }

  .sector-item:active,
  .sector-item.is-pressed {
    background: var(--g0);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
  }

  .sector-item-inv:active,
  .sector-item-inv.is-pressed {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(17,24,39,.05), inset 0 1px 0 rgba(255,255,255,.55);
  }

  .hs:hover {
    background: transparent;
    transform: none;
    box-shadow: none;
  }

  .hs:active,
  .hs.is-pressed {
    background: rgba(255,255,255,.08);
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0,0,0,.35);
  }
}

.client-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 40px;
  align-items: center;
}
.client-item {
  padding: 10px 20px;
  border: 1px solid var(--g2);
  font-weight: 600;
  font-size: .85rem;
  color: var(--g6);
  letter-spacing: .03em;
  transition: all .2s;
  cursor: default;
}
.client-item:hover { color: var(--r); border-color: var(--r); background: transparent; }

.prod-detail {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  border: 1px solid var(--g1);
  margin-bottom: 4px;
}
.prod-detail-img {
  min-height: 320px;
  overflow: hidden;
  position: relative;
  background: var(--g1);
}
.prod-detail-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.prod-detail-txt {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--g1);
}
.prod-detail-txt h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 10px; }
.prod-detail-txt p { font-size: .92rem; color: var(--g5); line-height: 1.7; margin-bottom: 16px; }
.prod-detail-txt ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.prod-detail-txt ul li {
  font-size: .88rem; color: var(--g7);
  display: flex; gap: 10px; align-items: flex-start;
}
.prod-detail-txt ul li .material-symbols-outlined { font-size: 16px; color: var(--r); margin-top: 1px; flex-shrink: 0; }
@media(max-width: 768px) { .prod-detail { grid-template-columns: 1fr; } }

.hero { width: 100%; }

.logo-img {
  height: 54px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: opacity .25s;
}
.nl:hover .logo-img { opacity: .8; }

.logo-img-foot {
  height: 52px;
  width: auto;
}

.ref-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 32px 0 28px;
}
.rf-btn {
  padding: 10px 22px;
  border: 1px solid var(--g2);
  background: transparent;
  font-family: var(--f);
  font-size: .85rem;
  font-weight: 600;
  color: var(--g5);
  cursor: pointer;
  transition: all .2s;
  letter-spacing: .02em;
}
.rf-btn:hover { border-color: var(--r); color: var(--r); }
.rf-btn.rf-active { background: var(--r); border-color: var(--r); color: #fff; }

.ref-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--g1);
  border: 1px solid var(--g1);
}
.ref-card {
  background: var(--w);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: opacity .25s, transform .25s;
}
.ref-card .pj-img {
  margin: -28px -24px 20px;
}
.ref-cat {
  font-size: .72rem;
  font-weight: 700;
  color: var(--r);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 8px;
}
.ref-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}
.ref-card p {
  font-size: .88rem;
  color: var(--g5);
  line-height: 1.6;
}

.ref-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.ref-list-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--g7);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--r);
}
.ref-list-title .material-symbols-outlined {
  font-size: 18px;
  color: var(--r);
}
.ref-list-items {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ref-list-items .client-item {
  border: none;
  padding: 6px 0;
  border-bottom: 1px solid var(--g1);
  font-size: .85rem;
  font-weight: 500;
  color: var(--g6);
}
.ref-list-items .client-item:hover { color: var(--r); border-bottom-color: var(--r); }

@media(max-width: 900px) {
  .ref-grid { grid-template-columns: repeat(2,1fr); }
  .ref-list-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media(max-width: 600px) {
  .ref-grid { grid-template-columns: 1fr; }
}

.ov-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.ov-card {
  background: var(--w);
  border: 1px solid var(--g1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all .35s var(--e);
}
.ov-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--r);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--e);
}
.ov-card:hover::before { transform: scaleX(1); }
.ov-card:hover {
  background: var(--g0);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.ov-card-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: var(--g1);
}
.ov-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--e);
}
.ov-card:hover .ov-card-img img { transform: scale(1.05); }
.ov-card-body { padding: 24px 28px 28px; }
.ov-card-ic {
  width: 56px; height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--g0);
  margin-bottom: 16px;
  transition: background .25s;
}
.ov-card-ic .material-symbols-outlined { font-size: 28px; color: var(--r); }
.ov-card:hover .ov-card-ic { background: rgba(230,0,15,.09); }
.ov-card-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -.01em;
}
.ov-card-body p {
  font-size: .88rem;
  color: var(--g5);
  line-height: 1.65;
  margin-bottom: 18px;
}
.ov-card .pl { pointer-events: none; }

@media(max-width: 900px) {
  .ov-grid { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width: 600px) {
  .ov-grid { grid-template-columns: 1fr; }
}

.pd-card {
  background: var(--g0);
  border: 1px solid var(--g1);
  overflow: hidden;
  margin-top: 40px;
}
.pd-card-imgs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  height: 280px;
}
.pd-card-imgs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pd-card-body { padding: 32px 36px 36px; }
.pd-card-ic {
  width: 56px; height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--w);
  margin-bottom: 18px;
}
.pd-card-ic .material-symbols-outlined { font-size: 28px; color: var(--r); }
.pd-card-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -.01em;
}
.pd-card-body > p {
  font-size: .92rem;
  color: var(--g5);
  line-height: 1.7;
  margin-bottom: 20px;
}
.pd-card-checks {
  margin-bottom: 22px;
}
.pd-card-checks li {
  font-size: .85rem;
  color: var(--g5);
  margin-bottom: 6px;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pd-card-checks li::before {
  content: '✓';
  color: var(--g6);
  font-weight: 600;
}
.pd-card .pl-link {
  font-size: .84rem;
  font-weight: 700;
  color: var(--r);
  background: none;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--f);
  cursor: pointer;
  transition: gap .3s var(--e);
}
.pd-card .pl-link:hover { gap: 10px; }

@media(max-width: 600px) {
  .pd-card-imgs { height: 180px; }
  .pd-card-body { padding: 24px 20px 28px; }
}

.pd-split-inner { display: grid; grid-template-columns: 1fr 1fr; }
.pd-split-img { position: relative; min-height: 440px; }
.pd-split-info { padding: 40px; display: flex; flex-direction: column; justify-content: center; }

.product-cta {
  margin-top: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--g1);
}
.product-cta-copy h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.product-cta-copy p {
  font-size: .85rem;
  color: var(--g5);
  margin-top: 8px;
}
.product-cta-btn {
  flex-shrink: 0;
}

@media(max-width: 960px) {

  .hero { min-height: 80vh; padding-top: 80px; }
  .hero h1 { font-size: clamp(2rem, 6vw, 3rem); }
  .hero-p { font-size: 1rem; }
  .hero-sm { font-size: .88rem; }
  .hst { flex-wrap: wrap; }
  .hs { flex: 1 1 30%; padding: 22px 16px; }
  .hs strong { font-size: .9rem; }
  .hs .material-symbols-outlined { font-size: 30px; }

  .dh { padding: 120px clamp(20px,4vw,40px) 50px; }
  .dh h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
  .dh p { font-size: 1rem; }

  .sec { padding: clamp(40px, 7vw, 80px) clamp(16px, 4vw, 40px); }
  .sec-tight-top { padding-top: clamp(32px, 5vw, 48px); }
  .sec-tight-bottom { padding-bottom: clamp(28px, 4vw, 44px); }
  .sec:has(.cta-band) { padding-top: 40px; }

  .st { font-size: clamp(1.5rem, 3.5vw, 2.2rem); }
  .st[style*="white-space"] { white-space: normal !important; }

  .shr { flex-direction: column; gap: 20px; align-items: flex-start; }
  .shr > div { width: 100%; }

  .sr { grid-template-columns: 1fr 1fr; }
  .sri { padding: 28px 20px; }
  .sri strong { font-size: 2rem; }

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

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

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

  .cg4, .cg5 { grid-template-columns: 1fr 1fr !important; }

  .btn { padding: 12px 24px; font-size: .85rem; }
}

@media(max-width: 640px) {
  .sd-highlight-grid { grid-template-columns: 1fr; }
  .sd-highlight { padding: 20px; }

  .hero { min-height: auto; padding-top: 100px; padding-bottom: 0; align-items: flex-start; }
  .hero-in {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 20px 40px;
  }
  .hero h1 { font-size: 2.6rem; margin-bottom: 16px; }
  .hero-p { font-size: .95rem; margin-bottom: 20px; }
  .hero-sm { display: none; }
  .hbs { flex-direction: column; gap: 10px; }
  .hbs .btn { width: 100%; justify-content: center; }
  .hst { flex-wrap: wrap; }
  .hs { flex: 1 1 45%; padding: 20px 14px; }
  .hs:nth-child(3n) { border-right: 1px solid rgba(255,255,255,.08); }
  .hs:nth-child(n+4) { border-bottom: 1px solid rgba(255,255,255,.08); }
  .hs:nth-child(2n) { border-right: none; }
  .hs:nth-child(n+5) { border-bottom: none; }
  .hs strong { font-size: .85rem; }
  .hs .hs-sub { font-size: .65rem; }
  .hs .material-symbols-outlined { font-size: 26px; margin-bottom: 8px; }

  .dh { padding: 100px 20px 40px; }
  .dh h1 { font-size: 1.7rem; }
  .dh p { font-size: .92rem; line-height: 1.6; }
  .dbk { font-size: .78rem; }

  .sec { padding: 40px 16px; }
  .sec-tight-top { padding-top: 28px; }
  .sec-tight-bottom { padding-bottom: 24px; }
  .sec:has(.cta-band) { padding-top: 32px; }
  .st { font-size: 1.4rem; }
  .sde { font-size: .88rem; }

  .shr { flex-direction: column; gap: 16px; align-items: flex-start; }
  .shr .btn { width: 100%; justify-content: center; }

  .pd-split-inner { grid-template-columns: 1fr !important; }
  .pd-split-img { min-height: 280px !important; }
  .pd-split-info { padding: 28px 20px !important; }

  .product-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding-top: 28px;
  }
  .product-cta-copy {
    width: 100%;
  }
  .product-cta-btn {
    align-self: flex-start;
    margin-top: 4px;
  }

  .df { grid-template-columns: 1fr; }
  .dfi { padding: 24px 20px; }

  .sr { grid-template-columns: 1fr 1fr; }
  .sri { padding: 24px 16px; }
  .sri strong { font-size: 1.8rem; }
  .sri span { font-size: .68rem; }

  .sector-grid { grid-template-columns: repeat(2, 1fr); }
  .sector-item { padding: 20px 14px; }
  .sector-item .material-symbols-outlined { font-size: 26px; }
  .sector-item h4 { font-size: .8rem; }
  .sector-item p { font-size: .7rem; }

  .client-strip { flex-wrap: wrap; gap: 10px; }
  .client-item { font-size: .78rem; padding: 8px 14px; }

  .ov-grid { grid-template-columns: 1fr; }
  .ov-card-img { height: 180px; }
  .ov-card-body { padding: 20px; }

  .srv-grid { grid-template-columns: 1fr; }
  .srv-card { padding: 28px 20px; }

  .cg4, .cg5 { grid-template-columns: 1fr !important; }
  .cd { padding: 28px 20px; }

  .fb, .fbr { grid-template-columns: 1fr; }
  .fbi { min-height: 180px; }
  .fbt { padding: 0 20px 32px; }
  .fbt h3 { font-size: 1.1rem; }
  .fbt p { font-size: .88rem; }

  .btn { padding: 12px 22px; font-size: .84rem; }

  .cta-inner { flex-direction: column; gap: 20px; text-align: center; }
  .cta-inner .btn { width: 100%; justify-content: center; }

  .tlg { grid-template-columns: 1fr; gap: 40px; }

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

  .ftg { grid-template-columns: 1fr; gap: 32px; }
  .fbo { flex-direction: column; gap: 12px; text-align: center; }

  .ref-grid { grid-template-columns: 1fr; }
  .ref-filter { flex-wrap: wrap; gap: 6px; }
  .rf-btn { font-size: .78rem; padding: 8px 14px; }

  .ref-list-grid { grid-template-columns: 1fr; gap: 32px; }

  div[style*="padding:0 48px"] { padding: 0 20px !important; }
  div[style*="grid-template-columns:repeat(4,1fr)"] { grid-template-columns: repeat(2, 1fr) !important; }
  div[style*="grid-template-columns:1fr 1fr;gap:20px 32px"] { grid-template-columns: 1fr !important; }

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


@media(max-width: 480px) {
  .sr-home {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sr-home .sri {
    padding: 22px 12px;
  }
  .sr-home .sri strong {
    font-size: clamp(1.22rem, 6.2vw, 1.55rem);
    line-height: .94;
    letter-spacing: -.02em;
  }
  .sr-home .sri span {
    font-size: .62rem;
    letter-spacing: .08em;
  }
  .sr-home .sri:nth-child(2n) {
    border-right: none;
  }
  .sr-home .sri:nth-last-child(-n+2) {
    border-bottom: none;
  }
}

@media(max-width: 420px) {
  .hero h1 { font-size: 1.7rem; }
  .hero-p { font-size: .88rem; }
  .dh h1 { font-size: 1.5rem; }
  .st { font-size: 1.25rem; }
  .hs { flex: 1 1 45%; }
  .sector-grid { grid-template-columns: 1fr 1fr; }
  .sr { grid-template-columns: 1fr 1fr; }
  .sri strong { font-size: 1.5rem; }
  .nav-inner { padding: 0 12px; }
  .logo-img { height: 44px; }
}

@media(max-width: 768px) {
  .sr .sri:nth-child(2n) { border-right: none; }
  .sr .sri:nth-last-child(-n+2) { border-bottom: none; }
}

@media(min-width: 641px) and (max-width: 1200px) {
  .df { grid-template-columns: 1fr 1fr; }
  .df .dfi:nth-child(2n) { border-right: none; }
  .df .dfi:nth-last-child(-n+2) { border-bottom: none; }

  .sector-grid { grid-template-columns: repeat(3, 1fr); }
  .sector-grid > .sector-item:nth-child(3n) { border-right: none; }
  .sector-grid > .sector-item:nth-last-child(-n+3) { border-bottom: none; }
}

@media(max-width: 640px) {
  .df .dfi {
    border-right: none;
    border-bottom: 1px solid var(--g1);
  }
  .df .dfi:last-child { border-bottom: none; }

  .sector-grid > .sector-item:nth-child(3n) { border-right: 1px solid var(--g1); }
  .sector-grid > .sector-item:nth-last-child(-n+3) { border-bottom: 1px solid var(--g1); }
  .sector-grid > .sector-item:nth-child(2n) { border-right: none; }
  .sector-grid > .sector-item:nth-last-child(-n+2) { border-bottom: none; }
}


.pd-thumb {
  transition: transform .2s, box-shadow .2s !important;
}
.pd-thumb:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
}
.pd-logo-box {
  transition: transform .2s, box-shadow .2s;
  border-radius: 6px;
  cursor: default;
}
.pd-logo-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.skip-link{
  position:absolute;
  left:16px;
  top:-48px;
  z-index:2000;
  padding:10px 14px;
  background:#111;
  color:#fff;
  border-radius:8px;
  text-decoration:none;
  transition:top .2s ease;
}
.skip-link:focus{ top:16px; }
.site-header{ position:relative; z-index:120; }
.site-main{ display:block; }
.site-footer{ display:block; }
.nav-toggle,.nav-close,.mob-acc-btn{ cursor:pointer; }
.product-menu-toggle{ display:inline-flex; align-items:center; gap:6px; }
.nav-icon-inline{ font-size:16px; vertical-align:middle; }
.logo-mobile{ height:36px; }
.hero-word-spacing{ word-spacing:.15em; }
.is-clickable{ cursor:pointer; }
.link-inherit{ color:inherit; text-decoration:none; }
.footer-links-inline{ display:flex; gap:20px; }
.mt-48{ margin-top:48px; }
.cta-section{
  text-align:center;
  padding-top:clamp(40px,6vw,72px);
  padding-bottom:clamp(40px,6vw,72px);
}
.cta-heading{
  color:#fff;
  max-width:900px;
  margin:0 auto 14px;
  white-space:nowrap;
}
.cta-copy{
  color:rgba(255,255,255,.38);
  margin:0 auto 32px;
  max-width:600px;
}
.btn-group-center{
  display:flex;
  gap:14px;
  justify-content:center;
  flex-wrap:wrap;
}
.ico-18{ font-size:18px; }
.ico-20{ font-size:20px; }
.ico-check{
  font-size:18px;
  color:var(--r);
  flex-shrink:0;
  margin-top:2px;
}
.pan-x-cover-wide{
  position:absolute;
  top:0;
  left:0;
  height:100%;
  width:auto;
  min-width:115%;
  max-width:none;
  object-fit:cover;
}
.pan-x-cover-tall{
  position:absolute;
  top:-5%;
  left:0;
  height:110%;
  width:auto;
  min-width:115%;
  max-width:none;
  object-fit:cover;
}
.dark-media{ background:#111; }

@media(max-width: 1024px){
  .pan-x-cover-wide,
  .pan-x-cover-tall{
    top:0 !important;
    left:0 !important;
    width:100% !important;
    min-width:100% !important;
    max-width:100% !important;
    height:100% !important;
    object-position:center center;
  }
}

@media(max-width: 640px){
  .cta-heading{
    white-space:normal;
  }
}

.inline-two-col,
.inline-four-col { min-width: 0; }

div[style*="grid-template-columns:1fr 1fr"],
div[style*="grid-template-columns:repeat(4,1fr)"],
div[style*="grid-template-columns: repeat(4,1fr)"] {
  min-width: 0;
}

div[style*="grid-template-columns:1fr 1fr"] > div,
div[style*="grid-template-columns:repeat(4,1fr)"] > div,
div[style*="grid-template-columns: repeat(4,1fr)"] > div {
  min-width: 0;
}

@media(max-width: 1080px) {
  div[style*="grid-template-columns:repeat(4,1fr)"],
  div[style*="grid-template-columns: repeat(4,1fr)"] {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  div[style*="grid-template-columns:1fr 1fr;gap:20px 32px"],
  div[style*="grid-template-columns:1fr 1fr; gap:20px 32px"],
  div[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    gap: 20px 24px !important;
  }
}

@media(max-width: 820px) {
  div[style*="grid-template-columns:repeat(4,1fr)"],
  div[style*="grid-template-columns: repeat(4,1fr)"] {
    grid-template-columns: 1fr !important;
  }

  div[style*="grid-template-columns:1fr 1fr;gap:20px 32px"],
  div[style*="grid-template-columns:1fr 1fr; gap:20px 32px"],
  div[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  div[style*="grid-template-columns:repeat(4,1fr)"] > div,
  div[style*="grid-template-columns: repeat(4,1fr)"] > div {
    border-right: none !important;
  }
}

html, body {
  width: 100%;
}

@media (max-width: 1024px) {
  html { scroll-behavior: auto; }

  .nav {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .hero {
    min-height: 80svh;
  }

  .hero-bg img,
  .dh-img img {
    height: 100% !important;
    transform: none !important;
    will-change: auto;
  }

  .fbi,
  .hero-bg,
  .dh-img {
    contain: layout paint;
  }

  .pan-x-img {
    will-change: auto !important;
  }
}

@media (max-width: 820px) {
  .product-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .product-cta-copy {
    width: 100%;
  }

  .product-cta-btn,
  .product-cta .btn,
  .fbt .btn,
  .cta-inner .btn {
    width: 100%;
    justify-content: center;
  }

  .pd-logo-box {
    width: 120px;
    height: 56px;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: auto;
  }

  .hero-bg img,
  .dh-img img {
    opacity: .2;
  }

  #pdc0-thumbs {
    gap: 6px !important;
  }

  #pdc0-thumbs .pd-thumb {
    width: 60px !important;
    height: 60px !important;
  }
}

@media (max-width: 420px) {
  .pd-logo-box {
    width: 104px;
    height: 48px;
    top: 10px !important;
    left: 10px !important;
  }

  #pdc0-thumbs {
    left: 10px !important;
    bottom: 10px !important;
  }

  #pdc0-thumbs .pd-thumb {
    width: 52px !important;
    height: 52px !important;
  }
}

.hero-in > *,
.fb > *,
.fbr > *,
.sr > *,
.df > *,
.ctg > *,
.fr > *,
.tlg > *,
.ftg > *,
.sector-grid > *,
.ov-grid > *,
.srv-grid > *,
.proc-grid > *,
.ref-grid > *,
.ref-list-grid > *,
.prod-detail > *,
.cg4 > *,
.cg5 > * {
  min-width: 0;
}

.navlinks,
.menu,
.btm,
.fbt,
.pd-copy,
.pd-split-copy,
.cta-inner,
.hero-copy {
  min-width: 0;
}

.sri strong,
.df h3,
.ref-copy h3,
.ov-card h3,
.srv-card h3,
.proc-step h3,
.sector-card h3,
.contact-card h3,
.pd-copy h2,
.pd-split-copy h2 {
  max-width: 100%;
}

@media (max-width: 1024px) {
  .hero-copy,
  .pd-copy,
  .pd-split-copy,
  .contact-copy,
  .ref-copy,
  .ov-copy {
    overflow-wrap: normal;
    word-break: normal;
  }
}

html,
body,
main,
#app {
  overflow-x: clip;
}

.sec-xonly,
.sec-xonly .fb,
.sec-xonly .fbr,
.sec-xonly .fbi,
.sec-xonly .fbs {
  overflow-x: clip;
}

.nav-inner,
.nddm,
.mp {
  overflow: visible;
}
.mp {
  overflow-y: auto;
}

.nh,
.nav-toggle {
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  border: 0;
  color: var(--g8);
  width: 48px;
  height: 48px;
  padding: 0;
  display: grid;
  place-items: center;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.nh .material-symbols-outlined,
.nav-toggle .material-symbols-outlined {
  position: relative;
  display: block;
  width: 30px;
  height: 22px;
  font-size: 0 !important;
  line-height: 0;
  color: var(--g8);
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 30px 2.5px;
}

.nh .material-symbols-outlined::before,
.nh .material-symbols-outlined::after,
.nav-toggle .material-symbols-outlined::before,
.nav-toggle .material-symbols-outlined::after {
  content: "";
  position: absolute;
  left: 0;
  width: 30px;
  height: 2.5px;
  border-radius: 999px;
  background: currentColor;
}

.nh .material-symbols-outlined::before,
.nav-toggle .material-symbols-outlined::before { top: 1px; }

.nh .material-symbols-outlined::after,
.nav-toggle .material-symbols-outlined::after { bottom: 1px; }

@media (max-width: 1024px) {
  .hero,
  .hero-bg,
  .hero-bg img {
    overflow: hidden;
  }

  .hero-bg,
  .hero-bg img,
  .dh-img,
  .dh-img img {
    pointer-events: none;
    -webkit-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    touch-action: pan-y;
  }

  .hero-bg img,
  .dh-img img {
    transform: none !important;
    transition: none !important;
    animation: none !important;
    height: 100% !important;
    min-height: 100%;
    top: 0 !important;
  }
}

.nh{
  -webkit-appearance:none;
  appearance:none;
  width:48px;
  height:48px;
  display:none;
  align-items:center;
  justify-content:center;
  padding:0;
  margin:0;
  border:none;
  background:transparent;
  color:var(--g7);
  -webkit-tap-highlight-color:transparent;
  touch-action:manipulation;
}
.nh .material-symbols-outlined{
  display:block;
  font-size:34px;
  line-height:1;
  color:inherit !important;
  font-variation-settings:'opsz' 40, 'wght' 320, 'FILL' 0, 'GRAD' 0;
}
.nh:hover,
.nh:focus,
.nh:focus-visible,
.mc:hover,
.mc:focus,
.mc:focus-visible{
  color:var(--g7);
  outline:none;
  box-shadow:none;
  background:transparent;
}
.mc{
  -webkit-tap-highlight-color:transparent;
  touch-action:manipulation;
}
.mc .material-symbols-outlined{
  font-size:30px;
  line-height:1;
  color:var(--g7) !important;
}

@media(max-width:1024px){
  .hero,
  .hero-bg,
  .hero-bg img{
    touch-action:pan-y;
    -webkit-user-select:none;
    user-select:none;
  }
  .hero-bg img{
    pointer-events:none;
    -webkit-user-drag:none;
    user-drag:none;
    backface-visibility:hidden;
    -webkit-backface-visibility:hidden;
    transform:none !important;
    transition:none !important;
    animation:none !important;
  }
}

.nav-toggle {
  display: none !important;
}

@media (max-width: 1080px) {
  .nav-toggle {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    flex: 0 0 48px;
  }
}

@media (min-width: 1081px) {
  .nav-toggle {
    display: none !important;
  }
}

.nh.nav-toggle {
  display: none !important;
}

@media (max-width: 1080px) {
  .nh.nav-toggle {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 0 0 48px !important;
  }
}

@media (min-width: 1081px) {
  .nh.nav-toggle {
    display: none !important;
  }
}

.nh,
.nav-toggle {
  width: 46px;
  height: 46px;
}

.nh .material-symbols-outlined,
.nav-toggle .material-symbols-outlined {
  width: 28px;
  height: 20px;
  background-size: 28px 2.25px;
}

.nh .material-symbols-outlined::before,
.nh .material-symbols-outlined::after,
.nav-toggle .material-symbols-outlined::before,
.nav-toggle .material-symbols-outlined::after {
  width: 28px;
  height: 2.25px;
}

@media (min-width: 768px) and (max-width: 1280px) {
  .hero,
  .hero-bg,
  .hero-bg img {
    overflow: hidden !important;
  }

  .hero-bg {
    transform: translateZ(0) !important;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  }

  .hero-bg img {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    transform: translate3d(0,0,0) scale(1) !important;
    transition: none !important;
    animation: none !important;
    will-change: auto !important;
    pointer-events: none !important;
    -webkit-user-drag: none;
    user-select: none;
  }
}

body[data-page="home"].home-hero-desktop .home-hero .hero-bg img {
  transform-origin: center center;
}

body[data-page="home"].home-hero-static .home-hero {
  position: relative !important;
  min-height: auto !important;
  display: block !important;
  align-items: initial !important;
  padding: clamp(120px, 14vw, 180px) clamp(20px, 4vw, 56px) clamp(60px, 8vw, 100px) !important;
  overflow: hidden !important;
}

body[data-page="home"].home-hero-static .home-hero .hero-bg {
  position: absolute !important;
  inset: 0 !important;
  overflow: hidden !important;
  transform: none !important;
  contain: none !important;
}

body[data-page="home"].home-hero-static .home-hero .hero-bg img {
  position: absolute !important;
  inset: 0 !important;
  left: 0 !important;
  top: 0 !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: center center !important;
  opacity: .22 !important;
  mix-blend-mode: normal !important;
  filter: saturate(.3) !important;
  transform: none !important;
  transition: none !important;
  animation: none !important;
  will-change: auto !important;
  contain: none !important;
  backface-visibility: visible !important;
  -webkit-backface-visibility: visible !important;
  pointer-events: none !important;
  -webkit-user-drag: none !important;
  user-select: none !important;
  touch-action: auto !important;
}

body[data-page="home"].home-hero-static .home-hero .hero-in {
  position: relative !important;
  z-index: 2 !important;
  max-width: var(--mx) !important;
  width: 100% !important;
  margin: 0 auto !important;
  padding: 0 clamp(20px, 4vw, 56px) !important;
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 48px !important;
  align-items: center !important;
}

@media (max-width: 640px) {
  body[data-page="home"].home-hero-static .home-hero {
    padding-top: 100px !important;
    padding-bottom: 40px !important;
  }

  body[data-page="home"].home-hero-static .home-hero .hero-in {
    gap: 32px !important;
    padding: 0 20px !important;
  }
}

@media (hover: none), (pointer: coarse) {
  div.cd:hover::before,
  a.cd:hover::before,
  div.cd-hl:hover::before,
  .srv-card:hover::before { transform: scaleX(0); }
  div.cd:hover,
  a.cd:hover { background: var(--w); }
  div.cd-hl:hover,
  .srv-card:hover {
    background: var(--w);
    transform: none;
    box-shadow: none;
  }
  div.cd:hover .cd-ic,
  a.cd:hover .cd-ic { background: var(--g0); }
  div.cd-hl:hover .cd-hl-ic { background: var(--g0); }
  .srv-card:hover .srv-ic { background: var(--g0); }
  .ti:hover .td { border-color: var(--g1); background: var(--w); }

  div.cd:active::before,
  div.cd.is-pressed::before,
  a.cd:active::before,
  a.cd.is-pressed::before,
  div.cd-hl:active::before,
  div.cd-hl.is-pressed::before,
  .srv-card:active::before,
  .srv-card.is-pressed::before { transform: scaleX(1); }
  div.cd:active,
  div.cd.is-pressed,
  a.cd:active,
  a.cd.is-pressed { background: var(--g0); }
  div.cd-hl:active,
  div.cd-hl.is-pressed,
  .srv-card:active,
  .srv-card.is-pressed {
    background: var(--g0);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
  }
  div.cd:active .cd-ic,
  div.cd.is-pressed .cd-ic,
  a.cd:active .cd-ic,
  a.cd.is-pressed .cd-ic,
  div.cd-hl:active .cd-hl-ic,
  div.cd-hl.is-pressed .cd-hl-ic { background: rgba(230,0,15,.09); }
  .srv-card:active .srv-ic,
  .srv-card.is-pressed .srv-ic { background: rgba(230,0,15,.09); }
  .ti:active .td,
  .ti.is-pressed .td { border-color: var(--r); background: var(--r); }
  .ref-list-items .client-item:hover { color: var(--g6); border-bottom-color: var(--g1); }
  .ref-list-items .client-item:active,
  .ref-list-items .client-item.is-pressed { color: var(--r); border-bottom-color: var(--r); }
  .plc:hover::before { transform: scaleX(0); }
  .plc:hover { background: transparent; }
  .plc:hover .pln { color: rgba(230,0,15,.15); }
  .plc:active::before,
  .plc.is-pressed::before { transform: scaleX(1); }
  .plc:active,
  .plc.is-pressed { background: rgba(255,255,255,.03); }
  .plc:active .pln,
  .plc.is-pressed .pln { color: var(--r); }
  .kt3 > div:hover::before { transform: scaleX(0); }
  .kt3 > div:hover { transform: none; box-shadow: none; background: var(--w); }
  .kt3 > div:active::before,
  .kt3 > div.is-pressed::before { transform: scaleX(1); }
  .kt3 > div:active,
  .kt3 > div.is-pressed { transform: translateY(-3px); box-shadow: var(--shadow-md); background: var(--w); }
}

.cd-hl,
.srv-card {
  transition: background .3s, transform .3s, box-shadow .3s;
}

.cd-hl::before,
.srv-card::before {
  transition: transform .4s cubic-bezier(.25,.1,.25,1);
}

.cd-hl:hover::before,
.srv-card:hover::before {
  transform: scaleX(1);
}

.cd-hl:hover,
.srv-card:hover {
  background: var(--g0);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.cd-hl .cd-hl-ic,
.srv-card .srv-ic {
  transition: background .25s;
}

.cd-hl:hover .cd-hl-ic,
.srv-card:hover .srv-ic {
  background: rgba(230,0,15,.09);
}

@media (hover: none), (pointer: coarse) {
  div.cd-hl:hover::before,
  .srv-card:hover::before {
    transform: scaleX(0);
  }

  div.cd-hl:hover,
  .srv-card:hover {
    background: var(--w);
    transform: none;
    box-shadow: none;
  }

  div.cd-hl:hover .cd-hl-ic,
  .srv-card:hover .srv-ic {
    background: var(--g0);
  }

  div.cd-hl:active::before,
  div.cd-hl.is-pressed::before,
  .srv-card:active::before,
  .srv-card.is-pressed::before {
    transform: scaleX(1);
  }

  div.cd-hl:active,
  div.cd-hl.is-pressed,
  .srv-card:active,
  .srv-card.is-pressed {
    background: var(--g0);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
  }

  div.cd-hl:active .cd-hl-ic,
  div.cd-hl.is-pressed .cd-hl-ic,
  .srv-card:active .srv-ic,
  .srv-card.is-pressed .srv-ic {
    background: rgba(230,0,15,.09);
  }
}


/* Unified product technical data table */
.tech-spec-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 0 !important;
  grid-auto-flow: row !important;
  border-top: 1px solid var(--g1) !important;
  border-left: 1px solid var(--g1) !important;
  border-right: 0 !important;
  border-bottom: 0 !important;
  overflow: hidden;
}
.tech-spec-grid > .tech-spec-cell {
  min-width: 0;
  border-right: 1px solid var(--g1) !important;
  border-bottom: 1px solid var(--g1) !important;
}
@media (max-width: 1024px) {
  .tech-spec-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 560px) {
  .tech-spec-grid {
    grid-template-columns: 1fr !important;
  }
}
