:root {
  --red: #c51621;
  --red-dark: #8f1119;
  --red-soft: #fff0f1;
  --ink: #16181d;
  --muted: #5f6672;
  --line: #e3e6eb;
  --panel: #ffffff;
  --steel: #f5f6f8;
  --charcoal: #222833;
  --yellow: #f2c94c;
  --shadow: 0 22px 70px rgba(16, 20, 28, .16);
  --topbar-height: 36px;
  --page-pad: clamp(52px, 7vw, 88px);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--topbar-height) + 86px);
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
}

a {
  color: inherit;
}

.anchor-target {
  display: block;
  scroll-margin-top: 110px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 9px clamp(18px, 4vw, 56px);
  color: #fff;
  background: var(--red-dark);
  font-size: 14px;
}

.topbar span {
  color: rgba(255, 255, 255, .78);
}

.topbar a {
  font-weight: 800;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: var(--topbar-height);
  z-index: 29;
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(227, 230, 235, .9);
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  color: #fff;
  background: var(--red);
  font-weight: 900;
  letter-spacing: 0;
}

.brand strong,
.brand em {
  display: block;
  font-style: normal;
  line-height: 1.1;
}

.brand strong {
  max-width: 260px;
  overflow-wrap: anywhere;
}

.brand em {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-left: auto;
  font-size: 14px;
  font-weight: 800;
}

.primary-nav a,
.header-cta {
  text-decoration: none;
}

.primary-nav > a,
.nav-trigger {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 10px;
  border-radius: 6px;
}

.primary-nav > a:hover,
.nav-item:hover .nav-trigger,
.nav-item:focus-within .nav-trigger {
  color: var(--red);
  background: var(--red-soft);
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: var(--mega-left, 0px);
  right: auto;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(240px, .45fr) minmax(0, 1fr);
  gap: 18px;
  width: min(720px, calc(100vw - 36px));
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 0 0 8px 8px;
  background: rgba(255, 255, 255, .98);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .16s ease, transform .16s ease;
}

.nav-edge .mega-menu,
.primary-nav .nav-item:nth-last-of-type(-n + 2) .mega-menu {
  left: auto;
  right: 0;
}

.nav-item:hover .mega-menu,
.nav-item:focus-within .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.compact-menu {
  width: min(620px, calc(100vw - 36px));
}

.mega-links.three-col {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mega-intro {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 210px;
  padding: 22px;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(197, 22, 33, .96), rgba(34, 40, 51, .98)),
    var(--red);
}

.mega-intro span {
  color: rgba(255, 255, 255, .76);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.mega-intro strong {
  font-size: 24px;
  line-height: 1.08;
}

.mega-intro p {
  margin: 0;
  color: rgba(255, 255, 255, .74);
  line-height: 1.5;
}

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

.mega-links.three-col {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mega-links a {
  display: grid;
  gap: 7px;
  min-height: 86px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--steel);
  text-decoration: none;
}

.mega-links a:hover,
.mega-links a:focus {
  border-color: rgba(197, 22, 33, .35);
  background: var(--red-soft);
}

.mega-links span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.mega-links strong {
  line-height: 1.2;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 6px;
  color: #fff;
  background: var(--red);
  font-weight: 900;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  color: #fff;
  background: #121720;
  isolation: isolate;
}

.hero-slider,
.hero-slide,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: inherit;
}

.hero-slider {
  z-index: 0;
  pointer-events: none;
}

.hero-slide {
  z-index: 0;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: translateX(100%) scale(1.02);
  transition: transform .75s cubic-bezier(.72, 0, .22, 1);
  will-change: transform;
}

.hero-slide.is-active {
  z-index: 2;
  transform: translateX(0) scale(1.02);
}

.hero-slide.is-previous {
  z-index: 1;
  transform: translateX(-100%) scale(1.02);
}

.hero-slide.is-resetting {
  transition: none;
}

.hero-overlay {
  display: none;
}

.hero-inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .42fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  min-height: 720px;
  padding: 54px clamp(18px, 4vw, 56px) 38px;
}

