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

:root {
  --navy: #0d2e6e;
  --blue: #009eea;
  --green: #6bd12f;
  --dark: #02070d;
  --white: #ffffff;
  --gray: #b7c3d1;
  --line: rgba(0, 158, 234, 0.28);
  --line-strong: rgba(0, 158, 234, 0.54);
  --glass: rgba(3, 18, 34, 0.78);
  --shell: var(--site-max-width, 1680px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  width: 100%;
  margin: 0;
  scroll-behavior: smooth;
  background: var(--dark);
}

body {
  width: 100%;
  min-width: 0;
  margin: 0;
  overflow-x: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 72% 22%, rgba(0, 158, 234, 0.18), transparent 28rem),
    radial-gradient(circle at 88% 64%, rgba(107, 209, 47, 0.1), transparent 24rem),
    linear-gradient(180deg, #02070d 0%, #031324 46%, #02070d 100%);
  font-family: "Inter", Arial, sans-serif;
}

body.solutions-page {
  --assist-drawer-width: clamp(440px, 32vw, 500px);
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.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;
}

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

.solutions-header {
  position: sticky;
  top: 0;
  z-index: 60;
  width: 100%;
  border-bottom: 1px solid rgba(0, 158, 234, 0.22);
  background: rgba(2, 7, 13, 0.96);
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(14px);
}

.solutions-nav-inner {
  min-height: 86px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
}

.solutions-logo-link {
  display: inline-flex;
  align-items: center;
}

.solutions-logo-link img {
  width: 156px;
  height: auto;
  object-fit: contain;
}

.solutions-main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 1.35vw, 30px);
  font-family: "Bebas Neue", Arial, sans-serif;
  font-size: clamp(14px, 0.9vw, 18px);
  letter-spacing: 0;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.86);
}

.solutions-main-nav a {
  position: relative;
  padding: 32px 0 30px;
  transition: color 180ms ease, text-shadow 180ms ease;
}

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

.solutions-main-nav a:hover,
.solutions-main-nav a:focus-visible,
.solutions-main-nav a.is-active {
  color: var(--green);
  text-shadow: 0 0 14px rgba(107, 209, 47, 0.25);
}

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

.solutions-nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  white-space: nowrap;
}

.solutions-phone {
  color: var(--green);
  font-weight: 800;
  font-size: 15px;
  text-shadow: 0 0 18px rgba(107, 209, 47, 0.2);
}

.solutions-quote-btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  border: 1px solid rgba(107, 209, 47, 0.75);
  border-radius: 5px;
  color: #061109;
  background: linear-gradient(135deg, #75e235, #56c91d);
  box-shadow: 0 0 22px rgba(107, 209, 47, 0.28);
  font-family: "Bebas Neue", Arial, sans-serif;
  font-size: 17px;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.solutions-quote-btn:hover,
.solutions-quote-btn:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow: 0 0 32px rgba(107, 209, 47, 0.42);
}

.solutions-icon-link {
  display: grid;
  justify-items: center;
  gap: 3px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 11px;
  transition: color 180ms ease, transform 180ms ease;
}

.solutions-icon-link svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.solutions-icon-link:hover,
.solutions-icon-link:focus-visible {
  color: var(--green);
  transform: translateY(-1px);
}

.solutions-mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  border: 1px solid rgba(0, 158, 234, 0.32);
  border-radius: 5px;
  background: rgba(5, 23, 42, 0.82);
}

.solutions-mobile-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--white);
}

.solutions-utility {
  position: relative;
  z-index: 4;
  width: 100%;
  border-bottom: 1px solid rgba(0, 158, 234, 0.22);
  background:
    radial-gradient(circle at 78% 50%, rgba(0, 158, 234, 0.16), transparent 18rem),
    linear-gradient(180deg, rgba(4, 17, 31, 0.96), rgba(3, 12, 23, 0.96));
}

