:root {
  --ink: #121417;
  --muted: #5d6673;
  --line: #dfe3ea;
  --soft: #f4f6f8;
  --paper: #ffffff;
  --red: #b83d31;
  --red-dark: #8f2f27;
  --dark: #08090b;
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Arial, "Microsoft YaHei", "PingFang SC", sans-serif;
  line-height: 1.55;
}

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

button,
input,
textarea {
  font: inherit;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 620px;
  margin-bottom: 24px;
  font-size: 58px;
  line-height: 1.12;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 9px;
  font-size: 21px;
  line-height: 1.25;
}

.section,
.section-wide,
.section-tight {
  width: min(var(--max), calc(100vw - 64px));
  margin: 0 auto;
}

.eyebrow {
  margin-bottom: 28px;
  color: #101216;
  font-size: 16px;
  font-weight: 900;
}

.eyebrow.red {
  color: var(--red);
}

.quote-btn,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 15px 28px;
  border: 0;
  border-radius: 5px;
  font-weight: 900;
  cursor: pointer;
}

.quote-btn,
.btn-primary {
  color: #fff;
  background: var(--red);
}

.quote-btn:hover,
.btn-primary:hover {
  background: var(--red-dark);
}

.btn-dark {
  color: #fff;
  background: #000;
}

.text-link {
  color: var(--red);
  font-weight: 900;
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: #fff;
  border-bottom: 1px solid rgba(18, 20, 23, .1);
  box-shadow: 0 16px 40px rgba(18, 20, 23, .08);
}

.utility-bar {
  color: #d7dde6;
  background: #101216;
  font-size: 13px;
}

.utility-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: min(var(--max), calc(100vw - 64px));
  min-height: 38px;
  margin: 0 auto;
}