.hero-copy {
  position: relative;
  max-width: 780px;
  padding: clamp(24px, 4vw, 42px);
  border-left: 8px solid var(--red);
  border-radius: 8px;
  background: rgba(17, 21, 28, .82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.hero-copy > * {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ff6b72;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(46px, 6.8vw, 86px);
  line-height: .94;
  letter-spacing: 0;
}

.hero-copy p {
  max-width: 690px;
  color: rgba(255, 255, 255, .82);
  font-size: 19px;
  line-height: 1.65;
}

.hero-actions,
.section-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.slider-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 22px;
}

.slider-dot {
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, .1);
  font-size: 12px;
  font-weight: 900;
}

.slider-dot.is-active {
  border-color: var(--red);
  background: var(--red);
}

.button,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 6px;
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

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

.button.secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .5);
  background: rgba(255, 255, 255, .1);
}

.button.dark {
  color: #fff;
  background: var(--ink);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 880px;
  margin: 36px 0 0;
  background: rgba(255, 255, 255, .16);
}

.proof-strip div {
  padding: 18px;
  background: rgba(17, 21, 28, .75);
}

.proof-strip dt {
  margin-bottom: 7px;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
}

.proof-strip dd {
  margin: 0;
  color: rgba(255, 255, 255, .7);
  font-size: 13px;
  line-height: 1.45;
}

.hero-form,
.quote-form,
.contact-card {
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.hero-form {
  padding: 24px;
}

.hero-form h2 {
  margin-bottom: 8px;
  font-size: 25px;
}

.hero-form p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--charcoal);
  font-size: 13px;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 13px 12px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

textarea {
  resize: vertical;
}

.form-honeypot {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-captcha {
  padding: 12px;
  border: 1px solid rgba(194, 31, 42, .18);
  border-radius: 6px;
  background: #fff6f6;
}

.form-error {
  min-height: 16px;
  color: var(--red-dark);
  font-size: 12px;
  font-weight: 800;
}

.intent-bar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.intent-bar a {
  display: flex;
  gap: 10px;
  align-items: center;
  min-height: 70px;
  padding: 14px 20px;
  border-right: 1px solid var(--line);
  font-weight: 900;
  text-decoration: none;
}

.intent-bar span {
  color: var(--red);
  font-size: 12px;
}

.section {
  padding: clamp(58px, 8vw, 106px) clamp(18px, 4vw, 56px);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading h2,
.opening-section h2,
.proof-panel h2,
.conversion-section h2,
.quote-copy h2 {
  margin-bottom: 15px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: 0;
}

.section-heading p,
.opening-section p,
.proof-panel p,
.conversion-section p,
.quote-copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.opening-section {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(300px, .55fr);
  gap: clamp(24px, 5vw, 76px);
  align-items: end;
  background: var(--steel);
}

.equipment-grid,
.service-grid,
.sector-grid,
.about-points,
.brand-groups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.equipment-grid article,
.service-grid article,
.sector-grid article,
.about-points article,
.brand-group {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.equipment-grid span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
}

.equipment-grid h3,
.service-grid h3,
.sector-grid h3 {
  margin: 16px 0 12px;
  font-size: 23px;
}

.equipment-grid p,
.service-grid p,
.sector-grid p,
.about-points span,
.brand-group p {
  color: var(--muted);
  line-height: 1.55;
}

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

.sector-grid article {
  min-height: 520px;
  overflow: hidden;
}

.sector-image-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.sector-grid img {
  display: block;
  width: calc(100% + 48px);
  aspect-ratio: 4 / 3;
  margin: -24px -24px 22px;
  object-fit: cover;
  background: var(--steel);
}

.sector-grid p + p {
  margin-top: 14px;
}

.sector-grid strong {
  color: var(--ink);
}

.all-makes-section {
  background: var(--steel);
}

.brand-group {
  display: grid;
  gap: 20px;
  min-height: 360px;
  align-content: space-between;
}

.brand-group span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.brand-group h3 {
  margin: 12px 0;
  font-size: 25px;
  line-height: 1.08;
}

.primary-brand-group {
  border-color: rgba(197, 22, 33, .35);
  box-shadow: 0 18px 50px rgba(197, 22, 33, .12);
}

.brand-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.brand-list li {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  font-weight: 900;
}

.priority-list li {
  color: #fff;
  border-color: var(--red);
  background: var(--red);
}

.all-makes-cta {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  margin-top: 20px;
  padding: 20px;
  border-radius: 8px;
  color: #fff;
  background: var(--charcoal);
}

.all-makes-cta strong {
  font-size: 20px;
}

.all-makes-cta span {
  color: rgba(255, 255, 255, .72);
  line-height: 1.45;
}

.accent-card {
  color: #fff;
  border-color: var(--red) !important;
  background: var(--red) !important;
}

.accent-card span,
.accent-card p {
  color: rgba(255, 255, 255, .82) !important;
}

.red-band {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(197, 22, 33, .95), rgba(35, 40, 51, .98)),
    var(--red);
}

.red-band .eyebrow,
.red-band .section-heading p {
  color: rgba(255, 255, 255, .76);
}

.red-band .service-grid article {
  border-color: rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .1);
}