.utility-inner {
  min-height: 78px;
  display: grid;
  grid-template-columns: 250px minmax(320px, 1fr) auto;
  align-items: center;
  gap: 24px;
}

.category-select,
.solutions-search,
.utility-contact a {
  border: 1px solid rgba(0, 158, 234, 0.3);
  background: rgba(2, 12, 23, 0.72);
  box-shadow: inset 0 0 24px rgba(0, 158, 234, 0.06);
}

.category-select {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
  border-radius: 6px;
  color: var(--white);
  font-family: "Bebas Neue", Arial, sans-serif;
  font-size: 18px;
  text-transform: uppercase;
}

.category-select svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.category-select .chevron {
  width: 18px;
  margin-left: auto;
}

.solutions-search {
  min-height: 52px;
  display: grid;
  grid-template-columns: 1fr 56px;
  align-items: center;
  border-radius: 6px;
  overflow: hidden;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.solutions-search:focus-within {
  border-color: rgba(107, 209, 47, 0.72);
  box-shadow: 0 0 26px rgba(107, 209, 47, 0.18);
}

.solutions-search label {
  display: block;
}

.solutions-search input {
  width: 100%;
  min-height: 50px;
  padding: 0 20px;
  border: 0;
  outline: 0;
  color: var(--white);
  background: transparent;
  font-size: 16px;
}

.solutions-search input::placeholder {
  color: rgba(183, 195, 209, 0.72);
  font-style: italic;
}

.solutions-search button {
  width: 56px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 0;
  color: var(--white);
  background: transparent;
  transition: color 180ms ease;
}

.solutions-search button:hover,
.solutions-search button:focus-visible {
  color: var(--green);
}

.solutions-search svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.utility-contact {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 14px;
}

.utility-contact a {
  min-height: 52px;
  display: grid;
  grid-template-columns: 32px max-content;
  column-gap: 12px;
  align-items: center;
  padding: 9px 14px;
  border-radius: 6px;
}

.utility-contact svg {
  grid-row: span 2;
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.utility-contact span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
}

.utility-contact strong {
  color: var(--white);
  font-size: 14px;
}

.solutions-hero {
  position: relative;
  min-height: 590px;
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 158, 234, 0.22);
  background: #02070d;
}

.solutions-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(2, 7, 13, 0.96) 0%, rgba(2, 7, 13, 0.82) 35%, rgba(2, 7, 13, 0.15) 72%, rgba(2, 7, 13, 0.44) 100%),
    url("../assets/solutions/solutions-hero-bg.png") center right / cover no-repeat;
}

.solutions-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 46%;
  background: linear-gradient(180deg, transparent, rgba(2, 7, 13, 0.84));
  pointer-events: none;
}

.hero-inner {
  position: relative;
  min-height: 590px;
  display: grid;
  align-items: center;
  padding: 36px 0 64px;
}


