@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:ital,wght@0,400;0,600;0,800;1,800&display=swap");

:root {
  --navy: #0d2e6e;
  --blue: #009eea;
  --green: #6bd12f;
  --dark: #02070d;
  --white: #ffffff;
  --gray: #b7c3d1;
  --muted: #78889a;
  --line: rgba(0, 158, 234, 0.28);
  --line-strong: rgba(0, 158, 234, 0.58);
  --panel: rgba(4, 18, 34, 0.84);
  --panel-strong: rgba(2, 11, 22, 0.94);
  --shadow-blue: 0 0 30px rgba(0, 158, 234, 0.28);
  --shadow-green: 0 0 30px rgba(107, 209, 47, 0.34);
  --page-x: clamp(32px, 4vw, 48px);
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  margin: 0;
  min-width: 320px;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 10%, rgba(0, 158, 234, 0.2), transparent 34rem),
    radial-gradient(circle at 18% 34%, rgba(107, 209, 47, 0.08), transparent 26rem),
    linear-gradient(180deg, #02070d 0%, #041221 44%, #02070d 100%);
  font-family: "Inter", Arial, sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 110px 0 auto 0;
  height: 900px;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(2, 7, 13, 0.96) 0%, rgba(2, 7, 13, 0.42) 52%, rgba(2, 7, 13, 0.92) 100%),
    url("../assets/direct-parts/Blue%20fractle%20back%20ground.png") center top / cover no-repeat;
  opacity: 0.44;
  z-index: -1;
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.brand-shell {
  width: 100%;
  max-width: var(--site-max-width, 1680px);
  margin-inline: auto;
  padding-left: var(--site-padding-desktop, 48px);
  padding-right: var(--site-padding-desktop, 48px);
}

main,
.brands-page {
  width: 100%;
}

.brands-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(0, 158, 234, 0.24);
  background: rgba(2, 7, 13, 0.97);
  backdrop-filter: blur(16px);
  animation: headerDrop 520ms ease both;
}

.brands-nav-inner {
  min-height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(18px, 2vw, 36px);
}

.brand-logo-link img {
  width: clamp(140px, 13vw, 178px);
}

.brands-main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 1.6vw, 27px);
  min-width: 0;
}

.brands-main-nav a,
.footer-col a,
.footer-col span,
.footer-bottom a {
  color: rgba(255, 255, 255, 0.86);
  font-family: "Bebas Neue", Arial, sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 180ms ease, text-shadow 180ms ease;
}

.brands-main-nav a {
  position: relative;
}

.brands-main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.brands-main-nav a:hover,
.brands-main-nav a.is-active,
.footer-col a:hover,
.footer-bottom a:hover {
  color: var(--green);
  text-shadow: 0 0 14px rgba(107, 209, 47, 0.48);
}

.brands-main-nav a.is-active::after,
.brands-main-nav a:hover::after {
  transform: scaleX(1);
}

.brands-nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.brand-phone {
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.brand-quote-btn,
.brand-search-button,
.brand-outline-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 5px;
  border: 1px solid transparent;
  padding: 0 24px;
  color: #06110a;
  background: linear-gradient(135deg, #7de13b, #57c91d);
  font-family: "Bebas Neue", Arial, sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.brand-quote-btn:hover,
.brand-search-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-green);
}

.brand-outline-button {
  color: var(--white);
  background: rgba(2, 7, 13, 0.42);
  border-color: rgba(255, 255, 255, 0.28);
}

.brand-outline-button:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 158, 234, 0.88);
  box-shadow: var(--shadow-blue);
}

.brand-icon-link {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  color: var(--white);
  transition: color 180ms ease, transform 180ms ease;
}

.brand-icon-link span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.brand-icon-link:hover {
  color: var(--green);
  transform: translateY(-2px);
}