.red-band .service-grid p {
  color: rgba(255, 255, 255, .72);
}

.service-grid a {
  color: inherit;
  font-weight: 900;
}

.split-proof {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .5fr);
  gap: 22px;
  background: var(--steel);
}

.proof-panel {
  padding: clamp(26px, 4vw, 46px);
  border-left: 8px solid var(--red);
  background: #fff;
}

.about-points {
  grid-template-columns: 1fr;
}

.about-points article {
  min-height: 0;
}

.about-points strong {
  display: block;
  margin-bottom: 8px;
  font-size: 19px;
}

.conversion-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(42px, 7vw, 72px) clamp(18px, 4vw, 56px);
  color: #fff;
  background: var(--red);
}

.conversion-section .eyebrow,
.conversion-section p {
  color: rgba(255, 255, 255, .78);
}

.bay-360-section {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 680px;
  padding: clamp(58px, 8vw, 104px) clamp(18px, 4vw, 56px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(17, 21, 28, .94) 0%, rgba(28, 34, 44, .78) 46%, rgba(143, 17, 25, .26) 100%),
    linear-gradient(0deg, rgba(17, 21, 28, .76), rgba(17, 21, 28, .12) 55%),
    url("assets/loading-bay-360-review.png") center / cover no-repeat;
}