/* Scope-override the global styles.css .hero-copy { padding:68px 0 54px } which leaks onto this page; halve the top space above the breadcrumb (Entry #83). */
.solutions-hero .hero-copy {
  padding-top: 34px;
}
.hero-left {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.breadcrumb span:last-child {
  color: var(--white);
}

.hero-copy h1,
.section-heading h2,
.industry-help h2 {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  font-style: italic;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy h1 {
  max-width: 760px;
  font-size: clamp(50px, 5.3vw, 92px);
  line-height: 0.94;
}

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

.hero-copy h1 strong {
  color: var(--green);
  text-shadow: 0 0 26px rgba(107, 209, 47, 0.2);
}

.hero-copy p {
  max-width: 690px;
  margin: 26px 0 0;
  color: var(--white);
  font-size: clamp(17px, 1.2vw, 22px);
  line-height: 1.55;
}

.hero-trust-grid {
  width: min(100%, 940px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.hero-trust-grid article {
  min-height: 104px;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: start;
  padding: 18px 16px;
  border: 1px solid rgba(0, 158, 234, 0.24);
  border-radius: 7px;
  background: rgba(1, 11, 22, 0.58);
  backdrop-filter: blur(8px);
}

.hero-trust-grid svg,
.category-icon svg,
.industry-grid svg,
.footer-trust-inner svg,
.industry-help li::before {
  filter: drop-shadow(0 0 10px rgba(107, 209, 47, 0.35));
}

.hero-trust-grid svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: var(--green);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-trust-grid h2 {
  margin: 0 0 5px;
  font-family: "Bebas Neue", Arial, sans-serif;
  font-size: 19px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-trust-grid p {
  margin: 0;
  color: var(--gray);
  font-size: 12px;
  line-height: 1.35;
}

.hero-product {
  display: none;
}

.category-section {
  padding: 58px 0 54px;
}

.section-heading {
  margin-bottom: 30px;
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(30px, 2.7vw, 48px);
  line-height: 1;
}

.section-heading p {
  margin: 12px 0 0;
  color: var(--gray);
  font-size: 16px;
}

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

.solution-card,
.industry-grid a,
.industry-help,
.footer-trust-inner article {
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 78% 8%, rgba(0, 158, 234, 0.14), transparent 12rem),
    linear-gradient(145deg, rgba(4, 20, 37, 0.86), rgba(1, 10, 20, 0.84));
  box-shadow: inset 0 0 28px rgba(0, 158, 234, 0.06);
  backdrop-filter: blur(12px);
}

.solution-card {
  min-height: 392px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 8px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.solution-card:hover,
.solution-card:focus-within {
  transform: translateY(-5px);
  border-color: rgba(107, 209, 47, 0.58);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34), 0 0 28px rgba(107, 209, 47, 0.13);
}

.solution-card.is-search-highlight {
  transform: translateY(-5px);
  border-color: rgba(107, 209, 47, 0.86);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34), 0 0 42px rgba(107, 209, 47, 0.28);
}

.solutions-search input.has-no-result::placeholder {
  color: rgba(255, 190, 190, 0.9);
}

.card-image {
  position: relative;
  height: 240px;
  overflow: hidden;
  padding: 14px;
  background: #061221;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 220ms ease, filter 220ms ease;
}

.solution-card:hover .card-image img {
  transform: scale(1.05);
  filter: brightness(1.08);
}

.card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(2, 7, 13, 0.82));
  pointer-events: none;
}

.category-icon {
  position: absolute;
  left: 18px;
  bottom: 14px;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--green);
  border: 1px solid rgba(107, 209, 47, 0.75);
  border-radius: 7px;
  background: rgba(2, 7, 13, 0.82);
  box-shadow: 0 0 20px rgba(107, 209, 47, 0.2);
}

.category-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 22px 20px 20px;
}

.card-copy h3 {
  margin: 0 0 12px;
  font-family: "Bebas Neue", Arial, sans-serif;
  font-size: 25px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

.card-copy p {
  margin: 0;
  color: var(--gray);
  font-size: 14px;
  line-height: 1.55;
}

.card-copy a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 22px;
  color: var(--green);
  font-family: "Bebas Neue", Arial, sans-serif;
  font-size: 18px;
  text-transform: uppercase;
}

.industry-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 420px);
  gap: 34px;
  align-items: start;
  padding: 28px 0 56px;
}