.utility-note {
  min-width: 0;
  color: #f3f5f8;
  font-weight: 800;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.utility-inner nav {
  display: flex;
  gap: 24px;
  font-weight: 800;
}

.utility-contact-nav {
  flex-shrink: 0;
}

.utility-contact-nav a {
  white-space: nowrap;
}

.utility-inner a {
  color: #d7dde6;
}

.utility-inner a:hover {
  color: #fff;
}

.header-inner {
  display: grid;
  grid-template-columns: 315px 1fr auto;
  align-items: center;
  gap: 22px;
  width: min(var(--max), calc(100vw - 64px));
  height: 86px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 900;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.brand-mark {
  display: block;
  font-size: 17px;
  line-height: 1.22;
  letter-spacing: 0;
}

.brand-sub {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 4px;
  font-size: 15px;
  font-weight: 900;
}

.site-nav > a,
.nav-item > a {
  display: flex;
  align-items: center;
  min-height: 86px;
  padding: 0 13px;
}

.nav-item {
  position: relative;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  display: none;
  width: 360px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 24px 54px rgba(16, 18, 22, .18);
  transform: translateX(-50%);
}

.mega-wide {
  width: 560px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mega-menu a {
  display: block;
  padding: 11px 12px;
  color: #252a31;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.35;
}

.mega-menu a:hover {
  color: var(--red);
  background: #f5f6f8;
}

.nav-item:hover .mega-menu,
.nav-item:focus-within .mega-menu {
  display: grid;
  gap: 3px;
}

.mobile-quote {
  display: none;
}

.mobile-contact-details {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-link {
  color: #333943;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #fff;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: #111;
}

.contact {
  display: grid;
  grid-template-columns: .82fr 1fr;
  gap: 58px;
  margin-bottom: 90px;
  padding: 48px;
  color: #fff;
  border-radius: 6px;
  background: #101216;
}

.contact .eyebrow {
  color: var(--red);
}

.contact-copy p:not(.eyebrow) {
  color: #d4d8df;
}

.quote-form {
  display: grid;
  gap: 15px;
}

.quote-form label {
  display: grid;
  gap: 7px;
  font-weight: 900;
}

input,
textarea {
  width: 100%;
  padding: 15px;
  color: #111;
  border: 1px solid #3d424b;
  border-radius: 4px;
  background: #fff;
}

textarea {
  min-height: 118px;
  resize: vertical;
}

.site-footer {
  color: #fff;
  background: #080a0d;
}

.footer-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  width: min(var(--max), calc(100vw - 64px));
  margin: 0 auto;
  padding: 42px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.footer-cta span,
.footer-cta strong {
  display: block;
}

.footer-cta span {
  margin-bottom: 8px;
  color: var(--red);
  font-weight: 900;
}

.footer-cta strong {
  max-width: 820px;
  font-size: 30px;
  line-height: 1.2;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.34fr repeat(4, 1fr);
  gap: 34px;
  width: min(var(--max), calc(100vw - 64px));
  margin: 0 auto;
  padding: 54px 0 42px;
}

.footer-brand strong {
  display: block;
  margin-bottom: 14px;
  font-size: 30px;
  letter-spacing: .04em;
}

.footer-brand p,
.footer-col p {
  margin-bottom: 0;
  color: #c7cdd6;
}

.footer-domain {
  margin-top: 18px;
  color: #fff;
  font-weight: 900;
}

.footer-contact-details {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.footer-contact-details address {
  color: #c7cdd6;
  font-style: normal;
  line-height: 1.7;
}

.footer-contact-details a {
  width: fit-content;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.footer-contact-details a:hover {
  color: var(--red);
}

.footer-col h3 {
  margin-bottom: 16px;
  color: #fff;
  font-size: 16px;
}

.footer-col a {
  display: block;
  margin-bottom: 10px;
  color: #c7cdd6;
}

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

.footer-quote {
  margin-top: 16px;
  color: var(--red) !important;
  font-weight: 900;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  width: min(var(--max), calc(100vw - 64px));
  margin: 0 auto;
  padding: 22px 0;
  color: #9ba3af;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: 13px;
}

.footer-bottom nav {
  display: flex;
  gap: 18px;
}

@media (max-width: 1180px) {
  .header-inner {
    grid-template-columns: 150px 1fr auto;
    gap: 16px;
  }

  .site-nav {
    gap: 0;
    font-size: 14px;
  }

  .proof-band {
    gap: 16px;
  }

  h1 {
    font-size: 50px;
  }
}

@media (max-width: 980px) {
  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 32px;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
    width: calc(100vw - 40px);
    height: 72px;
  }

  .site-nav {
    position: fixed;
    inset: 72px 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 24px 22px;
    background: #fff;
    box-shadow: 0 20px 34px rgba(0, 0, 0, .14);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav .mobile-quote {
    display: flex;
    justify-content: center;
    margin-top: 14px;
    padding: 15px 20px;
    color: #fff;
    border-bottom: 0;
    border-radius: 5px;
    background: var(--red);
  }

  .header-actions {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .hero {
    min-height: 720px;
  }

  .hero-content,
  .section,
  .section-wide,
  .section-tight,
  .proof-band,
  .voice-strip,
  .industry-content,
  .footer-inner {
    width: calc(100vw - 40px);
  }

  .hero-content {
    padding-top: 62px;
  }

  .hero-bg-img,
  .hero-bg-video {
    object-position: 58% 50%;
  }

  .hero-lead {
    margin-bottom: 52px;
  }

  .credit-line {
    margin-left: 0;
  }

  .proof-band {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 22px;
  }

  .intro-section,
  .platform,
  .process-layout,
  .about,
  .contact {
    grid-template-columns: 1fr;
  }

  .intro-section {
    gap: 18px;
    padding-top: 78px;
  }

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

  .service-card.featured {
    grid-column: span 2;
  }

  .voice-strip {
    grid-template-columns: 1fr;
  }

  .platform-visual,
  .platform-visual img {
    min-height: 380px;
    height: 420px;
  }

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

}

@media (max-width: 560px) {
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 28px;
  }

  .hero {
    min-height: 744px;
  }

  .hero-content {
    padding-top: 42px;
  }

  .trust-line {
    margin-bottom: 62px;
  }

  .eyebrow {
    margin-bottom: 18px;
  }

  .hero-lead {
    margin-bottom: 28px;
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
    gap: 12px;
  }

  .btn {
    width: 100%;
  }

  .hero-bg-img,
  .hero-bg-video {
    object-position: 62% 50%;
    opacity: 1;
  }

  .hero-bg-video {
    height: 100%;
  }

  .proof-band,
  .services,
  .industry-grid,
  .resource-grid,
  .panel-list {
    grid-template-columns: 1fr;
  }

  .proof-band article {
    min-height: 0;
    text-align: left;
  }

  .service-card,
  .service-card.featured {
    display: flex;
    min-height: 0;
  }

  .service-card.featured {
    grid-column: span 1;
  }

  .service-card img,
  .service-card.featured img {
    height: 170px;
    margin-bottom: 18px;
  }

  .intro-section {
    padding-top: 62px;
  }

  .voice-strip h2 {
    font-size: 24px;
  }

  .platform-visual,
  .platform-visual img {
    min-height: 310px;
    height: 330px;
  }

  .quote-panel {
    right: 16px;
    bottom: 16px;
    width: calc(100% - 32px);
  }

  .industry-content {
    padding: 66px 0;
  }

  .process {
    padding: 70px 0;
  }

  .process-panel {
    padding: 28px 20px;
  }

  .contact {
    padding: 30px 20px;
  }

}

.utility-bar{
  display:none}
.site-header{
  box-shadow:0 8px 24px rgba(18,20,23,.05)}
.header-inner{
  height:92px}
.site-nav>a,.nav-item>a{
  min-height:92px}
.rd-hero{
  min-height:700px;
  padding-top:72px;
  padding-bottom:120px}
.rd-hero-copy{
  padding-top:22px}
.rd-hero h1{
  margin-bottom:28px;
  font-size:62px;
  letter-spacing:-2.2px}
.rd-hero p{
  line-height:1.82}
.rd-hero-media{
  height:480px;
  border-radius:0;
  box-shadow:0 24px 70px rgba(17,20,24,.14)}
.rd-hero-media video{
  transform:scale(1.18) translateY(-2%);
  transform-origin:center center}
.rd-metrics{
  margin-top:-90px;
  margin-bottom:92px}
.rd-metrics article{
  min-height:132px;
  display:flex;
  flex-direction:column;
  justify-content:center}
.rd-services{
  padding-top:10px;
  padding-bottom:86px}
.rd-card-grid{
  gap:22px}
.rd-card-grid a{
  min-height:220px;
  display:flex;
  flex-direction:column;
  justify-content:flex-start}
.product-card-grid a::before{
  display:none}
.product-card-grid a{
  overflow:hidden;
  padding:0;
  background:#fff}
.product-card-grid img{
  display:block;
  width:100%;
  height:138px;
  padding:18px 22px 10px;
  object-fit:contain;
  background:linear-gradient(180deg,#f6f7f9,#fff)}
.product-card-grid h3{
  margin:20px 24px 8px}
.product-card-grid p{
  margin:0 24px 24px}
.rd-tools{
  padding:104px 0 112px}
.rd-tool-grid article{
  min-height:410px;
  display:flex;
  flex-direction:column;
  justify-content:space-between}
.rd-testimonial{
  min-height:520px;
  display:grid;
  place-items:center;
  align-content:center;
  gap:18px}
.rd-testimonial h2{
  max-width:680px;
  margin:0 auto}
.rd-client-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
  width:min(780px,calc(100vw - 64px));
  margin:22px auto 0}
.rd-client-grid span{
  padding:18px 10px;
  border:1px solid var(--line);
  background:#fafafa;
  color:#354052;
  font-weight:900}
.rd-partner{
  min-height:520px;
  align-items:center}
.rd-accordions{
  padding-top:34px;
  padding-bottom:24px}
.rd-accordions details{
  margin-bottom:26px}
.rd-accordions details:last-child{
  margin-bottom:0}
.rd-accordions summary{
  min-height:42px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  font-size:15px}
.rd-accordions summary::after{
  content:"+";
  color:#cfd4dc}
.rd-accordions summary::-webkit-details-marker{
  display:none}
.rd-accordions summary::marker{
  content:""}
.rd-accordions p{
  max-width:760px;
  padding-top:18px}
.rd-platform2{
  padding:98px 0 116px}
.rd-platform2-inner{
  text-align:center}
.rd-platform2-inner>p{
  max-width:820px;
  margin:0 auto 34px;
  color:var(--muted)}
.rd-tab-panel{
  grid-template-columns:360px 1fr;
  max-width:1010px;
  margin-inline:auto}
.rd-tabs button{
  min-height:54px;
  text-align:left;
  background:#fff}
.rd-tabs button:first-child{
  border-color:#111;
  box-shadow:inset 4px 0 0 var(--red)}
.rd-panel{
  min-height:360px;
  display:flex;
  flex-direction:column;
  justify-content:center}
.rd-work{
  padding:98px 0 110px}
.rd-work-grid article{
  min-height:230px}
.rd-npi{
  padding-top:110px;
  padding-bottom:112px}
.rd-line{
  position:relative;
  margin-top:48px;
  margin-bottom:44px}
.rd-line span{
  position:relative;
  padding-top:52px}
.rd-line span::before{
  content:"";
  position:absolute;
  top:2px;
  left:50%;
  width:50px;
  height:50px;
  border-radius:50%;
  border:1px solid #f2c2bc;
  background:#fff;
  transform:translateX(-50%)}
.rd-line span:first-child::before{
  border-color:var(--red);
  background:var(--red)}
.rd-quality{
  min-height:620px;
  align-items:center}
.rd-resources{
  padding-top:96px;
  padding-bottom:94px}
.rd-faq{
  max-width:980px;
  padding-top:28px;
  padding-bottom:96px}
.site-footer{
  margin-top:0}
@media (max-width:980px){
  .header-inner{
    height:72px}
  .site-nav>a,.nav-item>a{
    min-height:0}
  .site-nav{
    padding-top:16px}
  .rd-hero{
    min-height:auto;
    padding:46px 0 78px}
  .rd-hero h1{
    font-size:43px;
    letter-spacing:-1px}
  .rd-hero-media{
    height:260px}
  .rd-metrics{
    margin-top:-34px}
  .rd-card-grid a{
    min-height:230px}
  .rd-tool-grid article{
    min-height:330px}
  .rd-testimonial{
    min-height:360px}
  .rd-client-grid{
    grid-template-columns:repeat(2,1fr);
    width:calc(100vw - 40px)}
  .rd-accordions details{
    margin-bottom:18px}
  .rd-tab-panel{
    grid-template-columns:1fr}
  .rd-panel{
    min-height:260px}
  .rd-quality{
    min-height:auto}
}

@media (max-width: 1180px) {
  .utility-inner {
    width: calc(100vw - 40px);
  }

  .utility-note,
  .utility-contact-nav {
    font-size: 12px;
  }

  .utility-contact-nav {
    gap: 14px !important;
  }

  .header-inner {
    grid-template-columns: 250px 1fr auto;
    gap: 14px;
  }

  .brand-sub {
    display: none;
  }

  .site-nav {
    font-size: 14px;
  }

  .site-nav > a,
  .nav-item > a {
    padding: 0 10px;
  }
}

@media (max-width: 980px) {
  .utility-bar {
    display: none;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
    width: calc(100vw - 40px);
    height: 72px;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .brand-mark {
    max-width: 245px;
    font-size: 15px;
    line-height: 1.18;
  }

  .brand-sub {
    display: none;
  }

  .site-nav {
    position: fixed;
    inset: 72px 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    max-height: calc(100vh - 72px);
    padding: 8px 24px 22px;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: #fff;
    box-shadow: 0 22px 40px rgba(0, 0, 0, .16);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav > a,
  .nav-item > a {
    min-height: 0;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-item {
    position: static;
  }

  .mega-menu,
  .mega-wide {
    position: static;
    display: grid;
    width: 100%;
    padding: 0 0 10px 16px;
    border: 0;
    border-bottom: 1px solid var(--line);
    box-shadow: none;
    transform: none;
  }

  .mega-menu a {
    padding: 8px 0;
    color: var(--muted);
    font-size: 14px;
  }

  .mobile-quote {
    display: flex;
    justify-content: center;
    margin-top: 14px;
    padding: 15px 20px !important;
    color: #fff;
    border-bottom: 0 !important;
    border-radius: 5px;
    background: var(--red);
  }

  .mobile-contact-details {
    display: grid;
    gap: 8px;
    margin-top: 14px;
    padding: 16px 0 2px;
    border-top: 1px solid var(--line);
  }

  .mobile-contact-details address {
    color: var(--muted);
    font-size: 13px;
    font-style: normal;
    line-height: 1.6;
  }

  .mobile-contact-details a {
    color: #20242a;
    font-size: 14px;
    font-weight: 900;
  }

  .header-actions {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .footer-cta,
  .footer-main,
  .footer-bottom {
    width: calc(100vw - 40px);
  }

  .footer-cta,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .brand-mark {
    max-width: 260px;
    font-size: 14px;
  }

  .footer-cta strong {
    font-size: 23px;
  }

  .footer-bottom nav {
    flex-wrap: wrap;
  }
}

.site-header { isolation: isolate; }

.header-inner {
  grid-template-columns: minmax(270px, 315px) minmax(0, 1fr) auto;
  gap: 18px;
}

.site-nav { position: static; gap: 0; }

.nav-item { position: static; }

.nav-entry { height: 100%; }

.nav-entry > a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 86px;
  padding: 0 11px;
  white-space: nowrap;
}

.nav-entry > a::after {
  position: absolute;
  right: 11px;
  bottom: 0;
  left: 11px;
  height: 3px;
  background: var(--red);
  content: "";
  opacity: 0;
  transform: scaleX(.45);
  transform-origin: center;
  transition: opacity .18s ease, transform .18s ease;
}

.nav-item:hover .nav-entry > a,
.nav-item:focus-within .nav-entry > a {
  color: var(--red-dark);
}

.nav-item:hover .nav-entry > a::after,
.nav-item:focus-within .nav-entry > a::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-disclosure {
  display: none;
}

.mega-menu,
.mega-wide {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  display: none;
  width: auto;
  padding: 0;
  border: 0;
  border-top: 1px solid #e2e5e9;
  border-bottom: 1px solid #d7dbe0;
  border-radius: 0;
  background: #fff;
  box-shadow: 0 28px 54px rgba(15, 18, 22, .16);
  transform: none;
}

.nav-item:hover > .mega-menu,
.nav-item:focus-within > .mega-menu {
  display: block;
}

.mega-shell {
  width: min(var(--max), calc(100vw - 64px));
  margin: 0 auto;
  padding: 26px 0 30px;
}

.mega-menu-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid #e5e7ea;
}

.mega-menu-top span,
.mega-panel-heading span,
.mega-feature > span {
  display: block;
  margin-bottom: 5px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.4;
}

.mega-menu-top strong {
  display: block;
  color: #171a1f;
  font-size: 20px;
  line-height: 1.35;
}

.mega-menu-top > a,
.mega-panel-heading > a {
  color: #272c33;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.mega-menu-top > a:hover,
.mega-panel-heading > a:hover {
  color: var(--red);
}

.mega-product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 270px;
  gap: 34px;
}

.mega-product-groups {
  display: grid;
  grid-template-columns: 235px minmax(0, 1fr);
  grid-template-rows: repeat(7, minmax(48px, auto));
  min-height: 350px;
}

.mega-product-group {
  display: contents;
}

.mega-product-toggle {
  grid-column: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px 14px;
  border: 0;
  border-bottom: 1px solid #e4e7eb;
  color: #252a31;
  background: #f4f5f7;
  text-align: left;
  cursor: pointer;
}

.mega-product-toggle span {
  font-size: 14px;
  font-weight: 900;
}

.mega-product-toggle small {
  color: #78808b;
  font-size: 11px;
  white-space: nowrap;
}

.mega-product-group.is-active .mega-product-toggle,
.mega-product-toggle:hover,
.mega-product-toggle:focus-visible {
  color: #fff;
  background: #171a1f;
}

.mega-product-group.is-active .mega-product-toggle small,
.mega-product-toggle:hover small,
.mega-product-toggle:focus-visible small {
  color: #d9dde2;
}

.mega-product-panel {
  grid-row: 1 / span 7;
  grid-column: 2;
  align-content: start;
  margin-left: 28px;
}

.mega-panel-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  margin-bottom: 19px;
}

.mega-panel-heading strong {
  display: block;
  font-size: 22px;
  line-height: 1.25;
}

.mega-product-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 14px;
}

.mega-product-links a,
.mega-group-links a {
  position: relative;
  display: block;
  color: #353a42;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.mega-product-links a {
  min-height: 44px;
  padding: 12px 30px 12px 13px;
  border: 1px solid #e1e4e8;
  background: #fff;
}

.mega-product-links a::after,
.mega-group-links a::after {
  position: absolute;
  top: 50%;
  right: 12px;
  content: "›";
  color: #979da6;
  font-size: 19px;
  line-height: 1;
  transform: translateY(-52%);
}

.mega-product-links a:hover,
.mega-product-links a:focus-visible {
  color: var(--red-dark);
  border-color: #c9cdd3;
  background: #f7f8f9;
}

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

.mega-columns-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr)) 280px;
  gap: 34px;
}

.mega-group-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 34px;
  margin-bottom: 8px;
  border-bottom: 2px solid #22262c;
}

.mega-group-heading h3 {
  margin: 0;
  padding-bottom: 9px;
  font-size: 14px;
  line-height: 1.3;
}

.mega-group-heading button {
  display: none;
}

.mega-group-links {
  display: grid;
  gap: 2px;
}

.mega-group-links a {
  padding: 9px 24px 9px 0;
}

.mega-group-links a:hover,
.mega-group-links a:focus-visible {
  color: var(--red-dark);
}

.mega-feature {
  align-self: stretch;
  padding: 16px;
  color: #fff;
  background: #171a1f;
}

.mega-feature img {
  width: 100%;
  height: 118px;
  margin-bottom: 15px;
  object-fit: cover;
  background: #eef0f2;
}

.mega-feature > strong {
  display: block;
  margin-bottom: 8px;
  font-size: 17px;
  line-height: 1.35;
}

.mega-feature p {
  margin-bottom: 15px;
  color: #cbd0d6;
  font-size: 12px;
  line-height: 1.6;
}

.mega-feature-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 190px;
  padding: 22px;
}

.mega-menu .mega-feature-button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .34);
  background: var(--red);
  font-size: 12px;
  font-weight: 900;
}

.mega-menu .mega-feature-button:hover,
.mega-menu .mega-feature-button:focus-visible {
  color: #fff;
  background: var(--red-dark);
}

.header-actions .quote-btn {
  min-height: 50px;
  padding: 12px 20px;
  white-space: nowrap;
}

@media (max-width: 1180px) and (min-width: 981px) {
  .header-inner {
    grid-template-columns: 230px minmax(0, 1fr) auto;
    gap: 10px;
    width: calc(100vw - 40px);
  }

  .brand-mark {
    font-size: 15px;
  }

  .nav-entry > a {
    padding: 0 8px;
    font-size: 13px;
  }

  .nav-entry > a::after {
    right: 8px;
    left: 8px;
  }

  .header-actions .quote-btn {
    padding: 11px 14px;
    font-size: 13px;
  }

  .mega-shell {
    width: calc(100vw - 40px);
  }

  .mega-product-layout {
    grid-template-columns: minmax(0, 1fr) 230px;
    gap: 24px;
  }

  .mega-product-groups {
    grid-template-columns: 205px minmax(0, 1fr);
  }

  .mega-product-panel {
    margin-left: 20px;
  }

  .mega-columns {
    grid-template-columns: repeat(4, minmax(0, 1fr)) 210px;
    gap: 18px;
  }

  .mega-columns-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr)) 240px;
    gap: 22px;
  }
}