.bay-360-copy {
  position: relative;
  max-width: 760px;
  padding: clamp(26px, 4vw, 42px);
  border-left: 8px solid var(--red);
  border-radius: 8px;
  background: rgba(17, 21, 28, .78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.bay-360-copy .eyebrow {
  color: #ff9aa0;
}

.bay-360-copy h2 {
  margin-bottom: 16px;
  font-size: clamp(34px, 4.4vw, 60px);
  line-height: 1.02;
}

.bay-360-copy > p {
  color: rgba(255, 255, 255, .74);
  font-size: 18px;
  line-height: 1.65;
}

.bay-360-points {
  display: grid;
  gap: 12px;
  margin: 28px 0 24px;
}

.bay-360-points article {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
}

.bay-360-points strong,
.bay-360-points span {
  display: block;
}

.bay-360-points strong {
  margin-bottom: 7px;
  color: #fff;
  font-size: 18px;
}

.bay-360-points span {
  color: rgba(255, 255, 255, .72);
  line-height: 1.5;
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(0, .7fr) minmax(340px, .8fr);
  gap: clamp(28px, 5vw, 70px);
  background: var(--charcoal);
}

.quote-copy h2 {
  color: #fff;
}

.quote-copy p {
  color: rgba(255, 255, 255, .7);
}

.contact-card {
  display: grid;
  gap: 8px;
  max-width: 430px;
  margin-top: 24px;
  padding: 22px;
}

.contact-card a {
  color: var(--red);
  font-size: 24px;
  font-weight: 900;
  text-decoration: none;
}

.quote-form {
  padding: clamp(22px, 4vw, 34px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.form-note a {
  color: var(--red);
  font-weight: 900;
}

.kb-index-hero,
.kb-article-hero {
  padding: clamp(64px, 8vw, 104px) clamp(18px, 4vw, 56px);
  color: #fff;
  background:
    linear-gradient(105deg, rgba(17, 21, 28, .94), rgba(143, 17, 25, .78)),
    url("assets/hero-loading-bays.png") center / cover;
}

.kb-article-hero {
  background:
    linear-gradient(105deg, rgba(17, 21, 28, .96), rgba(143, 17, 25, .84)),
    url("assets/hero-sectional-doors.png") center / cover;
}

.kb-index-hero h1,
.kb-article-hero h1 {
  max-width: 980px;
}

.kb-index-hero p,
.kb-article-hero > p {
  max-width: 760px;
  color: rgba(255, 255, 255, .84);
  font-size: 20px;
  line-height: 1.65;
}

.kb-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(42px, 6vw, 78px) clamp(18px, 4vw, 56px);
  background: var(--steel);
}

.kb-card {
  display: grid;
  gap: 12px;
  min-height: 255px;
  padding: 22px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--red);
  border-radius: 8px;
  background: #fff;
}

.kb-card span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.kb-card h2 {
  margin: 0;
  font-size: 22px;
}

.kb-card a {
  text-decoration: none;
}

.kb-card p {
  margin: 0;
  color: var(--muted);
}

.kb-search-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: end;
  padding: 28px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.kb-search-panel label {
  display: grid;
  gap: 8px;
  font-weight: 900;
}

.kb-search-panel input {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

.kb-search-panel p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.kb-hub-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  padding: 28px clamp(18px, 4vw, 56px);
  background: var(--steel);
}

.kb-hub-link {
  display: grid;
  gap: 7px;
  min-height: 94px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  text-decoration: none;
}

.kb-hub-link strong {
  font-size: 17px;
}

.kb-hub-link span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.kb-faq-section {
  padding: clamp(42px, 6vw, 78px) clamp(18px, 4vw, 56px);
  background: #fff;
}

.kb-faq-list {
  display: grid;
  gap: 10px;
  max-width: 980px;
}

.kb-faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.kb-faq-item summary {
  padding: 18px 20px;
  font-weight: 900;
  cursor: pointer;
}

.kb-faq-item p {
  margin: 0;
  padding: 0 20px 12px;
  color: var(--muted);
  line-height: 1.65;
}

.kb-faq-item a {
  display: inline-flex;
  margin: 0 20px 18px;
  color: var(--red);
  font-weight: 900;
  text-decoration: none;
}

.kb-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 980px;
  margin: 28px 0 0;
}

.kb-meta div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 8px;
  background: rgba(255, 255, 255, .12);
}

.kb-meta dt {
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.kb-meta dd {
  margin: 4px 0 0;
  font-weight: 800;
}

.kb-article-body {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(42px, 6vw, 78px) 18px;
}

.kb-article-body section {
  padding: 0 0 30px;
  margin: 0 0 30px;
  border-bottom: 1px solid var(--line);
}

.kb-article-body p,
.kb-article-body li {
  color: #38404b;
  font-size: 18px;
  line-height: 1.75;
}

.kb-article-body ul {
  padding-left: 22px;
}

.kb-article-body a {
  color: var(--red);
  font-weight: 800;
}

.kb-cta {
  padding: 22px;
  border-left: 6px solid var(--red);
  border-radius: 8px;
  background: var(--red-soft);
  font-weight: 800;
}

.insight-index-hero,
.insight-hero {
  --insight-copy-left: max(var(--page-pad), calc((100vw - 1180px) / 2 + var(--page-pad)));
  padding: 31px var(--page-pad) 24px;
  background: linear-gradient(90deg, rgba(15, 20, 28, 0.78), rgba(15, 20, 28, 0.32)), var(--insight-hero-image, url("assets/hero-sectional-doors.png")) center / cover;
  color: #fff;
  text-align: left;
}

.insight-index-hero > *,
.insight-hero > * {
  width: min(880px, calc(100vw - var(--insight-copy-left) - var(--page-pad)));
  margin-left: var(--insight-copy-left);
  margin-right: 0;
}

.insight-index-hero h1,
.insight-hero h1 {
  max-width: 880px;
  margin-top: 8px;
  margin-bottom: 16px;
  color: #fff;
}

.insight-index-hero p,
.insight-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.86);
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 34px var(--page-pad) 76px;
}

.home-insight-grid {
  padding: 0;
}

.home-insights-section {
  background: #f7f8fb;
}