.brand-icon-link svg,
.brands-mobile-toggle span,
.industry-alert svg,
.brand-search svg,
.brand-trust-bar svg,
.brands-shield-copy svg,
.downtime-grid svg,
.brand-help-cta svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-icon-link svg {
  width: 27px;
  height: 27px;
}

.brands-mobile-toggle {
  width: 42px;
  height: 42px;
  display: none;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--white);
  background: transparent;
}

.brands-mobile-toggle span {
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  stroke: none;
}

.industry-alert {
  position: sticky;
  top: 82px;
  z-index: 44;
  color: #071208;
  background: linear-gradient(90deg, #63d322, #82e43f);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.2);
}

.alert-inner {
  min-height: 44px;
  display: grid;
  grid-template-columns: 24px 1fr 32px;
  align-items: center;
  gap: 12px;
}

.industry-alert p {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
}

.industry-alert strong {
  font-family: "Bebas Neue", Arial, sans-serif;
  font-size: 18px;
  text-transform: uppercase;
}

.industry-alert a {
  font-weight: 800;
  text-decoration: underline;
}

.industry-alert svg {
  width: 22px;
  height: 22px;
}

.industry-alert button {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: #071208;
}

.brands-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 158, 234, 0.2);
  background:
    linear-gradient(90deg, rgba(2, 7, 13, 0.98) 0%, rgba(2, 7, 13, 0.78) 38%, rgba(2, 7, 13, 0.28) 74%, rgba(2, 7, 13, 0.56) 100%),
    url("../assets/brands/brands-hero-banner.png") right center / cover no-repeat;
}

.brands-hero-inner {
  min-height: 520px;
  display: grid;
  align-content: center;
  gap: 36px;
  padding: 84px 0 72px;
}

.brands-hero-copy {
  max-width: 790px;
}

.brands-hero h1,
.section-heading h2,
.downtime-heading h2,
.brands-shield-copy h2,
.brand-help-cta h2,
.business-trust h2 {
  margin: 0;
  color: var(--white);
  font-family: "Inter", Arial, sans-serif;
  font-style: italic;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brands-hero h1 {
  font-size: clamp(45px, 5.2vw, 82px);
  line-height: 0.95;
}

.brands-hero h1 span,
.brands-hero h1 strong {
  display: block;
}

.brands-hero h1 strong,
.section-heading h2 span,
.downtime-heading span,
.brands-shield-copy h2 strong {
  color: var(--green);
  text-shadow: 0 0 22px rgba(107, 209, 47, 0.28);
}

.brands-hero-copy p {
  max-width: 600px;
  margin: 24px 0 0;
  color: var(--gray);
  font-size: 20px;
  line-height: 1.55;
}

.brand-search-card {
  width: min(100%, 1080px);
  display: grid;
  grid-template-columns: 1fr 180px;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line-strong);
  border-radius: 9px;
  background: linear-gradient(145deg, rgba(4, 18, 34, 0.88), rgba(3, 10, 20, 0.74));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.brand-search {
  position: relative;
  display: block;
}

.brand-search input {
  width: 100%;
  min-height: 58px;
  padding: 0 22px 0 58px;
  color: var(--white);
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  outline: none;
  background: transparent;
  font-size: 18px;
}

.brand-search input:focus {
  border-color: var(--blue);
  box-shadow: 0 10px 0 -8px rgba(0, 158, 234, 0.9);
}

.brand-search svg {
  position: absolute;
  top: 50%;
  left: 18px;
  width: 28px;
  height: 28px;
  color: var(--white);
  transform: translateY(-50%);
}

.popular-searches {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 2px 0 0 22px;
  color: var(--white);
}

.popular-searches span {
  color: rgba(255, 255, 255, 0.78);
  font-family: "Bebas Neue", Arial, sans-serif;
  font-size: 16px;
}

.popular-searches a {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  color: var(--white);
  background: rgba(2, 7, 13, 0.38);
  font-size: 13px;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.popular-searches a:hover {
  color: var(--green);
  border-color: rgba(107, 209, 47, 0.75);
  background: rgba(107, 209, 47, 0.1);
}

.brand-trust-bar {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin-top: 36px;
  padding: 23px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(4, 18, 34, 0.84), rgba(2, 7, 13, 0.74));
}

.brand-trust-bar article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: center;
  padding: 0 16px;
  border-right: 1px solid rgba(0, 158, 234, 0.22);
}