.industry-main .section-heading {
  margin-bottom: 24px;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.industry-grid a {
  min-height: 146px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  padding: 18px 12px;
  border-radius: 8px;
  text-align: center;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.industry-grid a:hover,
.industry-grid a:focus-visible {
  color: var(--green);
  transform: translateY(-4px);
  border-color: rgba(107, 209, 47, 0.56);
  box-shadow: 0 0 24px rgba(107, 209, 47, 0.12);
}

.industry-grid svg {
  width: 46px;
  height: 46px;
  fill: none;
  stroke: var(--green);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.industry-grid span {
  font-family: "Bebas Neue", Arial, sans-serif;
  font-size: 20px;
  line-height: 1.05;
  text-transform: uppercase;
}

.view-industries {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 28px auto 0;
  color: var(--green);
  font-family: "Bebas Neue", Arial, sans-serif;
  font-size: 20px;
  text-transform: uppercase;
}

.industry-help {
  position: sticky;
  top: 116px;
  overflow: hidden;
  min-height: 458px;
  padding: 44px 38px;
  border-radius: 9px;
  background:
    linear-gradient(90deg, rgba(2, 7, 13, 0.83), rgba(2, 7, 13, 0.5)),
    url("../assets/solutions/ChatGPT%20Image%20May%209,%202026,%2003_26_08%20PM.png") center / cover no-repeat;
}

.industry-help::after {
  content: "";
  position: absolute;
  inset: auto -18% -22% 22%;
  height: 180px;
  background: radial-gradient(circle, rgba(107, 209, 47, 0.28), transparent 68%);
  pointer-events: none;
}

.help-kicker {
  color: var(--green);
  font-family: "Bebas Neue", Arial, sans-serif;
  font-size: 19px;
  text-transform: uppercase;
}

.industry-help h2 {
  max-width: 360px;
  margin-top: 10px;
  font-size: clamp(36px, 3.2vw, 54px);
  line-height: 0.96;
}

.industry-help p {
  max-width: 340px;
  margin: 20px 0 22px;
  color: var(--white);
  line-height: 1.55;
}

.industry-help ul {
  display: grid;
  gap: 12px;
  margin: 0 0 28px;
  padding: 0;
  color: var(--white);
  list-style: none;
}

.industry-help li {
  position: relative;
  padding-left: 28px;
  color: var(--gray);
  font-weight: 700;
}

.industry-help li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  border: 1px solid var(--green);
  border-radius: 999px;
  background:
    linear-gradient(135deg, transparent 42%, var(--green) 43% 55%, transparent 56%),
    linear-gradient(45deg, transparent 45%, var(--green) 46% 58%, transparent 59%);
}

.industry-help .solutions-quote-btn {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 56px;
  /* global-header.css .solutions-quote-btn { background: var(--global-green) } leaks here, but --global-green is only defined inside .solutions-header, so it computes to transparent. Re-assert an explicit fill (higher specificity beats the leaking rule). Entry #86. */
  color: #061109;
  background: linear-gradient(135deg, #75e235, #56c91d);
}

.industry-help .solutions-quote-btn svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-trust-strip {
  width: 100%;
  border-top: 1px solid rgba(0, 158, 234, 0.2);
  border-bottom: 1px solid rgba(0, 158, 234, 0.2);
  background: rgba(2, 11, 21, 0.9);
}

.footer-trust-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 28px 0;
}

.footer-trust-inner article {
  min-height: 88px;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
  border-radius: 8px;
}

.footer-trust-inner svg {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: var(--green);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-trust-inner h2 {
  margin: 0 0 4px;
  font-family: "Bebas Neue", Arial, sans-serif;
  font-size: 21px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-trust-inner p {
  margin: 0;
  color: var(--gray);
  font-size: 14px;
}

.solutions-footer {
  width: 100%;
  background: #020a13;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.25fr) repeat(5, minmax(128px, 1fr));
  gap: 34px;
  padding: 46px 0 40px;
}

.footer-brand img {
  width: 172px;
  height: auto;
  margin-bottom: 18px;
}

.footer-brand p {
  max-width: 270px;
  margin: 0 0 22px;
  color: var(--gray);
  line-height: 1.55;
}

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

.social-row a {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(107, 209, 47, 0.48);
  border-radius: 999px;
  color: var(--green);
  font-size: 12px;
  text-transform: uppercase;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--gray);
  font-style: normal;
}

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

.footer-col a,
.footer-col span {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.45;
}

.footer-col a:hover,
.footer-col a:focus-visible,
.green-link {
  color: var(--green);
}

.footer-bottom {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border-top: 1px solid rgba(0, 158, 234, 0.16);
  color: rgba(183, 195, 209, 0.75);
  font-size: 13px;
}

.footer-bottom p {
  margin: 0;
}

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

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

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

@media (max-width: 1500px) {
  :root {
    --shell: var(--site-max-width, 1680px);
  }

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

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

@media (max-width: 1220px) {
  :root {
    --shell: var(--site-max-width, 1680px);
  }

  .solutions-nav-inner {
    grid-template-columns: auto auto 1fr;
  }

  .solutions-mobile-toggle {
    display: flex;
    order: 2;
  }

  .solutions-logo-link {
    order: 1;
  }

  .solutions-main-nav {
    position: absolute;
    top: 100%;
    left: 24px;
    right: 24px;
    display: none;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0;
    padding: 14px;
    border: 1px solid rgba(0, 158, 234, 0.32);
    border-radius: 8px;
    background: rgba(2, 7, 13, 0.98);
  }

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

  .solutions-main-nav a {
    width: 25%;
    padding: 12px;
  }

  .solutions-main-nav a::after {
    bottom: 6px;
  }

  .solutions-nav-actions {
    justify-self: end;
    order: 3;
  }

  .solutions-phone {
    display: none;
  }

  .utility-inner {
    grid-template-columns: 220px 1fr;
  }

  .utility-contact {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-bottom: 18px;
  }

  .utility-contact a {
    grid-template-columns: 32px 1fr;
  }

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

  .hero-trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 690px;
  }

  .industry-section {
    grid-template-columns: 1fr;
  }

  .industry-help {
    position: relative;
    top: auto;
    min-height: 340px;
  }

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

@media (max-width: 900px) {
  :root {
    --shell: var(--site-max-width, 1680px);
  }

  .solutions-nav-inner {
    min-height: 72px;
    gap: 14px;
  }

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

  .solutions-quote-btn {
    min-height: 40px;
    padding: 0 14px;
    font-size: 15px;
  }

  .solutions-icon-link {
    display: none;
  }

  .solutions-main-nav a {
    width: 50%;
  }

  .utility-inner {
    grid-template-columns: 1fr;
    padding: 16px 0;
  }

  .category-select,
  .solutions-search {
    width: 100%;
  }

  .solutions-hero {
    min-height: auto;
  }

  .solutions-hero::before {
    background:
      linear-gradient(180deg, rgba(2, 7, 13, 0.88), rgba(2, 7, 13, 0.78)),
      url("../assets/solutions/solutions-hero-mobile-bg.png") center center / cover no-repeat;
  }

  .hero-inner {
    min-height: auto;
    padding: 56px 0 48px;
  }

  .hero-copy h1 {
    font-size: clamp(42px, 12vw, 68px);
  }

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

  .hero-trust-grid,
  .category-grid,
  .footer-trust-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .category-section {
    padding-top: 44px;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    padding: 20px 0;
  }
}

@media (max-width: 620px) {
  :root {
    --shell: var(--site-max-width, 1680px);
  }

  .solutions-nav-actions {
    gap: 8px;
  }

  .solutions-quote-btn {
    padding: 0 12px;
  }

  .solutions-quote-btn span:first-child {
    max-width: 92px;
    white-space: normal;
    line-height: 1;
  }

  .utility-contact,
  .hero-trust-grid,
  .category-grid,
  .footer-trust-inner,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .industry-grid a {
    min-height: 128px;
  }

  .card-image {
    height: 220px;
  }

  .industry-help {
    padding: 34px 24px;
  }

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

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

.solutions-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) {
  .solutions-shell,
  .site-container,
  .page-container,
  .section-container {
    padding-left: var(--site-padding-tablet);
    padding-right: var(--site-padding-tablet);
  }
}

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