.insight-card {
  min-height: 248px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.insight-card-image {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  margin: -24px -24px 6px;
  border-radius: 8px 8px 0 0;
  background: #202832;
}

.insight-card-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.insight-card span {
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.insight-card h2,
.insight-card h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.18;
}

.insight-card a {
  color: var(--ink);
  text-decoration: none;
}

.insight-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.insight-index-button {
  margin-top: 20px;
}

.insight-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 34px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 56px var(--page-pad) 82px;
}

.insight-side {
  position: sticky;
  top: calc(var(--topbar-height) + 92px);
  align-self: start;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.insight-supporting-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
  margin-bottom: 18px;
  border-radius: 8px;
}

.insight-side strong {
  display: block;
  margin-top: 18px;
  color: var(--ink);
}

.insight-side strong:first-child {
  margin-top: 0;
}

.insight-side p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.insight-body {
  display: grid;
  gap: 22px;
}

.insight-body section {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.insight-body h2 {
  margin: 0 0 12px;
  font-size: 28px;
}

.insight-body p,
.insight-body li {
  color: var(--body);
  line-height: 1.72;
}

.insight-body ul {
  display: grid;
  gap: 10px;
  padding-left: 20px;
}

.insight-body a {
  color: var(--red);
  font-weight: 800;
}

.mega-insight-links {
  gap: 12px;
}

.insights-menu .mega-insight-feature {
  border-radius: 8px;
  background: var(--red);
  color: #fff;
}

.insights-menu .mega-insight-feature img {
  width: 100%;
  aspect-ratio: 16 / 10;
  display: block;
  object-fit: cover;
  margin-bottom: 10px;
  border-radius: 6px;
}

.insights-menu .mega-insight-feature span,
.insights-menu .mega-insight-feature p {
  color: rgba(255, 255, 255, .82);
}

.insights-menu .mega-insight-feature strong {
  color: #fff;
}

.insight-footer-nav {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 7vw, 96px) var(--page-pad);
  color: #fff;
  background:
    linear-gradient(105deg, rgba(143, 17, 25, .94) 0%, rgba(77, 18, 24, .84) 44%, rgba(17, 21, 28, .92) 100%),
    var(--insight-footer-image),
    linear-gradient(105deg, #8f1119 0%, #4d1218 44%, #11151c 100%);
  background-position: center;
  background-size: cover;
}

.insight-footer-nav::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .08), transparent 22%),
    radial-gradient(circle at 88% 18%, rgba(255, 255, 255, .09), transparent 34%),
    radial-gradient(circle at 12% 10%, rgba(197, 22, 33, .28), transparent 36%);
}

.insight-footer-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 28px;
  max-width: 1680px;
  margin: 0 auto;
}

.insight-footer-copy {
  max-width: 820px;
}

.insight-footer-copy .eyebrow {
  margin-bottom: 12px;
  color: #fff;
}

.insight-footer-copy h2 {
  max-width: 820px;
  margin: 0;
  color: #fff;
  font-size: clamp(38px, 5vw, 70px);
  line-height: .98;
}

.insight-footer-copy p:last-child {
  max-width: 840px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.45;
}

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

.insight-footer-card {
  display: grid;
  align-content: start;
  min-height: 148px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 8px;
  background: rgba(255, 255, 255, .09);
  color: #fff;
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .11);
  backdrop-filter: blur(12px);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.insight-footer-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, .38);
  background: rgba(255, 255, 255, .13);
}

.insight-footer-card.is-disabled {
  color: rgba(255, 255, 255, .62);
  border-color: rgba(255, 255, 255, .16);
  background: rgba(17, 21, 28, .42);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .04);
}

.insight-footer-card.is-disabled:hover {
  transform: none;
  border-color: rgba(255, 255, 255, .16);
  background: rgba(17, 21, 28, .42);
}

.insight-footer-card span {
  display: block;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, .72);
  font-size: 15px;
  font-weight: 700;
}

.insight-footer-card strong {
  display: block;
  color: #fff;
  font-size: clamp(18px, 1.3vw, 23px);
  line-height: 1.2;
}

.insight-footer-card.is-disabled strong {
  color: rgba(255, 255, 255, .64);
}