@media (max-width: 980px) {
  body.nav-open {
    overflow: hidden;
  }

  .header-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
  }

  .site-nav {
    position: fixed;
    inset: 72px 0 0;
    display: none;
    max-height: none;
    padding: 0 20px 112px;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: #fff;
    box-shadow: none;
  }

  .site-nav.is-open {
    display: block;
  }

  .nav-entry {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 48px;
    align-items: center;
    min-height: 58px;
    border-bottom: 1px solid #e0e3e7;
  }

  .nav-entry > a {
    min-height: 58px;
    padding: 0;
    font-size: 17px;
  }

  .nav-entry > a::after {
    display: none;
  }

  .nav-item:hover .nav-entry > a,
  .nav-item:focus-within .nav-entry > a {
    color: #181b20;
  }

  .nav-disclosure,
  .mega-group-heading button {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .nav-disclosure span,
  .mega-group-heading button span {
    width: 9px;
    height: 9px;
    border-right: 2px solid #343940;
    border-bottom: 2px solid #343940;
    transform: rotate(45deg) translate(-2px, -2px);
    transition: transform .18s ease;
  }

  .nav-item.is-open .nav-disclosure span,
  .mega-group.is-open .mega-group-heading button span {
    transform: rotate(225deg) translate(-1px, -1px);
  }

  .mega-menu,
  .mega-wide,
  .nav-item:hover > .mega-menu,
  .nav-item:focus-within > .mega-menu {
    position: static;
    display: none;
    width: 100%;
    padding: 0;
    border: 0;
    border-bottom: 1px solid #dfe2e6;
    box-shadow: none;
  }

  .nav-item.is-open > .mega-menu {
    display: block;
  }

  .mega-shell {
    width: 100%;
    padding: 12px 0 18px;
  }

  .mega-menu-top {
    align-items: center;
    margin-bottom: 12px;
    padding: 0 0 12px;
  }

  .mega-menu-top span {
    display: none;
  }

  .mega-menu-top strong {
    font-size: 14px;
    line-height: 1.45;
  }

  .mega-menu-top > a {
    font-size: 12px;
  }

  .mega-product-layout,
  .mega-product-groups,
  .mega-columns,
  .mega-columns-3 {
    display: block;
    min-height: 0;
  }

  .mega-product-group {
    display: block;
    border-bottom: 1px solid #e1e4e8;
  }

  .mega-product-toggle {
    display: flex;
    min-height: 50px;
    padding: 12px 11px;
    color: #252a31;
    border-bottom: 0;
    background: #f4f5f7;
  }

  .mega-product-toggle::after {
    width: 8px;
    height: 8px;
    margin-left: 4px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    content: "";
    transform: rotate(45deg);
  }

  .mega-product-toggle small {
    margin-left: auto;
  }

  .mega-product-group.is-active .mega-product-toggle,
  .mega-product-toggle:hover,
  .mega-product-toggle:focus-visible {
    color: #252a31;
    background: #f4f5f7;
  }

  .mega-product-group.is-active .mega-product-toggle small,
  .mega-product-toggle:hover small,
  .mega-product-toggle:focus-visible small {
    color: #78808b;
  }

  .mega-product-group.is-open .mega-product-toggle {
    color: #fff;
    background: #171a1f;
  }

  .mega-product-group.is-open .mega-product-toggle small {
    color: #d9dde2;
  }

  .mega-product-group.is-open .mega-product-toggle::after {
    transform: rotate(225deg);
  }

  .mega-product-panel {
    display: none;
    margin: 0;
    padding: 16px 0 18px;
  }

  .mega-product-group.is-open .mega-product-panel:not([hidden]) {
    display: block;
  }

  .mega-panel-heading {
    align-items: center;
    margin-bottom: 12px;
  }

  .mega-panel-heading span {
    display: none;
  }

  .mega-panel-heading strong {
    font-size: 17px;
  }

  .mega-panel-heading > a {
    font-size: 12px;
  }

  .mega-product-links {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .mega-product-links a {
    min-height: 42px;
    padding: 11px 28px 11px 12px;
  }

  .mega-group {
    border-bottom: 1px solid #e1e4e8;
  }

  .mega-group-heading {
    min-height: 48px;
    margin: 0;
    border-bottom: 0;
  }

  .mega-group-heading h3 {
    padding: 0;
    font-size: 14px;
  }

  .mega-group-links {
    display: none;
    gap: 0;
    padding: 0 0 10px 12px;
  }

  .mega-group.is-open .mega-group-links {
    display: grid;
  }

  .mega-group-links a {
    padding: 9px 26px 9px 0;
    color: #505761;
  }

  .mega-feature {
    margin-top: 16px;
  }

  .mega-feature img {
    height: 150px;
  }

  .mega-feature-text {
    min-height: 0;
    padding: 20px;
  }

  .mobile-quote {
    min-height: 50px;
    margin: 18px 0 0;
  }

  .mobile-contact-details {
    margin-top: 14px;
    padding-bottom: 10px;
  }

  .header-actions {
    display: none;
  }
}

@media (max-width: 560px) {
  .header-inner {
    width: calc(100vw - 28px);
  }

  .brand {
    gap: 9px;
  }

  .brand-mark {
    max-width: 205px;
    font-size: 14px;
  }

  .site-nav {
    padding-right: 14px;
    padding-left: 14px;
  }

  .mega-menu-top {
    align-items: flex-start;
  }

  .mega-menu-top strong {
    max-width: 220px;
  }
}
