:root {
  --orange: #ff5e14;
  --orange-deep: #e84d08;
  --navy: #273272;
  --navy-deep: #111943;
  --ink: #121826;
  --muted: #667085;
  --line: #e6e8ec;
  --light: #f6f7fb;
  --white: #fff;
  --shadow: 0 20px 60px rgba(18, 24, 38, .12);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 94px; }
body { margin: 0; overflow-x: hidden; background: #fff; color: var(--muted); }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { cursor: pointer; }
h1, h2, h3, h4, h5, h6 { text-wrap: balance; }
p { text-wrap: pretty; }
::selection { color: #fff; background: var(--orange); }
.container-shell { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.about-grid > *, .quality-grid > *, .values-grid > *, .contact-band__grid > *, .customers-heading > *, .customer-showcase > *, .footer__main > * { min-width: 0; }
.section { padding: 115px 0; }

.skip-link { position: fixed; left: 20px; top: -80px; z-index: 99999; background: #fff; color: var(--navy); padding: 12px 18px; font-weight: 700; transition: top .2s; }
.skip-link:focus { top: 20px; }

.preloader { position: fixed; inset: 0; z-index: 9999; display: grid; place-items: center; background: #fff; transition: opacity .45s ease, visibility .45s ease; }
.preloader.is-hidden { opacity: 0; visibility: hidden; }
.preloader__mark { width: 170px; display: grid; justify-items: center; gap: 18px; }
.preloader__mark img { width: 160px; height: 92px; object-fit: contain; }
.preloader__mark span { width: 110px; height: 3px; overflow: hidden; background: #e8e8ed; position: relative; }
.preloader__mark span::after { content: ''; position: absolute; inset: 0; background: var(--orange); transform: translateX(-100%); animation: loader 1s ease-in-out infinite; }
@keyframes loader { 50% { transform: translateX(0); } 100% { transform: translateX(100%); } }

.site-header { position: relative; z-index: 1000; }
.site-header.has-fixed-nav { padding-bottom: 92px; }
.topbar { height: 42px; color: rgba(255,255,255,.82); background: var(--navy); font-size: 12px; }
.topbar__inner, .topbar__contacts, .topbar__right, .topbar__social { height: 100%; display: flex; align-items: center; }
.topbar__inner { justify-content: space-between; }
.topbar__contacts, .topbar__right { gap: 28px; }
.topbar a, .topbar__right > span { display: flex; align-items: center; gap: 8px; }
.topbar i { color: var(--orange); }
.topbar__social { gap: 0; border-left: 1px solid rgba(255,255,255,.14); }
.topbar__social a { width: 34px; height: 42px; display: grid; place-items: center; border-right: 1px solid rgba(255,255,255,.14); }
.topbar__social a:hover { background: var(--orange); }
.topbar__social a:hover i { color: #fff; }

.navbar { height: 92px; background: rgba(255,255,255,.98); box-shadow: 0 8px 25px rgba(17,25,67,.08); transition: height .3s ease, box-shadow .3s ease; }
.navbar.is-fixed { position: fixed; top: 0; left: 0; right: 0; height: 76px; animation: navDown .4s ease; }
@keyframes navDown { from { transform: translateY(-100%); } }
.navbar__inner { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.brand { width: 185px; height: 74px; display: flex; align-items: center; }
.brand img { width: 170px; height: 70px; object-fit: contain; }
.nav-panel { height: 100%; display: flex; align-items: center; gap: 24px; }
.nav-links { height: 100%; margin: 0; padding: 0; list-style: none; display: flex; align-items: center; gap: 27px; }
.nav-links > li { position: relative; height: 100%; display: flex; align-items: center; }
.nav-links > li > a { height: 100%; display: flex; align-items: center; gap: 6px; color: var(--ink); font-family: Poppins, sans-serif; font-size: 13px; font-weight: 600; position: relative; }
.nav-links > li > a::after { content: ''; position: absolute; left: 0; right: 100%; bottom: 0; height: 3px; background: var(--orange); transition: right .3s ease; }
.nav-links > li > a:hover, .nav-links > li > a.active { color: var(--orange); }
.nav-links > li > a:hover::after, .nav-links > li > a.active::after { right: 0; }
.nav-links i { font-size: 10px; }
.nav-cta { min-width: 168px; height: 48px; padding: 0 18px; display: flex; justify-content: center; align-items: center; gap: 12px; color: #fff; background: var(--orange); font-family: Poppins, sans-serif; font-size: 12px; font-weight: 600; transition: background .25s, transform .25s; }
.nav-cta:hover { background: var(--navy); transform: translateY(-2px); }
.mega-menu { position: absolute; top: 100%; left: -180px; width: 700px; padding: 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 3px 24px; background: #fff; box-shadow: var(--shadow); border-top: 3px solid var(--orange); opacity: 0; visibility: hidden; transform: translateY(15px); transition: .25s ease; }
.has-mega-menu:hover .mega-menu, .has-mega-menu:focus-within .mega-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-menu a { padding: 11px 8px; display: flex; align-items: center; gap: 9px; border-bottom: 1px solid #edf0f3; color: #4e5563; font-size: 13px; }
.mega-menu a i { color: var(--orange); }
.mega-menu a:hover { color: var(--orange); padding-left: 13px; }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 11px; border: 0; background: var(--navy); }
.menu-toggle span { display: block; height: 2px; margin: 5px 0; background: #fff; transition: .3s; }
.menu-toggle:focus { outline: 0; }
.menu-toggle:focus-visible { box-shadow: 0 0 0 3px rgba(255,94,20,.45); }

.hero { position: relative; height: min(780px, calc(100vh - 42px)); min-height: 650px; overflow: hidden; background: var(--navy-deep); }
.hero-slide { position: absolute; inset: 0; overflow: hidden; visibility: hidden; opacity: 0; }
.hero-slide.is-active { visibility: visible; opacity: 1; }
.hero-slide.is-entering .hero-slide__content { visibility: hidden; opacity: 0; }
.hero-slide__image, .hero-slide__shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-slide__image { object-fit: cover; transform: scale(1.08); }
.hero-slide__shade { background: linear-gradient(90deg, rgba(8,15,49,.94) 0%, rgba(12,20,56,.74) 43%, rgba(17,25,67,.18) 72%, rgba(17,25,67,.35) 100%); }
.hero-slide__shade::after { content: ''; position: absolute; inset: 0; opacity: .16; background-image: linear-gradient(135deg, transparent 46%, rgba(255,255,255,.18) 46%, rgba(255,255,255,.18) 47%, transparent 47%); background-size: 35px 35px; mask-image: linear-gradient(90deg,#000,transparent 55%); }
.hero-slide__content { position: relative; z-index: 2; height: 100%; padding-top: 70px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; color: #fff; }
.hero-kicker { margin-bottom: 22px; display: flex; align-items: center; gap: 12px; color: #fff; font-family: Poppins, sans-serif; font-size: 12px; font-weight: 600; letter-spacing: 2.2px; text-transform: uppercase; }
.hero-kicker span { width: 40px; height: 3px; background: var(--orange); }
.hero h1, .hero h2 { max-width: 780px; margin: 0; font-family: Poppins, sans-serif; font-size: clamp(46px, 5.2vw, 78px); line-height: 1.08; letter-spacing: -2.5px; font-weight: 700; }
.hero h1 em, .hero h2 em { color: var(--orange); font-style: normal; }
.hero-slide__content > p { max-width: 650px; margin: 25px 0 32px; color: rgba(255,255,255,.82); font-size: 18px; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; }
.button { min-height: 52px; padding: 0 25px; display: inline-flex; align-items: center; justify-content: center; gap: 13px; border: 1px solid transparent; font-family: Poppins, sans-serif; font-size: 12px; font-weight: 600; letter-spacing: .2px; transition: background .25s, border-color .25s, color .25s, transform .25s; }
.button:hover { transform: translateY(-3px); }
.button--orange { color: #fff; background: var(--orange); }
.button--orange:hover { background: #fff; color: var(--navy); }
.button--ghost { border-color: rgba(255,255,255,.65); color: #fff; }
.button--ghost:hover { border-color: #fff; background: #fff; color: var(--navy); }
.button--navy { color: #fff; background: var(--navy); }
.button--navy:hover { background: var(--orange); }
.button--white { color: var(--navy); background: #fff; }
.button--white:hover { color: #fff; background: var(--navy); }
.hero-controls { position: absolute; z-index: 4; right: max(24px, calc((100vw - 1180px)/2)); bottom: 55px; display: flex; align-items: center; gap: 18px; }
.hero-arrow { width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.36); color: #fff; background: transparent; transition: .25s; }
.hero-arrow:hover { border-color: var(--orange); background: var(--orange); }
.hero-dots { display: flex; align-items: center; gap: 9px; }
.hero-dots button { width: 30px; height: 3px; padding: 0; border: 0; background: rgba(255,255,255,.35); position: relative; overflow: hidden; }
.hero-dots button span { position: absolute; inset: 0; background: var(--orange); transform: scaleX(0); transform-origin: left; }
.hero-dots button.is-active { background: rgba(255,255,255,.55); }
.hero-scroll { position: absolute; z-index: 3; left: 24px; top: 50%; display: flex; align-items: center; gap: 14px; color: rgba(255,255,255,.65); font-family: Poppins,sans-serif; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; transform: rotate(-90deg) translateX(-50%); transform-origin: left center; }
.hero-scroll i { color: var(--orange); transform: rotate(90deg); }

.strength-strip { position: relative; z-index: 10; margin-top: -1px; background: #fff; }
.strength-grid { display: grid; grid-template-columns: repeat(4,1fr); box-shadow: 0 20px 55px rgba(17,25,67,.12); transform: translateY(-1px); }
.strength-card { min-height: 210px; padding: 38px 30px 28px; position: relative; overflow: hidden; background: #fff; border-right: 1px solid var(--line); }
.strength-card:nth-child(even) { background: var(--navy); color: #fff; }
.strength-card::after { content: ''; position: absolute; width: 70px; height: 70px; right: -35px; bottom: -35px; border: 10px solid var(--orange); transform: rotate(45deg); opacity: .7; transition: .35s; }
.strength-card:hover::after { right: -15px; bottom: -15px; }
.strength-card > i { margin-bottom: 19px; color: var(--orange); font-size: 35px; }
.strength-card h3 { margin: 0 0 9px; color: var(--ink); font-family: Poppins,sans-serif; font-size: 17px; font-weight: 600; }
.strength-card:nth-child(even) h3 { color: #fff; }
.strength-card p { margin: 0; font-size: 14px; line-height: 1.65; }
.strength-card__number { position: absolute; right: 20px; top: 22px; color: rgba(39,50,114,.08); font-family: Poppins,sans-serif; font-size: 50px; font-weight: 700; }
.strength-card:nth-child(even) .strength-card__number { color: rgba(255,255,255,.08); }

.eyebrow { margin-bottom: 16px; display: flex; align-items: center; gap: 10px; color: var(--orange); font-family: Poppins,sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; }
.eyebrow > span { width: 33px; height: 2px; background: var(--orange); }
.eyebrow--light { color: #fff; }
.section-title { margin: 0; color: var(--ink); font-family: Poppins,sans-serif; font-size: clamp(34px,4vw,50px); line-height: 1.18; letter-spacing: -1.5px; font-weight: 700; }
.section-title em { color: var(--orange); font-style: normal; }
.section-title--light { color: #fff; }
.section-heading { margin-bottom: 52px; }
.section-heading > p { max-width: 660px; margin: 20px auto 0; line-height: 1.8; }
.section-heading--center { text-align: center; }
.section-heading--center .eyebrow { justify-content: center; }
.section-heading--split { display: grid; grid-template-columns: 1.4fr .7fr; align-items: end; gap: 70px; }
.section-heading--split > p { margin: 0 0 5px; line-height: 1.8; }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 82px; align-items: center; }
.about-media { min-height: 590px; position: relative; }
.about-media__main { width: 83%; height: 515px; overflow: hidden; position: absolute; left: 0; top: 0; box-shadow: var(--shadow); }
.about-media__main img, .about-media__small img { width: 100%; height: 100%; object-fit: cover; }
.about-media__small { width: 52%; height: 245px; overflow: hidden; position: absolute; right: 0; bottom: 0; border: 10px solid #fff; box-shadow: var(--shadow); }
.experience-seal { width: 168px; height: 168px; position: absolute; right: 0; top: 40px; z-index: 2; display: flex; flex-direction: column; justify-content: center; align-items: center; color: #fff; background: var(--orange); clip-path: polygon(50% 0, 92% 25%, 92% 75%, 50% 100%, 8% 75%, 8% 25%); }
.experience-seal strong { font-family: Poppins,sans-serif; font-size: 49px; line-height: 1; }
.experience-seal strong span { font-size: 25px; }
.experience-seal small { margin-top: 6px; text-align: center; font-size: 11px; line-height: 1.35; text-transform: uppercase; }
.about-media__lines { width: 120px; height: 120px; position: absolute; left: -32px; bottom: 5px; z-index: -1; background-image: radial-gradient(var(--orange) 1.5px, transparent 1.5px); background-size: 11px 11px; }
.about-copy .lead { margin: 25px 0 14px; color: #3e4654; font-size: 17px; line-height: 1.8; }
.about-copy > p:not(.lead) { margin: 0; line-height: 1.8; }
.about-points { margin: 27px 0 34px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px 22px; }
.about-points div { display: flex; align-items: center; gap: 10px; color: var(--ink); font-weight: 500; }
.about-points i { width: 25px; height: 25px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--orange); font-size: 10px; }
.about-signoff { display: flex; align-items: center; gap: 28px; }
.about-contact { display: flex; align-items: center; gap: 12px; color: var(--ink); font-size: 12px; }
.about-contact > i { color: var(--orange); font-size: 30px; }
.about-contact span { display: grid; gap: 3px; }
.about-contact small { color: var(--navy); font-family: Poppins,sans-serif; font-size: 14px; font-weight: 700; }

.products { position: relative; overflow: hidden; background: var(--light); }
.products__shape { position: absolute; width: 420px; height: 420px; right: -210px; top: 50px; border: 60px solid rgba(255,94,20,.05); transform: rotate(45deg); }
.product-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 18px; }
.product-card { height: 355px; position: relative; overflow: hidden; color: #fff; background: var(--navy); }
.product-card img, .product-card__overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.product-card img { object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.product-card__overlay { background: linear-gradient(180deg, transparent 22%, rgba(7,12,38,.92) 100%); transition: background .35s; }
.product-card__index { position: absolute; top: 16px; right: 16px; color: rgba(255,255,255,.68); font-family: Poppins,sans-serif; font-size: 11px; letter-spacing: 1px; }
.product-card__body { position: absolute; left: 0; right: 0; bottom: 0; padding: 23px 20px; transform: translateY(28px); transition: transform .4s; }
.product-card__body > i { margin-bottom: 12px; color: var(--orange); font-size: 25px; }
.product-card h3 { min-height: 46px; margin: 0 0 6px; font-family: Poppins,sans-serif; font-size: 16px; line-height: 1.4; font-weight: 600; }
.product-card p { min-height: 40px; margin: 0 0 12px; color: rgba(255,255,255,.72); font-size: 12px; line-height: 1.55; opacity: 0; transform: translateY(10px); transition: .35s; }
.product-card__body > a { width: 38px; height: 38px; display: grid; place-items: center; color: #fff; background: var(--orange); opacity: 0; transform: translateY(10px); transition: .35s; }
.product-card:hover img { transform: scale(1.09); }
.product-card:hover .product-card__overlay { background: linear-gradient(180deg, rgba(39,50,114,.1), rgba(7,12,38,.96)); }
.product-card:hover .product-card__body { transform: translateY(0); }
.product-card:hover p, .product-card:hover .product-card__body > a { opacity: 1; transform: translateY(0); }

.quote-band { height: 245px; position: relative; overflow: hidden; color: #fff; background: var(--orange); }
.quote-band::before { content: ''; position: absolute; inset: 0; background: linear-gradient(110deg, var(--orange) 0%, var(--orange) 64%, rgba(255,94,20,.85) 64%); }
.quote-band__image { position: absolute; inset: 0 0 0 55%; }
.quote-band__image img { width: 100%; height: 100%; object-fit: cover; }
.quote-band__image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg,var(--orange),rgba(39,50,114,.35)); }
.quote-band__inner { height: 100%; position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.quote-band__copy > span { font-family: Poppins,sans-serif; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; }
.quote-band h2 { max-width: 720px; margin: 9px 0 0; font-family: Poppins,sans-serif; font-size: clamp(28px,3.3vw,42px); line-height: 1.25; }

.quality-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 80px; align-items: center; }
.quality-copy > p { margin: 24px 0 0; font-size: 16px; line-height: 1.8; }
.quality-list { margin-top: 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 26px 22px; }
.quality-list article { display: flex; gap: 15px; }
.quality-list__icon { flex: 0 0 50px; height: 50px; display: grid; place-items: center; color: #fff; background: var(--navy); font-size: 20px; transition: .25s; }
.quality-list article:hover .quality-list__icon { background: var(--orange); transform: translateY(-3px); }
.quality-list h3 { margin: 0 0 6px; color: var(--ink); font-family: Poppins,sans-serif; font-size: 14px; }
.quality-list p { margin: 0; font-size: 13px; line-height: 1.6; }
.quality-media { min-height: 570px; position: relative; }
.quality-media > img { width: calc(100% - 38px); height: 530px; margin-left: 38px; object-fit: cover; }
.quality-card { width: 260px; min-height: 220px; position: absolute; left: 0; bottom: 0; padding: 30px; color: #fff; background: var(--orange); display: flex; flex-direction: column; justify-content: center; box-shadow: var(--shadow); }
.quality-card i { margin-bottom: 20px; font-size: 42px; }
.quality-card strong { font-family: Poppins,sans-serif; font-size: 22px; }
.quality-card span { margin-top: 8px; font-size: 13px; line-height: 1.6; }
.quality-dots { width: 120px; height: 120px; position: absolute; right: 0px; top: -35px; z-index: -1; background-image: radial-gradient(var(--orange) 1.5px, transparent 1.5px); background-size: 11px 11px; }

.stats { min-height: 340px; position: relative; color: #fff; overflow: hidden; }
.stats__background { position: absolute; inset: 0; }
.stats__background img, .stats__background span { position: absolute; inset: 0; width: 100%; height: 100%; }
.stats__background img { object-fit: cover; object-position: center 68%; }
.stats__background span { background: rgba(17,25,67,.9); }
.stats-grid { min-height: 340px; position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4,1fr); align-items: center; }
.stat { min-height: 190px; display: grid; place-items: center; align-content: center; position: relative; border-right: 1px solid rgba(255,255,255,.16); text-align: center; }
.stat:last-child { border-right: 0; }
.stat i { margin-bottom: 15px; color: var(--orange); font-size: 33px; }
.stat strong { font-family: Poppins,sans-serif; font-size: 52px; line-height: 1.1; }
.stat span { margin-top: 6px; color: rgba(255,255,255,.72); font-size: 13px; }

.industry-grid { display: grid; grid-template-columns: repeat(4,1fr); grid-auto-rows: 310px; gap: 18px; }
.industry-card { position: relative; overflow: hidden; color: #fff; background: var(--navy); }
.industry-card--wide { grid-column: span 2; }
.industry-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(7,12,38,.92)); transition: .35s; }
.industry-card > img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s; }
.industry-card > div { position: absolute; z-index: 2; left: 24px; right: 24px; bottom: 22px; }
.industry-card span { color: var(--orange); font-family: Poppins,sans-serif; font-size: 11px; font-weight: 600; }
.industry-card h3 { margin: 6px 0 0; font-family: Poppins,sans-serif; font-size: 22px; }
.industry-card p { max-width: 250px; height: 0; margin: 0; color: rgba(255,255,255,.76); font-size: 13px; line-height: 1.6; overflow: hidden; opacity: 0; transition: .35s; }
.industry-card a { width: 42px; height: 42px; position: absolute; right: 0; bottom: 0; display: grid; place-items: center; color: #fff; background: var(--orange); transform: translateY(70px); transition: .35s; }
.industry-card:hover > img { transform: scale(1.08); }
.industry-card:hover::after { background: linear-gradient(180deg, rgba(39,50,114,.06), rgba(7,12,38,.96)); }
.industry-card:hover p { height: 42px; margin-top: 7px; opacity: 1; }
.industry-card:hover a { transform: translateY(0); }
.industry-tags { margin-top: 30px; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px; }
.industry-tags span { padding: 10px 16px; border: 1px solid var(--line); color: #4d5563; background: #fff; font-size: 12px; }

.values { padding: 110px 0; color: rgba(255,255,255,.74); background: var(--navy); position: relative; overflow: hidden; }
.values::before { content: 'KSP'; position: absolute; right: -20px; bottom: -120px; color: rgba(255,255,255,.025); font-family: Poppins,sans-serif; font-size: 420px; line-height: 1; font-weight: 800; }
.values-grid { position: relative; display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; align-items: center; }
.values-intro > p { margin: 22px 0 32px; line-height: 1.8; }
.values-list { display: grid; grid-template-columns: 1fr 1fr; }
.values-list article { min-height: 148px; padding: 24px; display: flex; gap: 18px; border: 1px solid rgba(255,255,255,.12); margin: -1px 0 0 -1px; transition: background .25s; }
.values-list article:hover { background: rgba(255,94,20,.12); }
.values-list article > span { color: var(--orange); font-family: Poppins,sans-serif; font-size: 12px; font-weight: 600; }
.values-list h3 { margin: 0 0 8px; color: #fff; font-family: Poppins,sans-serif; font-size: 16px; }
.values-list p { margin: 0; font-size: 13px; line-height: 1.65; }

.customers { position: relative; overflow: hidden; background: var(--light); }
.customers__watermark { position: absolute; right: -35px; top: 50px; color: rgba(39,50,114,.025); font-family: Poppins,sans-serif; font-size: 310px; line-height: 1; font-weight: 800; pointer-events: none; }
.customers-heading { margin-bottom: 52px; display: grid; grid-template-columns: 1.15fr .7fr; gap: 85px; align-items: end; position: relative; }
.customers-heading__copy { padding: 0 0 6px 28px; border-left: 3px solid var(--orange); }
.customers-heading__copy p { margin: 0 0 17px; line-height: 1.75; }
.customers-heading__copy a { display: inline-flex; align-items: center; gap: 10px; color: var(--navy); font-family: Poppins,sans-serif; font-size: 12px; font-weight: 600; }
.customers-heading__copy a i { color: var(--orange); transition: transform .25s; }
.customers-heading__copy a:hover i { transform: translateX(5px); }
.customer-showcase { min-height: 535px; display: grid; grid-template-columns: 1.35fr .65fr; gap: 22px; position: relative; }
.customer-feature { min-height: 535px; position: relative; overflow: hidden; color: #fff; background: var(--navy-deep); }
.customer-feature > img, .customer-feature__overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.customer-feature > img { object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.customer-feature__overlay { background: linear-gradient(90deg,rgba(9,14,48,.96) 0%,rgba(17,25,67,.82) 53%,rgba(17,25,67,.25) 100%); }
.customer-feature::after { content: ''; position: absolute; left: 0; top: 0; width: 8px; height: 100%; background: var(--orange); }
.customer-feature:hover > img { transform: scale(1.045); }
.customer-feature__content { min-height: 535px; max-width: 670px; padding: 58px 55px 48px 62px; position: relative; z-index: 1; display: flex; flex-direction: column; justify-content: center; }
.customer-feature__label { margin-bottom: 24px; display: inline-flex; align-items: center; gap: 11px; color: var(--orange); font-family: Poppins,sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 1.8px; text-transform: uppercase; }
.customer-feature__label i { font-size: 23px; }
.customer-feature blockquote { margin: 0; max-width: 590px; color: #fff; font-family: Poppins,sans-serif; font-size: clamp(23px,2.2vw,34px); line-height: 1.47; font-weight: 600; letter-spacing: -.65px; }
.customer-feature__footer { margin-top: 42px; padding-top: 25px; display: flex; align-items: center; justify-content: space-between; gap: 24px; border-top: 1px solid rgba(255,255,255,.2); }
.customer-feature__identity { display: flex; align-items: center; gap: 14px; }
.customer-feature__identity > span { width: 48px; height: 48px; display: grid; place-items: center; color: #fff; background: var(--orange); }
.customer-feature__identity > div { display: grid; gap: 3px; }
.customer-feature__identity strong { color: #fff; font-family: Poppins,sans-serif; font-size: 13px; }
.customer-feature__identity small { color: rgba(255,255,255,.65); font-size: 11px; }
.customer-feature__footer > a { width: 48px; height: 48px; flex: 0 0 48px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.35); transition: background .25s,border-color .25s; }
.customer-feature__footer > a:hover { border-color: var(--orange); background: var(--orange); }
.customer-promises { display: grid; grid-template-rows: repeat(3,1fr); gap: 12px; }
.customer-promise { min-height: 0; padding: 28px 25px; display: grid; grid-template-columns: 58px 1fr; gap: 5px 17px; align-items: center; position: relative; overflow: hidden; background: #fff; border: 1px solid #eaecf0; transition: transform .3s,box-shadow .3s,border-color .3s; }
.customer-promise:hover { z-index: 1; border-color: transparent; box-shadow: 0 18px 45px rgba(17,25,67,.12); transform: translateX(-7px); }
.customer-promise__number { position: absolute; right: 17px; top: 10px; color: rgba(39,50,114,.06); font-family: Poppins,sans-serif; font-size: 47px; line-height: 1; font-weight: 700; }
.customer-promise__icon { grid-row: 1 / span 2; width: 58px; height: 58px; display: grid; place-items: center; color: #fff; background: var(--navy); font-size: 21px; transition: background .25s; }
.customer-promise:hover .customer-promise__icon { background: var(--orange); }
.customer-promise h3 { margin: 0 0 7px; color: var(--ink); font-family: Poppins,sans-serif; font-size: 15px; line-height: 1.35; }
.customer-promise p { margin: 0; font-size: 12px; line-height: 1.58; }
.customer-process { margin-top: 22px; min-height: 112px; padding: 20px 30px; display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; align-items: center; gap: 17px; background: #fff; border-bottom: 3px solid var(--orange); box-shadow: 0 15px 40px rgba(17,25,67,.07); }
.customer-process > div { display: grid; grid-template-columns: auto 34px 1fr; align-items: center; gap: 10px; position: relative; }
.customer-process > div > span { position: absolute; left: 32px; top: -8px; color: rgba(39,50,114,.08); font-family: Poppins,sans-serif; font-size: 38px; line-height: 1; font-weight: 700; }
.customer-process > div > i { position: relative; color: var(--orange); font-size: 24px; }
.customer-process strong { position: relative; color: var(--ink); font-family: Poppins,sans-serif; font-size: 12px; line-height: 1.45; }
.customer-process__arrow { color: #c5c9d2; font-size: 12px; }

.capability-marquee { padding: 20px 0; overflow: hidden; color: #fff; background: var(--orange); }
.marquee-track { width: max-content; display: flex; animation: marquee 32s linear infinite; }
.marquee-track span { white-space: nowrap; font-family: Poppins,sans-serif; font-size: 17px; font-weight: 600; }
.marquee-track i { margin: 0 22px; color: var(--navy); font-size: 11px; }
@keyframes marquee { to { transform: translateX(-50%); } }

.contact-band { padding: 85px 0; color: #fff; background: var(--orange); position: relative; overflow: hidden; }
.contact-band::after { content: ''; position: absolute; width: 420px; height: 420px; right: -100px; top: -280px; border: 60px solid rgba(255,255,255,.08); transform: rotate(45deg); }
.contact-band__grid { position: relative; z-index: 1; display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: center; }
.contact-band__intro h2 { margin: 12px 0 16px; font-family: Poppins,sans-serif; font-size: clamp(30px,3.6vw,46px); line-height: 1.22; }
.contact-band__intro p { margin: 0; color: rgba(255,255,255,.82); line-height: 1.7; }
.enquiry-form { padding: 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 15px; background: #fff; box-shadow: var(--shadow); }
.enquiry-form label { position: relative; }
.enquiry-form label > span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.enquiry-form input, .enquiry-form select { width: 100%; height: 52px; padding: 0 15px; border: 1px solid #e4e7eb; outline: 0; color: #4b5260; background: #f8f9fb; font-size: 13px; }
.enquiry-form input:focus, .enquiry-form select:focus { border-color: var(--orange); background: #fff; }
.enquiry-form button { height: 52px; border: 0; color: #fff; background: var(--navy); font-family: Poppins,sans-serif; font-size: 12px; font-weight: 600; transition: background .25s; }
.enquiry-form button:hover { background: var(--orange); }
.form-status { grid-column: 1/-1; margin: 0; color: var(--navy); font-size: 12px; text-align: center; }

.footer { position: relative; color: rgba(255,255,255,.68); background: #10152f; }
.footer__background { position: absolute; inset: 0; overflow: hidden; }
.footer__background img, .footer__background span { position: absolute; inset: 0; width: 100%; height: 100%; }
.footer__background img { object-fit: cover; opacity: .16; }
.footer__background span { background: linear-gradient(90deg,rgba(9,14,37,.98),rgba(17,25,67,.93)); }
.footer__main { min-height: 450px; padding: 85px 0 65px; position: relative; z-index: 1; display: grid; grid-template-columns: 1.25fr .85fr .7fr 1.3fr; gap: 55px; }
.footer-brand { width: 210px; height: 95px; display: flex; align-items: center; background: #fff; }
.footer-brand img { width: 200px; height: 90px; object-fit: contain; }
.footer__about > p { margin: 22px 0; font-size: 14px; line-height: 1.8; }
.footer-social { display: flex; gap: 8px; }
.footer-social a { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.2); transition: .25s; }
.footer-social a:hover { border-color: var(--orange); background: var(--orange); color: #fff; }
.footer__column h2 { margin: 10px 0 25px; padding-bottom: 14px; position: relative; color: #fff; font-family: Poppins,sans-serif; font-size: 17px; }
.footer__column h2::after { content: ''; position: absolute; left: 0; bottom: 0; width: 35px; height: 2px; background: var(--orange); }
.footer__column ul { margin: 0; padding: 0; list-style: none; }
.footer__column li { margin: 0 0 13px; }
.footer__column li a { font-size: 13px; transition: color .25s,padding .25s; }
.footer__column li a::before { content: '›'; margin-right: 8px; color: var(--orange); }
.footer__column li a:hover { padding-left: 5px; color: #fff; }
.footer__contact > p { display: flex; gap: 13px; font-size: 13px; line-height: 1.7; }
.footer__contact > p i { margin-top: 4px; color: var(--orange); }
.footer__contact a:hover { color: #fff; }
.footer__bottom { position: relative; z-index: 1; border-top: 1px solid rgba(255,255,255,.12); }
.footer__bottom .container-shell { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.footer__bottom p { margin: 0; font-size: 12px; }
.footer__credit { text-align: right; }
.footer__credit a { color: #fff; transition: color .25s; }
.footer__credit a:hover { color: var(--orange); }
.floating-contact { position: fixed; z-index: 110; right: 22px; bottom: 82px; display: grid; gap: 11px; }
.floating-contact__button { width: 52px; height: 52px; position: relative; display: grid; place-items: center; border-radius: 50%; color: #fff; box-shadow: 0 10px 28px rgba(17,25,67,.24); transition: transform .25s,box-shadow .25s; }
.floating-contact__button::before { content: ''; position: absolute; inset: -5px; z-index: -1; border: 1px solid currentColor; border-radius: inherit; opacity: .32; animation: contactPulse 2.4s ease-out infinite; }
.floating-contact__button i { font-size: 21px; }
.floating-contact__button > span { position: absolute; right: calc(100% + 12px); top: 50%; padding: 7px 10px; border-radius: 3px; color: #fff; background: var(--navy-deep); font-family: Poppins,sans-serif; font-size: 10px; font-weight: 600; line-height: 1; white-space: nowrap; opacity: 0; visibility: hidden; transform: translate(8px,-50%); transition: .25s; }
.floating-contact__button > span::after { content: ''; position: absolute; right: -5px; top: 50%; width: 10px; height: 10px; background: var(--navy-deep); transform: translateY(-50%) rotate(45deg); }
.floating-contact__button:hover { color: #fff; box-shadow: 0 14px 32px rgba(17,25,67,.32); transform: translateY(-3px); }
.floating-contact__button:hover > span, .floating-contact__button:focus-visible > span { opacity: 1; visibility: visible; transform: translate(0,-50%); }
.floating-contact__button--call { background: var(--orange); }
.floating-contact__button--whatsapp { background: #25d366; }
.floating-contact__button--whatsapp::before { animation-delay: 1.2s; }
@keyframes contactPulse { 0% { opacity: .35; transform: scale(.92); } 70%,100% { opacity: 0; transform: scale(1.25); } }
.back-to-top { position: fixed; z-index: 99; right: 22px; bottom: 22px; width: 46px; height: 46px; border: 0; color: #fff; background: var(--orange); opacity: 0; visibility: hidden; transform: translateY(15px); transition: .3s; }
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--navy); }

@media (max-width: 1199px) {
  .container-shell { width: min(100% - 36px, 1050px); }
  .nav-links { gap: 18px; }
  .nav-cta { display: none; }
  .hero-controls { right: 28px; }
  .product-grid { grid-template-columns: repeat(3,1fr); }
  .about-grid, .quality-grid { gap: 50px; }
  .footer__main { grid-template-columns: 1.2fr .8fr .8fr 1.2fr; gap: 32px; }
}

@media (max-width: 991px) {
  html { scroll-padding-top: 75px; }
  .site-header.has-fixed-nav { padding-bottom: 76px; }
  .topbar__contacts { gap: 15px; }
  .topbar__contacts a { font-size: 10.5px; white-space: nowrap; }
  .topbar__right > span { display: none; }
  .navbar, .navbar.is-fixed { height: 76px; }
  .brand, .brand img { height: 66px; }
  .menu-toggle { display: block; }
  .nav-panel { position: fixed; inset: 118px 0 0 auto; width: min(390px,100%); height: auto; padding: 22px; display: block; overflow-y: auto; overscroll-behavior: contain; background: #fff; transform: translateX(105%); transition: transform .35s cubic-bezier(.77,0,.18,1),top .3s; box-shadow: -20px 20px 50px rgba(17,25,67,.16); }
  .navbar.is-fixed .nav-panel { top: 76px; }
  .nav-panel.is-open { transform: translateX(0); }
  .nav-links { height: auto; display: block; }
  .nav-links > li { height: auto; display: block; border-bottom: 1px solid var(--line); }
  .nav-links > li > a { height: auto; padding: 16px 4px; justify-content: space-between; }
  .nav-links > li > a::after { display: none; }
  .mega-menu { width: 100%; padding: 0 5px 14px; position: static; display: none; grid-template-columns: 1fr; box-shadow: none; border: 0; opacity: 1; visibility: visible; transform: none; }
  .has-mega-menu.is-expanded .mega-menu { display: grid; }
  .hero { height: 720px; min-height: 0; }
  .hero-slide__content { padding-top: 10px; }
  .hero h1, .hero h2 { max-width: 700px; }
  .hero-scroll { display: none; }
  .strength-grid { grid-template-columns: 1fr 1fr; }
  .about-grid, .quality-grid, .values-grid, .contact-band__grid { grid-template-columns: 1fr; }
  .about-grid { gap: 55px; }
  .about-copy { max-width: 720px; }
  .product-grid { grid-template-columns: repeat(2,1fr); }
  .quote-band__inner { gap: 25px; }
  .quality-copy { order: 2; }
  .quality-media { order: 1; max-width: 700px; }
  .industry-grid { grid-template-columns: 1fr 1fr; }
  .industry-card--wide { grid-column: span 1; }
  .values-grid { gap: 55px; }
  .values-intro { max-width: 700px; }
  .customers-heading { grid-template-columns: 1fr; gap: 26px; }
  .customers-heading__copy { max-width: 700px; }
  .customer-showcase { grid-template-columns: 1fr; }
  .customer-promises { grid-template-columns: repeat(3,1fr); grid-template-rows: none; }
  .customer-promise { min-height: 215px; padding: 26px 22px; grid-template-columns: 1fr; align-content: start; }
  .customer-promise__icon { grid-row: auto; margin-bottom: 13px; }
  .customer-promise:hover { transform: translateY(-6px); }
  .customer-process { grid-template-columns: 1fr 1fr; gap: 0; padding: 16px 24px; }
  .customer-process > div { min-height: 75px; }
  .customer-process__arrow { display: none; }
  .contact-band__grid { gap: 40px; }
  .footer__main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
  .container-shell { width: calc(100% - 28px); }
  .section { padding: 80px 0; }
  .section-title { font-size: clamp(31px,8vw,43px); letter-spacing: -1px; }
  .section-heading { margin-bottom: 40px; }
  .topbar { height: 38px; }
  .topbar__contacts { width: 100%; justify-content: center; gap: 18px; }
  .topbar__contacts a { font-size: 11px; }
  .topbar__contact--primary, .topbar__contact--email { display: none !important; }
  .topbar__right { display: none; }
  .navbar.is-fixed { top: 0; }
  .nav-panel { top: 114px; width: 100%; }
  .navbar.is-fixed .nav-panel { top: 76px; }
  .brand { width: 150px; }
  .brand img { width: 145px; }
  .hero {
    height: var(--mobile-hero-height, 620px);
    min-height: 0;
    transition: height .35s ease;
  }
  .hero-slide__shade { background: linear-gradient(90deg,rgba(8,15,49,.94),rgba(12,20,56,.68)); }
  .hero-slide__content {
    height: auto;
    min-height: 0;
    padding-top: 68px;
    padding-bottom: 0;
    justify-content: flex-start;
  }
  .hero h1, .hero h2 { max-width: 620px; font-size: clamp(34px,8.5vw,48px); line-height: 1.12; letter-spacing: -1.2px; }
  .hero h1 em, .hero h2 em { display: block; }
  .hero-slide__content > p { max-width: 590px; margin: 22px 0 27px; font-size: 15.5px; line-height: 1.65; }
  .hero-actions { gap: 10px; }
  .hero-controls { left: 14px; right: auto; bottom: 24px; }
  .strength-grid { width: 100%; grid-template-columns: 1fr 1fr; }
  .strength-card { min-height: 190px; padding: 28px 22px; }
  .about-media { min-height: 500px; }
  .about-media__main { height: 430px; }
  .about-media__small { height: 195px; }
  .experience-seal { width: 135px; height: 135px; }
  .experience-seal strong { font-size: 40px; }
  .about-points { grid-template-columns: 1fr; }
  .about-signoff { align-items: flex-start; flex-direction: column; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .product-card { height: 330px; }
  .quote-band { height: auto; padding: 65px 0; }
  .quote-band__inner { align-items: flex-start; flex-direction: column; }
  .quote-band__image { left: 35%; }
  .quote-band .button { min-width: 190px; }
  .quality-list { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; padding: 35px 0; }
  .stat { min-height: 160px; }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.16); }
  .section-heading--split { grid-template-columns: 1fr; gap: 24px; }
  .industry-grid { grid-auto-rows: 280px; }
  .customers-heading { grid-template-columns: 1fr; gap: 26px; }
  .customers-heading__copy { max-width: 700px; }
  .customer-showcase { grid-template-columns: 1fr; }
  .customer-promises { grid-template-columns: repeat(3,1fr); grid-template-rows: none; }
  .customer-promise { min-height: 215px; padding: 26px 22px; grid-template-columns: 1fr; align-content: start; }
  .customer-promise__icon { grid-row: auto; margin-bottom: 13px; }
  .customer-promise:hover { transform: translateY(-6px); }
  .customer-process { grid-template-columns: 1fr 1fr; gap: 0; padding: 16px 24px; }
  .customer-process > div { min-height: 75px; }
  .customer-process__arrow { display: none; }
  .enquiry-form { grid-template-columns: 1fr; }
  .form-status { grid-column: auto; }
  .footer__main { grid-template-columns: 1fr 1fr; gap: 38px 26px; }
  .footer__about, .footer__contact { grid-column: 1/-1; }
  .footer__bottom .container-shell { padding: 20px 0; flex-direction: column; justify-content: center; text-align: center; }
  .footer__credit { text-align: center; line-height: 1.65; }
  .floating-contact { right: 16px; bottom: 72px; gap: 9px; }
  .floating-contact__button { width: 48px; height: 48px; }
  .back-to-top { right: 18px; bottom: 16px; width: 44px; height: 44px; }
}

@media (max-width: 540px) {
  .container-shell { width: calc(100% - 24px); }
  .section { padding: 62px 0; }
  .topbar__contacts { gap: 14px; }
  .topbar__contacts a { font-size: 10.5px; }
  .hero { height: var(--mobile-hero-height, 590px); min-height: 0; }
  .hero-slide__content { padding-top: 52px; padding-bottom: 0; }
  .hero-kicker { margin-bottom: 16px; gap: 9px; font-size: 8.5px; line-height: 1.45; letter-spacing: 1.25px; }
  .hero-kicker span { width: 30px; flex: 0 0 30px; }
  .hero h1, .hero h2 { font-size: clamp(32px,9.6vw,40px); line-height: 1.13; letter-spacing: -.9px; }
  .hero-slide__content > p { margin: 20px 0 24px; font-size: 15px; line-height: 1.62; }
  .hero-actions .button { width: 100%; }
  .hero-actions { width: 100%; }
  .hero-actions .button { min-height: 50px; padding-inline: 18px; }
  .hero-arrow { width: 40px; height: 40px; }
  .hero-controls { left: 12px; bottom: 18px; gap: 11px; }
  .hero-dots { gap: 6px; }
  .hero-dots button { width: 22px; }
  .strength-grid { grid-template-columns: 1fr; }
  .strength-card { min-height: 150px; }
  .about-media { min-height: 405px; }
  .about-media__main { width: 92%; height: 345px; }
  .about-media__small { width: 56%; height: 155px; border-width: 7px; }
  .experience-seal { width: 115px; height: 115px; top: 28px; }
  .experience-seal strong { font-size: 34px; }
  .experience-seal small { font-size: 9px; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card { height: 325px; }
  .quote-band .button { width: 100%; }
  .quality-media { min-height: 435px; }
  .quality-media > img { height: 385px; margin-left: 18px; width: calc(100% - 18px); }
  .quality-card { width: 225px; min-height: 190px; padding: 24px; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.16); }
  .industry-grid { grid-template-columns: 1fr; grid-auto-rows: 265px; }
  .values-list { grid-template-columns: 1fr; }
  .customer-feature, .customer-feature__content { min-height: 520px; }
  .customer-feature__content { padding: 40px 30px 34px 36px; }
  .customer-feature blockquote { font-size: 23px; }
  .customer-feature__footer { align-items: flex-start; flex-wrap: wrap; }
  .customer-promises { grid-template-columns: 1fr; }
  .customer-promise { min-height: 160px; grid-template-columns: 58px 1fr; align-content: center; }
  .customer-promise__icon { grid-row: 1 / span 2; margin-bottom: 0; }
  .customer-process { grid-template-columns: 1fr; }
  .customer-process > div { border-bottom: 1px solid var(--line); }
  .customer-process > div:last-of-type { border-bottom: 0; }
  .enquiry-form { padding: 20px; }
  .footer__main { min-height: 0; padding: 58px 0 32px; grid-template-columns: 1fr; gap: 28px; }
  .footer__about, .footer__contact { grid-column: auto; }
  .footer__about { text-align: center; }
  .footer-brand { width: 175px; height: 78px; margin-inline: auto; }
  .footer-brand img { width: 168px; height: 74px; }
  .footer__about > p { margin: 17px 0; font-size: 13px; }
  .footer-social { justify-content: center; }
  .footer__column { padding-bottom: 22px; border-bottom: 1px solid rgba(255,255,255,.1); }
  .footer__column h2 { margin: 3px 0 18px; }
  .footer__column:not(.footer__contact) ul { display: grid; grid-template-columns: 1fr 1fr; gap: 0 12px; }
  .footer__column li { margin-bottom: 10px; min-width: 0; }
  .footer__column li a { display: block; overflow-wrap: anywhere; }
  .footer__contact { padding-bottom: 0; border-bottom: 0; }
  .footer__contact > p { margin: 0 0 14px; align-items: flex-start; overflow-wrap: anywhere; }
  .footer__bottom { padding-bottom: 70px; }
  .footer__bottom .container-shell { min-height: 0; padding: 20px 0; flex-direction: column; justify-content: center; text-align: center; }
  .floating-contact { right: 14px; bottom: max(14px, env(safe-area-inset-bottom)); display: flex; gap: 8px; }
  .floating-contact__button { width: 46px; height: 46px; }
  .floating-contact__button > span { display: none; }
  .back-to-top { left: 14px; right: auto; bottom: max(16px, env(safe-area-inset-bottom)); width: 42px; height: 42px; }
}

@media (max-width: 380px) {
  .container-shell { width: calc(100% - 20px); }
  .topbar { height: 36px; }
  .topbar__contacts a { font-size: 10px; }
  .navbar, .navbar.is-fixed { height: 70px; }
  .site-header.has-fixed-nav { padding-bottom: 70px; }
  .nav-panel { top: 106px; padding: 18px; }
  .navbar.is-fixed .nav-panel { top: 70px; }
  .brand { width: 132px; }
  .brand, .brand img { height: 58px; }
  .brand img { width: 128px; }
  .menu-toggle { width: 43px; height: 43px; }
  .hero { height: var(--mobile-hero-height, 570px); min-height: 0; }
  .hero-slide__content { padding-top: 44px; }
  .hero h1, .hero h2 { font-size: 32px; }
  .hero-slide__content > p { font-size: 14px; }
  .hero-actions .button { font-size: 11px; }
  .about-media { min-height: 380px; }
  .about-media__main { height: 325px; }
  .experience-seal { width: 102px; height: 102px; }
  .product-card { height: 305px; }
  .quality-card { width: 205px; }
  .customer-feature__content { padding-inline: 28px 22px; }
  .customer-feature blockquote { font-size: 21px; }
  .enquiry-form { padding: 16px; }
  .footer__column:not(.footer__contact) ul { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