.insight-footer-card em {
  display: block;
  margin-top: 14px;
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
}

.insight-footer-more {
  justify-self: start;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  text-decoration-color: var(--red);
  text-decoration-thickness: 4px;
  text-underline-offset: 5px;
}

.insight-footer-more:hover {
  color: #fff;
  text-decoration-color: #fff;
}

.sector-page-hero {
  display: flex;
  align-items: flex-end;
  min-height: clamp(430px, 58vw, 650px);
  padding: clamp(52px, 7vw, 92px) var(--page-pad);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(15, 20, 28, .84), rgba(15, 20, 28, .34) 62%, rgba(15, 20, 28, .12)),
    var(--sector-hero-image, url("assets/loading-bay-hero.png")) center / cover;
}

.sector-page-hero > div {
  width: min(100%, 1180px);
  max-width: 1180px;
  margin: 0 auto;
}

.sector-page-hero h1 {
  margin: 10px 0 18px;
  font-size: clamp(42px, 5vw, 74px);
  line-height: 1;
  color: #fff;
}

.sector-page-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, .82);
  font-size: 18px;
  line-height: 1.65;
}

.sector-page-hero .eyebrow {
  color: rgba(255, 255, 255, .78);
}

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

.sector-detail-grid article,
.sector-related-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.sector-detail-grid h2 {
  margin: 8px 0 18px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
}

.sector-detail-grid li {
  margin-bottom: 10px;
  color: var(--body);
  line-height: 1.6;
}

.sector-related-section {
  background: #f7f8fb;
}

.sector-related-card {
  display: grid;
  gap: 8px;
  color: var(--ink);
  text-decoration: none;
}

.sector-related-card span,
.sector-card-link {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.sector-card-link {
  display: inline-flex;
  margin-top: 16px;
  text-decoration: none;
}

footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .72fr);
  gap: 26px;
  align-items: start;
  padding: 34px clamp(18px, 4vw, 56px);
  color: rgba(255, 255, 255, .74);
  background: #11151c;
}

footer strong {
  color: #fff;
  font-size: 22px;
}

footer p {
  max-width: 720px;
  margin: 0;
}

.footer-main {
  display: grid;
  gap: 10px;
}

.footer-backing-link {
  color: rgba(255, 255, 255, .74);
  font-weight: 800;
  text-decoration: none;
}

.footer-backing-link:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-locations {
  justify-self: end;
  width: min(100%, 520px);
}

.footer-locations strong {
  display: block;
  margin-bottom: 12px;
  font-size: 15px;
}

.footer-location-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px 12px;
}

.footer-location-links a {
  color: rgba(255, 255, 255, .82);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.footer-location-links a:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.location-hero {
  display: flex;
  align-items: flex-end;
  min-height: clamp(430px, 58vw, 650px);
  padding: clamp(48px, 7vw, 92px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(15, 20, 28, .84), rgba(15, 20, 28, .34) 62%, rgba(15, 20, 28, .12)),
    var(--location-hero-image, url("assets/loading-bay-hero.png")) center / cover;
}

.location-hero-copy {
  width: min(100%, 1180px);
  max-width: 1180px;
  margin: 0 auto;
}

.location-hero h1 {
  margin: 0 0 20px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: .94;
  color: #fff;
}

.location-hero p {
  max-width: 680px;
  color: rgba(255, 255, 255, .84);
  font-size: 19px;
}

.location-hero .eyebrow {
  color: rgba(255, 255, 255, .78);
}

.location-map-card,
.local-coverage-card,
.location-cta-card,
.location-pressure-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(18, 24, 38, .08);
}

.location-map-card {
  padding: clamp(18px, 3vw, 28px);
}

.local-coverage-card {
  margin-top: 22px;
  padding: clamp(22px, 3vw, 32px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, .9)),
    radial-gradient(circle at 95% 10%, rgba(197, 22, 33, .13), transparent 34%);
}

.local-coverage-card h3 {
  max-width: 760px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 3.5vw, 48px);
  line-height: 1.05;
}

.local-coverage-card p:not(.eyebrow) {
  max-width: 820px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.local-coverage-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.local-coverage-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--red);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(18, 24, 38, .08);
}

