
    :root {
      --brand-dark: #132e41;
      --brand-light: #59b2e5;
      --brand-accent: #e58c59;
      --brand-accent-deep: #cf7b4a;
      --ink: #2f3338;
      --soft-bg: #f1f3f4;
      --white: #ffffff;
      --line: rgba(89, 178, 229, 0.2);
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: "Barlow", sans-serif;
      color: var(--ink);
      background: var(--soft-bg);
    }

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

    a {
      color: inherit;
    }

    .topbar {
      position: relative;
      z-index: 50;
      background: rgba(255, 255, 255, 0.98);
      border-bottom: 1px solid rgba(89, 178, 229, 0.2);
    }

    .topbar-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 12px 18px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
    }

    .brand img {
      height: 92px;
      width: auto;
      display: block;
    }

    .top-nav {
      display: flex;
      align-items: center;
      gap: 16px;
      font-weight: 600;
    }

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

    .top-nav a {
      text-decoration: none;
      color: var(--brand-dark);
      font-size: 1rem;
      padding-bottom: 3px;
      border-bottom: 3px solid transparent;
      transition: color 0.2s ease, border-color 0.2s ease;
    }

    .top-nav a:hover,
    .nav-item:hover > a,
    .nav-item:hover > .nav-trigger {
      color: var(--brand-light);
      border-bottom-color: var(--brand-accent);
    }

    .nav-trigger {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      border: none;
      background: transparent;
      color: var(--brand-dark);
      font: inherit;
      font-size: 1rem;
      font-weight: 600;
      padding: 0 0 3px;
      border-bottom: 3px solid transparent;
      cursor: pointer;
      transition: color 0.2s ease, border-color 0.2s ease;
    }

    .nav-caret {
      font-size: 0.52rem;
      font-weight: 700;
      transform: translateY(-1px);
      opacity: 0.85;
      line-height: 1;
    }

    .dropdown-menu {
      position: absolute;
      top: calc(100% + 18px);
      left: 50%;
      transform: translateX(-50%);
      min-width: 240px;
      padding: 18px 28px 20px;
      background: rgba(255, 255, 255, 0.98);
      border-top: 3px solid var(--brand-accent);
      box-shadow: 0 18px 38px rgba(19, 46, 65, 0.18);
      z-index: 60;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    }

    .dropdown-menu::before {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      top: -18px;
      height: 18px;
    }

    .dropdown-menu a {
      display: block;
      padding: 7px 0;
      border-bottom: none;
      color: var(--brand-dark);
      font-size: 1rem;
      font-weight: 700;
      line-height: 1.45;
    }

    .dropdown-menu a:hover {
      color: var(--brand-light);
      border-bottom: none;
    }

    .nav-item:hover .dropdown-menu {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: translateX(-50%) translateY(0);
    }

    .cta-call {
      text-decoration: none;
      background: var(--brand-accent);
      color: var(--white);
      font-weight: 700;
      letter-spacing: 0.04em;
      font-size: 1.26rem;
      padding: 9px 18px;
      border-radius: 3px;
      white-space: nowrap;
    }

    .hero {
      position: relative;
      min-height: min(76vh, 820px);
      display: grid;
      place-items: center;
      padding: 96px 20px;
      overflow: hidden;
      isolation: isolate;
      background: var(--brand-dark);
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(19, 46, 65, 0.34), rgba(19, 46, 65, 0.6)),
        radial-gradient(circle at center, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.44));
      z-index: -1;
    }

    .hero video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -2;
    }

    .hero-content {
      max-width: 1080px;
      text-align: center;
      color: #ffffff;
    }

    .hero h1 {
      margin: 0;
      font-size: clamp(2.2rem, 4.9vw, 4.2rem);
      line-height: 1.08;
      font-weight: 800;
      letter-spacing: -0.02em;
      text-shadow: 0 14px 42px rgba(0, 0, 0, 0.96), 0 7px 22px rgba(0, 0, 0, 0.9), 0 0 10px rgba(0, 0, 0, 0.88), 0 0 3px rgba(0, 0, 0, 0.95);
      -webkit-text-stroke: 1px rgba(0, 0, 0, 0.45);
    }

    .hero-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-top: 26px;
      padding: 16px 28px;
      background: #e58c59;
      color: #ffffff;
      text-decoration: none;
      font-size: 1rem;
      font-weight: 800;
      letter-spacing: 0.02em;
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
      transition: background 0.2s ease, transform 0.2s ease;
    }

    .hero-button:hover {
      background: var(--brand-accent-deep);
      transform: translateY(-1px);
    }

    .consult-strip {
      background: var(--brand-light);
      padding: 26px 24px;
    }

    .consult-strip-inner {
      max-width: 1280px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 28px;
    }

    .consult-strip h2 {
      margin: 0;
      color: #ffffff;
      font-size: clamp(1.5rem, 2.2vw, 2.2rem);
      line-height: 1.05;
      font-weight: 800;
      text-align: center;
      letter-spacing: -0.02em;
      white-space: nowrap;
    }

    .consult-strip .cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 320px;
      padding: 18px 22px;
      text-decoration: none;
      background: var(--brand-dark);
      color: #ffffff;
      font-size: 1rem;
      font-weight: 800;
      box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
    }

    .stats-band-inner {
      max-width: 1420px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, minmax(180px, 1fr));
      gap: clamp(24px, 3vw, 42px);
      text-align: center;
      align-items: start;
    }

    .stats-band-value {
      margin: 0;
      color: var(--brand-dark);
      font-size: clamp(2.8rem, 4.6vw, 5.2rem);
      line-height: 0.95;
      letter-spacing: -0.02em;
      font-weight: 800;
    }

    .stats-band-label {
      margin: 12px 0 0;
      color: #ffffff;
      font-size: clamp(1.08rem, 1.35vw, 1.85rem);
      line-height: 1.2;
      font-weight: 700;
    }

    .incentives-section {
      position: relative;
      overflow: hidden;
      padding: clamp(64px, 8vw, 110px) 24px;
      background:
        linear-gradient(135deg, rgba(19, 46, 65, 0.9), rgba(19, 46, 65, 0.78)),
        url("/assets/media/manufacturing-938c72-642.webp") center center / cover no-repeat;
    }

    .incentives-inner,
    .mounts-inner,
    .case-section-inner {
      max-width: 1540px;
      margin: 0 auto;
    }

    .incentives-header {
      max-width: 860px;
      margin: 0 auto 38px;
      text-align: center;
      color: #ffffff;
    }

    .incentives-header h2,
    .case-section-header h2 {
      margin: 0 0 16px;
      color: #ffffff;
      font-size: clamp(2.2rem, 4vw, 3.8rem);
      line-height: 1.05;
      letter-spacing: -0.02em;
      font-weight: 800;
    }

    .incentives-header p,
    .case-section-header p {
      margin: 0;
      color: rgba(255, 255, 255, 0.92);
      font-size: clamp(1.02rem, 1.35vw, 1.24rem);
      line-height: 1.6;
      font-weight: 500;
    }

    .incentives-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(180px, 1fr));
      gap: clamp(18px, 2.3vw, 30px) clamp(26px, 4vw, 46px);
    }

    .incentive-item {
      display: grid;
      grid-template-columns: 58px 1fr;
      align-items: start;
      gap: 16px;
      color: #ffffff;
    }

    .incentive-icon {
      width: 58px;
      height: 58px;
      display: grid;
      place-items: center;
      color: var(--brand-light);
    }

    .incentive-icon svg {
      width: 44px;
      height: 44px;
      stroke: currentColor;
      fill: none;
      stroke-width: 2.2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .incentive-item h3 {
      margin: 6px 0 0;
      font-size: clamp(1.16rem, 1.45vw, 1.6rem);
      line-height: 1.3;
      font-weight: 700;
    }

    .mounts-section {
      background:
        linear-gradient(135deg, rgba(89, 178, 229, 0.92), rgba(89, 178, 229, 0.88)),
        url("/assets/media/case-study-flooring-business.avif") center center / cover no-repeat;
      color: #ffffff;
      padding: clamp(56px, 7vw, 96px) 24px;
    }

    .mounts-header {
      max-width: 1160px;
      margin: 0 auto 34px;
      text-align: center;
    }

    .mounts-header h2 {
      margin: 0 0 14px;
      color: #ffffff;
      font-size: clamp(1.6rem, 2.4vw, 2.6rem);
      line-height: 1.05;
      letter-spacing: -0.02em;
      font-weight: 800;
      white-space: nowrap;
    }

    .mounts-grid,
    .case-grid {
      display: grid;
      gap: 28px;
    }

    .mounts-grid {
      grid-template-columns: repeat(3, minmax(240px, 1fr));
    }

    .mount-card,
    .case-card {
      display: grid;
      gap: 16px;
    }

    .mount-card-link {
      display: grid;
      gap: 16px;
      color: inherit;
      text-decoration: none;
    }

    .mount-card-link:hover h3,
    .mount-card-link:focus-visible h3 {
      color: var(--brand-dark);
    }

    .mount-card-link:focus-visible {
      outline: 3px solid var(--brand-accent);
      outline-offset: 5px;
    }

    .mount-card img,
    .case-card img {
      width: 100%;
      aspect-ratio: 1.35 / 1;
      object-fit: cover;
    }

    .mount-card h3,
    .case-card h3 {
      margin: 0;
      color: #ffffff;
      font-size: clamp(1.22rem, 1.4vw, 1.5rem);
      line-height: 1.28;
      font-weight: 700;
    }

    .mount-card p {
      margin: 0;
      color: rgba(255, 255, 255, 0.94);
      font-size: clamp(0.98rem, 1.02vw, 1.08rem);
      line-height: 1.58;
      font-weight: 500;
      max-width: 26ch;
    }

    .mounts-cta-wrap,
    .case-cta-wrap {
      margin-top: 40px;
      display: flex;
      justify-content: center;
    }

    .mounts-cta,
    .case-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 440px;
      padding: 16px 24px;
      text-decoration: none;
      letter-spacing: 0.03em;
      font-size: 0.92rem;
      font-weight: 800;
      box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
    }

    .trust-3-section {
      background: var(--brand-light);
      padding: clamp(54px, 7vw, 96px) 22px;
    }

    .mounts-cta {
      background: var(--brand-dark);
      color: #ffffff;
      text-transform: uppercase;
    }

    .case-section {
      background:
        linear-gradient(135deg, rgba(19, 46, 65, 0.92), rgba(19, 46, 65, 0.88)),
        url("/assets/media/commercial-2baeb6-536.webp") center center / cover no-repeat;
      color: #ffffff;
      padding: clamp(56px, 7vw, 96px) 24px;
    }

    .case-section-header {
      max-width: 1160px;
      margin: 0 auto 34px;
      text-align: center;
    }

    .case-grid {
      grid-template-columns: repeat(4, minmax(210px, 1fr));
    }

    .case-card {
      text-decoration: none;
    }

    .case-cta {
      background: var(--brand-light);
      color: #ffffff;
      text-transform: uppercase;
    }

    .footer-mini {
      background: var(--brand-dark);
      border-top: 3px solid var(--brand-accent);
      color: #fff3ea;
      font-size: 0.8rem;
    }

    .footer-mini-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 12px 18px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      flex-wrap: wrap;
    }

    .mini-logo {
      height: 92px;
      width: auto;
      opacity: 0.97;
    }

    .mini-links {
      display: flex;
      gap: 12px;
      align-items: center;
    }

    .mini-links a,
    .footer-mini p {
      color: #fff3ea;
      margin: 0;
      text-decoration: none;
    }

    @media (max-width: 980px) {
      .top-nav {
        display: none;
      }

      .consult-strip-inner {
        flex-direction: column;
      }

      .consult-strip h2,
      .mounts-header h2 {
        white-space: normal;
      }

      .stats-band-inner,
      .incentives-grid,
      .case-grid {
        grid-template-columns: repeat(2, minmax(220px, 1fr));
      }

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

    @media (max-width: 620px) {
      .topbar-inner,
      .footer-mini-inner {
        padding-left: 14px;
        padding-right: 14px;
      }

      .cta-call {
        padding: 8px 10px;
        font-size: 0.74rem;
      }

      .stats-band-inner,
      .incentives-grid,
      .case-grid {
        grid-template-columns: 1fr;
      }

      .mounts-cta,
      .case-cta,
      .consult-strip .cta {
        min-width: 0;
        width: 100%;
      }

      .footer-mini-inner {
        justify-content: center;
        text-align: center;
      }
    }
  
/* Right-sized backgrounds for phones; original desktop rules remain intact. */
@media(max-width:767px){
.mounts-section{background:linear-gradient(135deg, rgba(89, 178, 229, 0.92), rgba(89, 178, 229, 0.88)),
        url("/assets/media/case-study-flooring-business-2ba19c-960.webp") center center / cover no-repeat;}
}