.brand-trust-bar article:last-child {
  border-right: 0;
}

.brand-trust-bar svg,
.downtime-grid svg,
.brand-help-cta svg {
  width: 46px;
  height: 46px;
  color: var(--green);
  filter: drop-shadow(0 0 10px rgba(107, 209, 47, 0.4));
}

.brand-trust-bar h2,
.downtime-grid h3 {
  margin: 0;
  color: var(--white);
  font-family: "Bebas Neue", Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
}

.brand-trust-bar p,
.downtime-grid p,
.brands-shield-copy p,
.brand-help-cta p {
  margin: 4px 0 0;
  color: var(--gray);
  font-size: 14px;
  line-height: 1.45;
}

.top-brands-section,
.downtime-section,
.business-trust,
.brand-help-cta {
  margin-top: 66px;
}

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

.section-heading h2,
.downtime-heading h2 {
  font-size: clamp(34px, 3.2vw, 52px);
}

.section-heading a,
.section-link-button {
  color: var(--green);
  border: 0;
  padding: 0;
  background: transparent;
  font-family: "Bebas Neue", Arial, sans-serif;
  font-size: 18px;
  text-transform: uppercase;
}

.section-link-button:hover {
  text-shadow: 0 0 14px rgba(107, 209, 47, 0.5);
}

.brand-card-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
}

.brand-card,
.downtime-grid article,
.brand-help-cta,
.brands-shield-banner {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(4, 18, 34, 0.84), rgba(2, 7, 13, 0.72));
  box-shadow: inset 0 0 30px rgba(0, 158, 234, 0.06);
}

.brand-card {
  min-height: 160px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  padding: 24px 18px 20px;
  text-align: center;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.brand-card img {
  width: min(86%, 190px);
  height: 72px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.14));
}

.brand-card span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
}

.brand-card:hover,
.brand-card:focus-visible,
.downtime-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(107, 209, 47, 0.7);
  box-shadow: var(--shadow-blue), 0 0 22px rgba(107, 209, 47, 0.12);
}

.brand-grid-action {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.all-brands-directory {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  margin-top: 0;
  overflow: hidden;
  transition: grid-template-rows 360ms ease, opacity 260ms ease, margin-top 260ms ease;
}

.all-brands-directory.is-open {
  grid-template-rows: 1fr;
  opacity: 1;
  margin-top: 36px;
}

.directory-panel {
  min-height: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(4, 18, 34, 0.92), rgba(2, 7, 13, 0.82)),
    radial-gradient(circle at 76% 0%, rgba(0, 158, 234, 0.14), transparent 30rem);
  box-shadow: inset 0 0 42px rgba(0, 158, 234, 0.08);
}