.location-map-inline {
  margin-top: 22px;
  padding: 16px;
}

.location-map-inline .open-map-wrap {
  min-height: 330px;
}

.location-map-inline .open-map-stage {
  inset: 18px 14px 86px;
}

.open-map-wrap {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 20%, rgba(225, 32, 37, .16), transparent 24%),
    linear-gradient(145deg, #f8fafc, #dfe5ed 58%, #cbd3de);
  perspective: 900px;
}

.open-map-stage {
  position: absolute;
  inset: 28px 20px 100px;
  transform: rotateX(58deg) rotateZ(-18deg);
  transform-style: preserve-3d;
}

.open-map-plane {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(24, 31, 43, .12);
  border-radius: 16px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.68) 1px, transparent 1px) 0 0 / 42px 42px,
    linear-gradient(0deg, rgba(255,255,255,.68) 1px, transparent 1px) 0 0 / 42px 42px,
    linear-gradient(135deg, #eef3f8, #c9d2dc);
  box-shadow: 0 28px 50px rgba(19, 27, 39, .22);
  transform-style: preserve-3d;
}

.open-map-plane::before,
.open-map-plane::after,
.open-map-water,
.open-map-route,
.open-map-grid {
  content: "";
  position: absolute;
  pointer-events: none;
}

.open-map-plane::before {
  inset: 10% 7% 12% 9%;
  border-radius: 48% 52% 44% 56%;
  background: linear-gradient(135deg, rgba(255,255,255,.88), rgba(236,241,247,.72));
  clip-path: polygon(8% 18%, 34% 6%, 58% 13%, 82% 4%, 94% 26%, 83% 54%, 92% 82%, 64% 92%, 42% 82%, 18% 93%, 5% 66%, 15% 44%);
}

.open-map-plane::after {
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.36), transparent);
}

.open-map-water {
  right: -7%;
  top: 8%;
  width: 28%;
  height: 78%;
  border-radius: 48%;
  background: linear-gradient(180deg, rgba(96, 149, 183, .32), rgba(96, 149, 183, .08));
}

.open-map-route {
  height: 5px;
  border-radius: 99px;
  background: rgba(225, 32, 37, .78);
  transform: translateZ(4px);
  box-shadow: 0 4px 12px rgba(225, 32, 37, .25);
}

.route-one {
  left: 19%;
  top: 42%;
  width: 58%;
  transform: translateZ(4px) rotate(10deg);
}

.route-two {
  left: 29%;
  top: 58%;
  width: 47%;
  transform: translateZ(4px) rotate(-24deg);
}

.route-three {
  left: 24%;
  top: 30%;
  width: 34%;
  transform: translateZ(4px) rotate(38deg);
}

.open-map-grid {
  width: 38%;
  height: 1px;
  background: rgba(24, 31, 43, .14);
}

.grid-one {
  left: 14%;
  top: 24%;
  transform: rotate(28deg);
}

.grid-two {
  right: 18%;
  bottom: 25%;
  transform: rotate(-34deg);
}

.open-map-pin {
  position: absolute;
  left: var(--x);
  top: var(--y);
  display: grid;
  gap: 6px;
  color: #101722;
  font-size: 11px;
  font-weight: 900;
  text-decoration: none;
  transform: translate(-50%, -50%) translateZ(32px) rotateZ(18deg) rotateX(-58deg);
  transform-style: preserve-3d;
}

.open-map-pin span {
  width: 14px;
  height: 14px;
  border: 3px solid #fff;
  border-radius: 50% 50% 50% 0;
  background: #101722;
  box-shadow: 0 8px 16px rgba(16, 23, 34, .22);
  transform: rotate(-45deg);
}

.open-map-pin strong {
  padding: 4px 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .88);
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(16, 23, 34, .12);
}

.open-map-pin.is-active span {
  background: var(--red);
}

.open-map-pin.is-active strong {
  color: #fff;
  background: var(--red);
}

.open-map-callout {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 8px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 18px 38px rgba(16, 23, 34, .14);
}

.open-map-callout span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.open-map-callout strong {
  display: block;
  margin: 4px 0;
  color: var(--ink);
  font-size: 28px;
}

.open-map-callout p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.location-pressure-grid,
.location-help-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.location-pressure-grid article {
  padding: 22px;
}

.location-pressure-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #fff;
  background: var(--red);
  font-weight: 900;
}

.location-pressure-grid h3,
.location-cta-card h3 {
  margin: 0 0 10px;
}

.location-pressure-grid p,
.location-help-grid p {
  color: var(--muted);
}

.location-help-grid {
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, .6fr);
  align-items: stretch;
}

.location-cta-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  background: #11151c;
}

.location-cta-card h3,
.location-cta-card p {
  color: #fff;
}

.location-cta-card p {
  color: rgba(255, 255, 255, .74);
}

@media (max-width: 980px) {
  .site-header {
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    min-height: 42px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #fff;
    font-weight: 900;
  }

  .primary-nav {
    display: none;
    flex-basis: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    margin: 0;
  }

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

  .primary-nav a {
    border-top: 0;
  }

  .nav-trigger,
  .primary-nav > a {
    min-height: 44px;
    padding: 0;
  }

  .nav-item {
    border-top: 1px solid var(--line);
    padding-top: 8px;
  }

  .mega-menu,
  .compact-menu {
    position: static;
    display: none;
    grid-template-columns: 1fr;
    max-width: none;
    padding: 0 0 10px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-item:focus-within .mega-menu {
    display: grid;
  }

  .mega-intro {
    min-height: 0;
    padding: 16px;
  }

  .mega-intro strong {
    font-size: 20px;
  }

  .mega-links,
  .mega-links.three-col {
    grid-template-columns: 1fr 1fr;
  }

  .mega-links a {
    min-height: 74px;
    padding: 13px;
  }

  .header-cta {
    display: none;
  }

  .hero,
  .hero-inner {
    min-height: 760px;
  }

  .hero-inner,
  .opening-section,
  .split-proof,
  .quote-section,
  .bay-360-section,
  .conversion-section,
  .sector-page-hero,
  .location-hero,
  .location-help-grid {
    grid-template-columns: 1fr;
  }

  .bay-360-section {
    min-height: auto;
    background-position: center;
  }

  .bay-360-copy {
    padding: 24px;
  }

  .hero-inner {
    padding-top: 66px;
    padding-bottom: 54px;
  }

  .hero-copy p {
    font-size: 17px;
  }

  .proof-strip,
  .equipment-grid,
  .service-grid,
  .sector-grid,
  .kb-grid,
  .kb-hub-strip,
  .insight-grid,
  .brand-groups,
  .intent-bar {
    grid-template-columns: 1fr 1fr;
  }

  .kb-search-panel {
    grid-template-columns: 1fr;
  }

  .kb-meta {
    grid-template-columns: 1fr;
  }

  .insight-layout {
    grid-template-columns: 1fr;
  }

  .insight-side {
    position: static;
  }

  .insight-footer-grid,
  .sector-detail-grid,
  .sector-related-grid,
  .location-pressure-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-locations {
    justify-self: start;
  }

  .all-makes-cta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  :root {
    --topbar-height: 78px;
  }

  .topbar {
    grid-template-columns: 1fr;
    gap: 4px;
  }

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

  h1 {
    font-size: 41px;
  }

  .hero-inner {
    gap: 24px;
    padding-top: 42px;
    padding-bottom: 36px;
  }

  .hero-copy p {
    font-size: 16px;
    line-height: 1.55;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .proof-strip {
    margin-top: 24px;
  }

  .proof-strip div {
    padding: 14px;
  }

  .hero-form {
    padding: 20px;
  }

  .proof-strip,
  .equipment-grid,
  .service-grid,
  .sector-grid,
  .kb-grid,
  .kb-hub-strip,
  .insight-grid,
  .insight-footer-grid,
  .sector-detail-grid,
  .sector-related-grid,
  .location-pressure-grid,
  .brand-groups,
  .mega-links,
  .mega-links.three-col,
  .brand-list,
  .intent-bar,
  .form-row {
    grid-template-columns: 1fr;
  }

  .intent-bar a {
    min-height: 54px;
    border-right: 0;
  }

  .section {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .kb-card {
    min-height: auto;
  }

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

  .footer-location-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