.directory-heading {
  display: grid;
  grid-template-columns: auto minmax(360px, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 26px 28px 18px;
}

.directory-heading h2 {
  margin: 0;
  color: var(--white);
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(30px, 2.9vw, 46px);
  font-style: italic;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.directory-heading h2 span {
  color: var(--green);
}

.directory-search {
  position: relative;
  display: block;
}

.directory-search input {
  width: 100%;
  min-height: 58px;
  padding: 0 58px 0 24px;
  color: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  outline: none;
  background: rgba(2, 7, 13, 0.54);
  font-size: 17px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.directory-search input:focus {
  border-color: rgba(107, 209, 47, 0.78);
  box-shadow: 0 0 24px rgba(107, 209, 47, 0.18);
}

.directory-search svg {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 26px;
  height: 26px;
  color: var(--white);
  transform: translateY(-50%);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.directory-assist {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 14px;
  white-space: nowrap;
}

.directory-assist button {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(107, 209, 47, 0.72);
  border-radius: 5px;
  color: var(--green);
  background: rgba(107, 209, 47, 0.08);
  font-family: "Bebas Neue", Arial, sans-serif;
  font-size: 17px;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.directory-assist button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-green);
}

.az-nav {
  position: sticky;
  top: 126px;
  z-index: 8;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 28px 22px;
  background: linear-gradient(180deg, rgba(4, 18, 34, 0.98), rgba(4, 18, 34, 0.88));
}

.az-nav button {
  width: 42px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 5px;
  color: var(--white);
  background: rgba(2, 7, 13, 0.46);
  font-family: "Bebas Neue", Arial, sans-serif;
  font-size: 17px;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.az-nav button:hover,
.az-nav button.is-active {
  color: #071208;
  border-color: rgba(107, 209, 47, 0.9);
  background: var(--green);
  box-shadow: var(--shadow-green);
}

.az-nav button.is-empty {
  opacity: 0.38;
}

.directory-results {
  display: grid;
  gap: 26px;
  padding: 0 28px 28px;
}

.brand-letter-section {
  scroll-margin-top: 190px;
  border: 1px solid rgba(0, 158, 234, 0.24);
  border-radius: 8px;
  padding: 18px 18px 20px;
  background: rgba(2, 12, 23, 0.62);
}

.brand-letter-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.brand-letter-header h3 {
  margin: 0;
  color: var(--white);
  font-size: 30px;
  line-height: 1;
}

.brand-letter-header a {
  color: #7dcfff;
  font-size: 13px;
}

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

.directory-brand-card {
  min-height: 106px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  padding: 14px 10px;
  border: 1px solid rgba(0, 158, 234, 0.24);
  border-radius: 7px;
  color: var(--white);
  background: linear-gradient(145deg, rgba(4, 18, 34, 0.86), rgba(2, 7, 13, 0.7));
  text-align: center;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.directory-brand-card:hover {
  transform: translateY(-3px);
  border-color: rgba(107, 209, 47, 0.72);
  box-shadow: 0 0 24px rgba(0, 158, 234, 0.18);
}

.directory-brand-card img {
  width: min(92%, 128px);
  height: 44px;
  object-fit: contain;
}

.directory-brand-card strong {
  display: block;
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  line-height: 1.15;
}

.directory-brand-card span {
  color: var(--gray);
  font-size: 12px;
}

.letter-load-more {
  display: flex;
  justify-content: center;
  margin-top: 14px;
}

.letter-load-more button {
  border: 0;
  color: var(--green);
  background: transparent;
  font-family: "Bebas Neue", Arial, sans-serif;
  font-size: 18px;
  text-transform: uppercase;
}

.directory-load-row {
  display: flex;
  justify-content: center;
  padding: 0 28px 30px;
}

.brands-shield-banner {
  position: relative;
  min-height: clamp(260px, 19vw, 320px);
  display: flex;
  align-items: center;
  margin-top: 48px;
  padding: clamp(36px, 4vw, 58px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(2, 7, 13, 0.88) 0%, rgba(2, 7, 13, 0.56) 30%, rgba(2, 7, 13, 0.12) 58%, rgba(2, 7, 13, 0.02) 100%),
    url("../assets/brands/direct-shield-brands-banner.png") center right / cover no-repeat;
}

.brands-shield-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 17% 50%, rgba(0, 158, 234, 0.22), transparent 19rem),
    linear-gradient(90deg, rgba(2, 7, 13, 0.32), transparent 46%);
  opacity: 0.96;
}

.brands-shield-copy {
  position: relative;
  z-index: 1;
  max-width: 430px;
}

.brands-shield-copy svg {
  width: clamp(48px, 4vw, 62px);
  height: clamp(48px, 4vw, 62px);
  margin-bottom: 16px;
  color: #8bc9ff;
  filter: drop-shadow(0 0 18px rgba(0, 158, 234, 0.56));
}

.brands-shield-copy h2 {
  font-size: clamp(32px, 3.5vw, 54px);
  line-height: 0.96;
}

.brands-shield-copy h2 span,
.brands-shield-copy h2 strong {
  display: block;
}

.brands-shield-copy p {
  max-width: 360px;
  margin: 14px 0 26px;
  font-size: 18px;
}

.brands-shield-visual {
  display: none;
}

.light-sweep::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 28%, rgba(255, 255, 255, 0.13) 47%, transparent 65%);
  transform: translateX(-120%);
  animation: sweep 7s ease-in-out infinite;
}

.downtime-heading {
  text-align: center;
  margin-bottom: 26px;
}

.downtime-heading p {
  margin: 8px 0 0;
  color: var(--gray);
  font-size: clamp(17px, 1.4vw, 20px);
}

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

.downtime-grid article {
  min-height: 156px;
  display: flex;
  align-items: center;
  gap: clamp(18px, 1.5vw, 24px);
  padding: clamp(24px, 2vw, 30px);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.downtime-grid img {
  width: clamp(46px, 3.8vw, 56px);
  height: clamp(46px, 3.8vw, 56px);
  flex: 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(0, 158, 234, 0.34));
}

.downtime-grid article > div {
  min-width: 0;
}

.downtime-grid h3 {
  font-size: clamp(17px, 1.25vw, 21px);
  line-height: 1.1;
  white-space: normal;
}

.downtime-grid p {
  max-width: 245px;
  font-size: clamp(14px, 0.95vw, 16px);
  line-height: 1.38;
}

.business-trust {
  text-align: center;
}

.business-trust h2 {
  font-size: clamp(22px, 2vw, 32px);
  font-style: normal;
}

.business-logo-strip {
  width: min(1180px, 100%);
  margin: 28px auto 0;
  opacity: 0.48;
  filter: grayscale(1);
}

.brand-help-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
  padding: 28px 34px;
}

.brand-help-cta > div {
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand-help-cta h2 {
  font-size: clamp(24px, 2.4vw, 36px);
  font-style: normal;
}

.brands-footer {
  border-top: 1px solid rgba(0, 158, 234, 0.18);
  background: rgba(2, 7, 13, 0.92);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr repeat(5, minmax(130px, 1fr));
  gap: clamp(26px, 4vw, 58px);
  padding: 54px 0 40px;
}

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

.footer-brand p {
  max-width: 280px;
  margin: 22px 0 18px;
  color: var(--gray);
  font-size: 14px;
  line-height: 1.55;
}

.social-row {
  display: flex;
  gap: 10px;
}

.social-row a {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(107, 209, 47, 0.38);
  border-radius: 50%;
  color: var(--green);
  font-family: "Bebas Neue", Arial, sans-serif;
}

.footer-col {
  display: grid;
  gap: 9px;
  align-content: start;
  font-style: normal;
}

.footer-col h2 {
  margin: 0 0 8px;
  color: var(--white);
  font-family: "Bebas Neue", Arial, sans-serif;
  font-size: 17px;
  font-weight: 400;
  text-transform: uppercase;
}

.footer-col a,
.footer-col span {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.35;
  text-transform: none;
}

.green-link {
  color: var(--green) !important;
  font-weight: 800;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 12px;
}

.footer-bottom p {
  margin: 0;
}

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

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes headerDrop {
  from {
    opacity: 0;
    transform: translateY(-14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes sweep {
  0%,
  54% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(130%);
  }
}

@media (max-width: 1220px) {
  .brands-nav-inner {
    grid-template-columns: auto auto 1fr;
  }

  .brands-mobile-toggle {
    display: inline-grid;
  }

  .brands-main-nav {
    order: 4;
    grid-column: 1 / -1;
    display: none;
    justify-content: start;
    flex-wrap: wrap;
    padding-bottom: 18px;
  }

  .brands-main-nav.is-open {
    display: flex;
  }

  .brands-nav-actions {
    justify-self: end;
  }

  .brand-phone,
  .brand-quote-btn {
    display: none;
  }

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

  .directory-heading {
    grid-template-columns: 1fr;
  }

  .directory-assist {
    justify-content: space-between;
  }

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

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

  .brand-trust-bar article:nth-child(2n) {
    border-right: 0;
  }

  .brands-shield-banner {
    background-position: center right;
  }

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

@media (max-width: 820px) {
  :root {
    --page-x: 20px;
  }

  .brands-hero-inner {
    min-height: auto;
    padding: 58px 0 44px;
  }

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

  .brand-search-button {
    width: 100%;
  }

  .popular-searches {
    padding-left: 0;
  }

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

  .brand-card img {
    height: 62px;
  }

  .directory-heading,
  .directory-results {
    padding-left: 18px;
    padding-right: 18px;
  }

  .az-nav {
    top: 116px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-left: 18px;
    padding-right: 18px;
    -webkit-overflow-scrolling: touch;
  }

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

  .brand-trust-bar {
    margin-top: 28px;
    grid-template-columns: 1fr;
  }

  .brand-trust-bar article,
  .brand-trust-bar article:nth-child(2n) {
    border-right: 0;
    border-bottom: 1px solid rgba(0, 158, 234, 0.18);
    padding: 14px 4px;
  }

  .brand-trust-bar article:last-child {
    border-bottom: 0;
  }

  .section-heading,
  .brand-help-cta {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .brands-shield-banner {
    min-height: 300px;
    padding: 28px 22px;
    background-position: 62% center;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (max-width: 560px) {
  :root {
    --page-x: 16px;
  }

  .brands-nav-inner {
    min-height: 72px;
    gap: 12px;
  }

  .brand-logo-link img {
    width: 132px;
  }

  .industry-alert {
    top: 72px;
  }

  .alert-inner {
    grid-template-columns: 22px 1fr 30px;
  }

  .industry-alert p {
    font-size: 12px;
  }

  .brands-hero h1 {
    font-size: 42px;
  }

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

  .brand-search input {
    min-height: 54px;
    font-size: 15px;
  }

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

  .brand-card {
    min-height: 128px;
  }

  .brand-card img {
    height: 58px;
  }

  .directory-heading {
    gap: 16px;
    padding-top: 22px;
  }

  .directory-search input {
    min-height: 52px;
    font-size: 15px;
  }

  .directory-assist {
    align-items: stretch;
    flex-direction: column;
  }

  .directory-assist button {
    width: 100%;
  }

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

  .directory-brand-card {
    min-height: 96px;
  }

  .brands-shield-copy h2 {
    font-size: 40px;
  }

  .brand-help-cta > div {
    align-items: flex-start;
  }

  .brand-help-cta .brand-quote-btn {
    display: inline-flex;
    width: 100%;
  }

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

  .footer-bottom nav {
    gap: 14px;
  }
}

/* Shared full-width brand shell alignment. */
:root {
  --site-max-width: 1680px;
  --site-padding-desktop: 48px;
  --site-padding-tablet: 28px;
  --site-padding-mobile: 18px;
}

.brand-shell,
.site-container,
.page-container,
.section-container {
  width: 100%;
  max-width: var(--site-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--site-padding-desktop);
  padding-right: var(--site-padding-desktop);
}

.text-measure {
  max-width: 720px;
}

@media (max-width: 1024px) {
  .brand-shell,
  .site-container,
  .page-container,
  .section-container {
    padding-left: var(--site-padding-tablet);
    padding-right: var(--site-padding-tablet);
  }
}

@media (max-width: 640px) {
  .brand-shell,
  .site-container,
  .page-container,
  .section-container {
    padding-left: var(--site-padding-mobile);
    padding-right: var(--site-padding-mobile);
  }
}
