:root {
  --brand: #E37D25;
  --brand-dark: #c76413;
  --ink: #161318;
  --text: #302d32;
  --muted: #6e6970;
  --soft: #f7f6f4;
  --warm: #F1F4F6;
  --line: #e9e4df;
  --white: #ffffff;
  --radius: 22px;
  --shadow: 0 22px 60px rgba(22, 19, 24, .10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 82px; }
body { margin: 0; font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif!important; color: var(--text); background: #fff; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; } 
a { color: inherit; }
::selection { background: var(--brand); color: #fff; }

.skip-link { position: fixed; left: 1rem; top: -80px; z-index: 3000; background: var(--ink); color: #fff; padding: .75rem 1rem; border-radius: 10px; text-decoration: none; transition: top .2s ease; }
.skip-link:focus { top: 1rem; }

.container { max-width: 1180px; }
.section-pad { padding: 96px 0; }

/* Navigation */
#mainNav { min-height: 78px; border-bottom: 1px solid rgba(22,19,24,.07); transition: box-shadow .25s ease, min-height .25s ease; }
#mainNav.scrolled { box-shadow: 0 12px 34px rgba(22,19,24,.07); min-height: 70px; }
.navbar-brand { padding: 0; }
.navbar-brand img { display: block; width: 142px; height: 71px; object-fit: contain; object-position: center; }
.navbar-nav { gap: .2rem; }
.nav-link { color: #413d43; font-size: .88rem; font-weight: 700; padding: .6rem .72rem !important; }
.nav-link:hover, .nav-link.active { color: var(--brand); }
.nav-cta { padding: .78rem 1.05rem !important; }

.btn { border-radius: 11px; font-weight: 800; font-size: .84rem; letter-spacing: -.01em; padding: .78rem 1.15rem; transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease; }
.btn-lg { padding: .88rem 1.28rem; font-size: .88rem; }
.btn:hover { transform: translateY(-2px); }
.btn-brand { color: #fff; background: var(--brand); border-color: var(--brand); box-shadow: 0 12px 26px rgba(227,125,37,.20); }
.btn-brand:hover, .btn-brand:focus { color: #fff; background: var(--brand-dark); border-color: var(--brand-dark); box-shadow: 0 14px 30px rgba(227,125,37,.26); }
.btn-outline-dark { color: var(--ink); border-color: #bbb4b9; background: transparent; }
.btn-outline-dark:hover { color: #fff; background: var(--ink); border-color: var(--ink); }

/* Hero / autoplay fade slider */
.hero-section {
  --hero-duration: 5600ms;
  position: relative;
  overflow: hidden;
  background: var(--ink);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.hero-slider-section .carousel-inner { overflow: hidden; }
.hero-slide {
  position: relative;
  min-height: 610px;
  isolation: isolate;
  color: #fff;
  background: #161318;
}
.hero-slide::before {
  content: "";
  position: absolute;
  inset: -3%;
  z-index: -3;
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center;
  opacity: .27;
  filter: saturate(.85) contrast(1.05);
  transform: translate3d(0, var(--hero-scroll-y, 0px), 0) scale(1.04);
  will-change: transform;
  animation: heroBackdropDrift 12s ease-out both;
}
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 78% 34%, rgba(227,125,37,.20), transparent 28%),
    linear-gradient(90deg, rgba(22,19,24,.985) 0%, rgba(22,19,24,.955) 40%, rgba(22,19,24,.82) 67%, rgba(22,19,24,.88) 100%);
}
.hero-slide .container::before {
  content: "";
  position: absolute;
  width: 310px;
  height: 310px;
  right: -145px;
  top: 58px;
  border: 1px solid rgba(227,125,37,.22);
  border-radius: 50%;
  box-shadow: 0 0 0 44px rgba(227,125,37,.035), 0 0 0 92px rgba(227,125,37,.02);
  pointer-events: none;
}
.hero-slide-row { min-height: 610px; padding: 64px 0 92px; }
.hero-slide-copy { position: relative; z-index: 4; max-width: 470px; }
.hero-kicker, .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: var(--brand);
  font-size: .69rem;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-weight: 800;
}
.hero-kicker span { width: 23px; height: 2px; background: var(--brand); border-radius: 99px; flex: 0 0 auto; }
.hero-slide-title {
  color: #fff;
  max-width: 470px;
  font-size: clamp(2rem, 2.8vw, 2.65rem);
  line-height: 1.105;
  letter-spacing: -.043em;
  font-weight: 800;
  margin: 1rem 0 1.05rem;
}
.hero-title-mask { display: block; overflow: hidden; padding: .03em 0 .06em; }
.hero-title-mask > span { display: block; transform: translateY(112%); will-change: transform; }
.hero-title-accent { color: #f09545; }
.hero-slide-lead {
  max-width: 440px;
  color: rgba(255,255,255,.69);
  font-size: .94rem;
  line-height: 1.72;
  margin: 0 0 1.45rem;
}
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 1rem; }
.hero-text-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.88);
  font-size: .79rem;
  font-weight: 800;
  text-decoration: none;
}
.hero-text-link i { color: #f4a35f; transition: transform .2s ease; }
.hero-text-link:hover { color: #fff; }
.hero-text-link:hover i { transform: translateX(4px); }
.hero-proof {
  display: flex;
  align-items: center;
  gap: .48rem;
  margin-top: 1.35rem;
  color: rgba(255,255,255,.48);
  font-size: .67rem;
  font-weight: 650;
}
.hero-proof i { color: #f4a35f; font-size: .75rem; }

.hero-media { position: relative; z-index: 3; padding: 22px 0 0 24px; max-width: 660px; margin-left: auto; opacity: 0; transform: translateX(46px) scale(.975); clip-path: inset(0 0 0 18% round 28px); will-change: transform, opacity, clip-path; }
.hero-media::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 67%;
  height: 73%;
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(227,125,37,.86), rgba(227,125,37,.17));
  z-index: -1;
  box-shadow: 0 24px 65px rgba(0,0,0,.25);
}
.hero-media::after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: 42px;
  width: 92px;
  height: 92px;
  background-image: radial-gradient(rgba(244,163,95,.55) 1.2px, transparent 1.2px);
  background-size: 10px 10px;
  opacity: .65;
  z-index: -1;
}
.hero-visual-inner { transition: transform .22s ease-out; transform: perspective(1100px) rotateX(var(--hero-tilt-y, 0deg)) rotateY(var(--hero-tilt-x, 0deg)); }
.hero-photo-shell {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: #29242b;
  box-shadow: 0 34px 90px rgba(0,0,0,.42);
  isolation: isolate;
}
.hero-photo-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: inherit;
  z-index: 4;
  pointer-events: none;
}
.hero-slide-image {
  display: block;
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: center;
  transform: scale(1.075);
  will-change: transform;
}
.carousel-item:first-child .hero-slide-image { object-position: 51% 48%; }
.hero-photo-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(22,19,24,.03) 46%, rgba(22,19,24,.74) 100%);
  pointer-events: none;
}
.hero-photo-badge {
  position: absolute;
  left: 20px;
  bottom: 19px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: .72rem;
  width: min(355px, calc(100% - 40px));
  min-height: 64px;
  padding: .78rem .9rem;
  color: #fff;
  background: rgba(22,19,24,.82);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 15px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 12px 36px rgba(0,0,0,.18);
}
.hero-photo-badge > i { color: #f4a35f; font-size: 1.16rem; flex: 0 0 auto; }
.hero-photo-badge strong, .hero-photo-badge span { display: block; }
.hero-photo-badge strong { font-size: .75rem; line-height: 1.3; }
.hero-photo-badge span { color: rgba(255,255,255,.58); font-size: .61rem; line-height: 1.45; margin-top: .12rem; }

.hero-slider-dock { position: absolute; left: 0; right: 0; bottom: 25px; z-index: 8; pointer-events: none; }
.hero-slider-nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; pointer-events: auto; }
.hero-indicators.carousel-indicators { position: static; margin: 0; gap: .5rem; align-items: center; }
.hero-indicators.carousel-indicators [data-bs-target] {
  position: relative;
  box-sizing: border-box;
  width: 54px;
  height: 28px;
  margin: 0;
  border: 0;
  background: transparent;
  opacity: 1;
  text-indent: 0;
  color: rgba(255,255,255,.38);
  font-size: .57rem;
  font-weight: 800;
  overflow: hidden;
  transition: color .25s ease, width .25s ease;
}
.hero-indicators.carousel-indicators [data-bs-target]::before,
.hero-indicators.carousel-indicators [data-bs-target]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  border-radius: 99px;
}
.hero-indicators.carousel-indicators [data-bs-target]::before { background: rgba(255,255,255,.18); }
.hero-indicators.carousel-indicators [data-bs-target]::after { background: var(--brand); transform: scaleX(0); transform-origin: left; }
.hero-indicators.carousel-indicators [data-bs-target] span { position: absolute; left: 0; top: 1px; }
.hero-indicators.carousel-indicators .active { width: 76px; color: #fff; }
.hero-indicators.carousel-indicators .active::after { animation: heroProgress var(--hero-duration) linear forwards; }
.hero-arrows { display: flex; gap: .48rem; }
.hero-arrow {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  color: #fff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: .2s ease;
}
.hero-arrow:hover { color: #fff; background: var(--brand); border-color: var(--brand); transform: translateY(-2px); }
.hero-arrow i { font-size: .82rem; }

/* Strong, clean entrance animation on first load and every new slide. */
.hero-reveal { opacity: 0; transform: translateY(18px); filter: blur(3px); will-change: transform, opacity, filter; }
.carousel-item.active.is-animated .hero-reveal-kicker { animation: heroFadeUp .58s cubic-bezier(.16,1,.3,1) .10s both; }
.carousel-item.active.is-animated .hero-title-mask:nth-child(1) > span { animation: heroLineReveal .74s cubic-bezier(.16,1,.3,1) .16s both; }
.carousel-item.active.is-animated .hero-title-mask:nth-child(2) > span { animation: heroLineReveal .78s cubic-bezier(.16,1,.3,1) .25s both; }
.carousel-item.active.is-animated .hero-reveal-copy { animation: heroFadeUp .64s cubic-bezier(.16,1,.3,1) .36s both; }
.carousel-item.active.is-animated .hero-reveal-actions { animation: heroFadeUp .64s cubic-bezier(.16,1,.3,1) .46s both; }
.carousel-item.active.is-animated .hero-reveal-proof { animation: heroFadeUp .58s cubic-bezier(.16,1,.3,1) .56s both; }
.carousel-item.active.is-animated .hero-media { animation: heroImageReveal .95s cubic-bezier(.16,1,.3,1) .10s both; }
.carousel-item.active.is-animated .hero-slide-image { animation: heroImageDrift 5.6s ease-out .16s both; }
.carousel-item.active.is-animated .hero-photo-badge { animation: heroBadgeReveal .62s cubic-bezier(.16,1,.3,1) .72s both; }

@keyframes heroFadeUp { from { opacity: 0; transform: translateY(18px); filter: blur(3px); } to { opacity: 1; transform: translateY(0); filter: blur(0); } }
@keyframes heroLineReveal { from { transform: translateY(112%); } to { transform: translateY(0); } }
@keyframes heroImageReveal { from { opacity: 0; transform: translateX(46px) scale(.975); clip-path: inset(0 0 0 18% round 28px); } to { opacity: 1; transform: translateX(0) scale(1); clip-path: inset(0 0 0 0 round 28px); } }
@keyframes heroImageDrift { from { transform: scale(1.075); } to { transform: scale(1.015); } }
@keyframes heroBadgeReveal { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
@keyframes heroBackdropDrift { from { transform: translate3d(0, var(--hero-scroll-y, 0px), 0) scale(1.07); } to { transform: translate3d(0, var(--hero-scroll-y, 0px), 0) scale(1.025); } }
@keyframes heroProgress { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.carousel-fade .carousel-item { transition-property: opacity; transition-duration: 1.05s; }
.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end { transition: opacity 1.05s ease; }

/* Smooth scroll parallax layers */
.scroll-parallax-layer {
  transform: translate3d(0, var(--scroll-parallax-y, 0px), 0);
  will-change: transform;
  backface-visibility: hidden;
}
.scroll-parallax-image {
  transform: translate3d(0, var(--scroll-parallax-y, 0px), 0);
  will-change: transform;
  backface-visibility: hidden;
}

/* Audience */
.audience-strip { background: #fff; color: var(--ink); border-bottom: 1px solid var(--line); }
.audience-grid { min-height: 80px; display: grid; grid-template-columns: 1.35fr repeat(5,1fr); align-items: stretch; }
.audience-grid > * { min-width: 0; display: flex; align-items: center; justify-content: center; gap: .5rem; border-left: 1px solid var(--line); font-size: .76rem; font-weight: 700; }
.audience-grid > *:first-child { border-left: 0; justify-content: flex-start; color: var(--muted); font-size: .68rem; text-transform: uppercase; letter-spacing: .1em; }
.audience-grid i { color: var(--brand); font-size: 1rem; }

/* General sections */
.section-kicker { margin-bottom: .85rem; }
.section-kicker-light { color: #f4a35f; }
.section-title { color: var(--ink); font-size: clamp(2rem, 3vw, 2.7rem); line-height: 1.12; letter-spacing: -.045em; font-weight: 800; margin: 0; }
.section-title span { color: var(--brand); }
.section-copy { color: var(--muted); font-size: .94rem; line-height: 1.8; max-width: 620px; }
.section-head { display: grid; grid-template-columns: 1.3fr .7fr; gap: 2rem; align-items: end; margin-bottom: 46px; }

.intro-section { background: #fff; }
.editorial-image { position: relative; max-width: 550px; }
.editorial-image img { display: block; width: 100%; height: 470px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.editorial-image::before { content: ""; position: absolute; left: -14px; bottom: -14px; width: 42%; height: 42%; background: var(--brand); border-radius: 20px; z-index: -1; opacity: .92; }
.editorial-note { position: absolute; right: 16px; bottom: 26px; width: min(240px, calc(100% - 32px)); background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 1rem 1.1rem; box-shadow: 0 16px 42px rgba(22,19,24,.12); }
.editorial-note strong, .editorial-note span { display: block; }
.editorial-note strong { color: var(--ink); font-size: .8rem; }
.editorial-note span { color: var(--muted); font-size: .67rem; line-height: 1.5; margin-top: .3rem; }
.mini-benefits { margin-top: 1.8rem; display: grid; gap: .25rem; }
.mini-benefits > div { display: grid; grid-template-columns: 44px 1fr; gap: .85rem; padding: .9rem 0; border-bottom: 1px solid var(--line); }
.mini-benefits i { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 12px; background: var(--warm); color: var(--brand); font-size: 1rem; }
.mini-benefits strong, .mini-benefits small { display: block; }
.mini-benefits strong { color: var(--ink); font-size: .84rem; }
.mini-benefits small { color: var(--muted); font-size: .72rem; line-height: 1.55; margin-top: .2rem; }

/* Services */
.services-section { background: var(--soft); }
.service-card { overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 18px; transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease; }
.service-card:hover { transform: translateY(-6px); border-color: rgba(227,125,37,.38); box-shadow: 0 18px 48px rgba(22,19,24,.08); }
.service-image { position: relative; overflow: hidden; }
.service-image img { display: block; width: 100%; height: 205px; object-fit: cover; scale: 1.08; transition: scale .75s cubic-bezier(.16,1,.3,1); }
.service-card:hover .service-image img { scale: 1.13; }
.service-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 56%, rgba(22,19,24,.48)); }
.service-image span { position: absolute; left: 16px; bottom: 14px; z-index: 2; color: #fff; background: rgba(22,19,24,.62); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.22); border-radius: 999px; padding: .38rem .65rem; font-size: .62rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.service-content { padding: 1.35rem 1.35rem 1.45rem; }
.service-content h3 { color: var(--ink); font-size: 1.02rem; font-weight: 800; line-height: 1.35; margin: 0 0 .55rem; }
.service-content p { color: var(--muted); font-size: .78rem; line-height: 1.7; margin: 0 0 1rem; }
.service-content a, .text-link { display: inline-flex; align-items: center; gap: .45rem; color: var(--brand); text-decoration: none; font-size: .74rem; font-weight: 800; }
.service-content a i, .text-link i { transition: transform .2s ease; }
.service-content a:hover i, .text-link:hover i { transform: translateX(4px); }
.service-extras { margin-top: 28px; display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid var(--line); background: #fff; border-radius: 18px; overflow: hidden; }
.service-extra { display: grid; grid-template-columns: 36px 1fr; gap: .7rem; padding: 1rem; border-left: 1px solid var(--line); }
.service-extra:first-child { border-left: 0; }
.service-extra i { width: 36px; height: 36px; display: grid; place-items: center; background: var(--warm); color: var(--brand); border-radius: 10px; }
.service-extra strong, .service-extra small { display: block; }
.service-extra strong { color: var(--ink); font-size: .72rem; }
.service-extra small { color: var(--muted); font-size: .63rem; line-height: 1.45; margin-top: .15rem; }

.statement-section { background: var(--soft); padding: 0 0 96px; }
.statement-card { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 2rem; color: #fff; background: linear-gradient(130deg, #161318 0%, #241f25 78%, #35231a 100%); border-radius: 22px; padding: 2rem 2.2rem; overflow: hidden; position: relative; }
.statement-card::after { content: ""; position: absolute; width: 180px; height: 180px; right: 9%; top: -100px; border-radius: 50%; background: rgba(227,125,37,.22); }
.statement-card > * { position: relative; z-index: 1; min-width: 0; }
.statement-card .btn { justify-self: end; max-width: 100%; white-space: nowrap; }
.statement-card span { color: #f6a45e; font-size: .68rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 800; }
.statement-card h2 { margin: .35rem 0 0; font-size: clamp(1.45rem,2.4vw,2.05rem); letter-spacing: -.035em; font-weight: 800; max-width: 720px; }

/* Industries */
.industries-section { background: var(--ink); position: relative; overflow: hidden; }
.industry-card { position: relative; min-height: 390px; border-radius: 18px; overflow: hidden; background: #2a252b; }
.industry-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; scale: 1.08; transition: scale .85s cubic-bezier(.16,1,.3,1); }
.industry-card:hover img { scale: 1.13; }
.industry-overlay { position: absolute; inset: 0; background:linear-gradient(180deg, rgb(22 19 24 / 0%) 20%, rgb(22 19 24 / 63%) 52%, rgb(22 19 24) 100%); }
.industry-copy { position: absolute; left: 1.25rem; right: 1.25rem; bottom: 1.25rem; color: #fff; }
.industry-copy span { color: #f2a15c; text-transform: uppercase; letter-spacing: .12em; font-size: .62rem; font-weight: 800; }
.industry-copy h3 { font-size: 1rem; font-weight: 800; margin: .45rem 0 .38rem; }
.industry-copy p { color: rgba(255,255,255,.65); font-size: .7rem; line-height: 1.55; margin: 0; }

/* Why */
.why-section { background: #fff; }
.why-visual { position: relative; max-width: 550px; }
.why-visual img { display: block; width: 100%; height: 500px; object-fit: cover; border-radius: var(--radius); }
.why-badge { position: absolute; left: 22px; bottom: 22px; background: var(--brand); color: #fff; border-radius: 14px; padding: .85rem 1rem; box-shadow: 0 16px 38px rgba(22,19,24,.16); }
.why-badge span, .why-badge strong { display: block; }
.why-badge span { font-size: .58rem; text-transform: uppercase; letter-spacing: .1em; opacity: .78; }
.why-badge strong { font-size: .82rem; margin-top: .15rem; }
.reason-list { margin-top: 1.3rem; }
.reason-list > div { display: grid; grid-template-columns: 38px 1fr; gap: .8rem; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.reason-list > div > span { color: var(--brand); font-size: .68rem; font-weight: 800; padding-top: .2rem; }
.reason-list h3 { color: var(--ink); font-size: .9rem; font-weight: 800; margin: 0 0 .3rem; }
.reason-list p { color: var(--muted); font-size: .74rem; line-height: 1.6; margin: 0; }

/* Process */
.process-section { background: var(--warm); }
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid #f0d9c5; border-radius: 18px; overflow: hidden; background: #fff; }
.process-grid article { position: relative; min-height: 245px; padding: 1.45rem; border-left: 1px solid var(--line); }
.process-grid article:first-child { border-left: 0; }
.process-grid article > span { position: absolute; right: 1rem; top: .9rem; color: #d7d0ca; font-size: 1.8rem; font-weight: 800; }
.process-grid i { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 12px; background: var(--warm); color: var(--brand); font-size: 1.05rem; }
.process-grid h3 { color: var(--ink); font-size: .95rem; font-weight: 800; margin: 2.8rem 0 .55rem; }
.process-grid p { color: var(--muted); font-size: .73rem; line-height: 1.65; margin: 0; }

/* Canada */
.canada-section { background: #fff; }
.canada-photo { position: relative; max-width: 550px; }
.canada-photo img { display: block; width: 100%; height: 450px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.canada-photo-label { position: absolute; left: 18px; right: 18px; bottom: 18px; display: flex; align-items: center; gap: .75rem; color: #fff; background: rgba(22,19,24,.78); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.16); border-radius: 14px; padding: .8rem .9rem; }
.canada-photo-label i { color: #f2a15c; font-size: 1.1rem; }
.canada-photo-label strong, .canada-photo-label small { display: block; }
.canada-photo-label strong { font-size: .74rem; }
.canada-photo-label small { color: rgba(255,255,255,.65); font-size: .62rem; margin-top: .12rem; }
.location-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: .65rem; margin-top: 1.5rem; }
.location-grid span { padding: .75rem .85rem; border: 1px solid var(--line); border-radius: 11px; color: #4a454c; background: var(--soft); font-size: .72rem; font-weight: 700; }
.location-grid span::before { content: ""; display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--brand); margin-right: .5rem; vertical-align: 1px; }

/* Testimonials */
.testimonials-section { background: var(--soft); }
.testimonial-card { height: 100%; background: #fff; border: 1px solid var(--line); border-radius: 17px; padding: 1.45rem; }
.testimonial-card > i { color: var(--brand); font-size: 1.55rem; }
.testimonial-card p { color: #39353b; font-size: .82rem; line-height: 1.75; margin: .8rem 0 1.6rem; }
.testimonial-card div { border-top: 1px solid var(--line); padding-top: .9rem; }
.testimonial-card strong, .testimonial-card span { display: block; }
.testimonial-card strong { color: var(--ink); font-size: .73rem; }
.testimonial-card span { color: var(--muted); font-size: .64rem; margin-top: .12rem; }

/* FAQ */
.faq-section { background: #fff; }
.accordion-item { border: 0; border-bottom: 1px solid var(--line); }
.accordion-button { padding: 1.15rem 0; background: transparent !important; color: var(--ink) !important; box-shadow: none !important; font-size: .82rem; line-height: 1.45; font-weight: 800; }
.accordion-button::after { background-size: .9rem; }
.accordion-body { padding: 0 0 1.2rem; color: var(--muted); font-size: .76rem; line-height: 1.75; }

/* Contact */
.contact-section { background: var(--ink); padding: 88px 0; }
.contact-shell { overflow: hidden; border-radius: 22px; background: #fff; box-shadow: 0 28px 80px rgba(0,0,0,.24); }
.contact-copy { padding: 2.6rem; background: linear-gradient(150deg, #201c21, #161318 72%); color: #fff; }
.contact-copy h2 { font-size: clamp(1.8rem, 3vw, 2.45rem); line-height: 1.15; letter-spacing: -.04em; font-weight: 800; margin: .8rem 0 1rem; }
.contact-copy p { color: rgba(255,255,255,.60); font-size: .8rem; line-height: 1.7; }
.contact-points { display: grid; gap: .65rem; margin-top: 1.5rem; }
.contact-points span { font-size: .72rem; font-weight: 700; color: rgba(255,255,255,.78); }
.contact-points i { color: #f2a15c; margin-right: .5rem; }
.contact-form-wrap { padding: 2.3rem; background: #fff; }
.form-label { color: var(--ink); font-size: .68rem; font-weight: 800; margin-bottom: .35rem; }
.form-control, .form-select { min-height: 46px; border-radius: 10px; border-color: #ded8d3; color: var(--ink); font-size: .77rem; padding: .7rem .8rem; }
textarea.form-control { min-height: 105px; }
.form-control:focus, .form-select:focus { border-color: rgba(227,125,37,.7); box-shadow: 0 0 0 .2rem rgba(227,125,37,.10); }
.form-note { color: #8d878d; font-size: .6rem; line-height: 1.5; }
.form-status { margin-top: .7rem; font-size: .7rem; }
.form-status.success { color: #247a46; }

/* Footer */
.site-footer { background: #0f0d10; color: #fff; border-top: 1px solid rgba(255,255,255,.06); }
.footer-logo { width: 145px; height: 73px; object-fit: contain; background: #fff; border-radius: 10px; padding: 3px; }
.footer-copy { color: rgba(255,255,255,.48); max-width: 430px; font-size: .72rem; line-height: 1.7; }
.footer-heading { color: #fff; font-size: .72rem; font-weight: 800; margin: 0 0 .85rem; }
.site-footer a { display: block; color: rgba(255,255,255,.48); text-decoration: none; font-size: .69rem; margin: .55rem 0; }
.site-footer a:hover { color: #f2a15c; }
.site-footer hr { border-color: rgba(255,255,255,.08); margin: 1.8rem 0 1.1rem; }
.footer-bottom { color: rgba(255,255,255,.35); font-size: .63rem; }

.back-to-top { position: fixed; right: 22px; bottom: 22px; z-index: 1200; width: 42px; height: 42px; border: 0; border-radius: 50%; background: var(--brand); color: #fff; box-shadow: 0 12px 30px rgba(22,19,24,.18); opacity: 0; visibility: hidden; transform: translateY(10px); transition: .25s ease; }
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }

/* Responsive */
@media (max-width: 1199.98px) {
  .hero-slide, .hero-slide-row { min-height: 585px; }
  .hero-slide-image { height: 435px; }
  .service-extras { grid-template-columns: repeat(2,1fr); }
  .service-extra:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .service-extra:nth-child(4) { border-top: 1px solid var(--line); }
}

@media (max-width: 991.98px) {
  .section-pad { padding: 78px 0; }
  #mainNav { min-height: 70px; }
  .navbar-brand img { width:100%!important; height: 102px!important; }
  .navbar-collapse { padding: .7rem 0 1rem; }
  .navbar-nav { align-items: stretch !important; }
  .nav-link { padding: .7rem 0 !important; }
  .nav-cta { margin-top: .4rem; text-align: center; }
  .hero-slide { min-height: auto; }
  .hero-slide-row { min-height: auto; padding: 58px 0 100px; }
  .hero-slide-copy { max-width: 690px; margin: 0 auto; }
  .hero-slide-title, .hero-slide-lead { max-width: 650px; }
  .hero-media { max-width: 720px; margin: .8rem auto 0; padding-left: 18px; }
  .hero-slide-image { height: 440px; }
  .hero-slider-nav { justify-content: space-between; }
  .hero-slide::after { background: linear-gradient(180deg, rgba(22,19,24,.97) 0%, rgba(22,19,24,.93) 52%, rgba(22,19,24,.88) 100%); }
  .audience-grid { grid-template-columns: repeat(5,1fr); }
  .audience-label { display: none !important; }
  .section-head { grid-template-columns: 1fr; gap: 1rem; }
  .editorial-image, .why-visual, .canada-photo { max-width: 680px; margin: 0 auto; }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .process-grid article:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .process-grid article:nth-child(4) { border-top: 1px solid var(--line); }
  .statement-section { padding-bottom: 78px; }
  .statement-card { grid-template-columns: 1fr; align-items: flex-start; gap: 1.25rem; }
  .statement-card .btn { justify-self: start; }
}

@media (max-width: 767.98px) {
  .section-pad { padding: 68px 0; }
  .hero-slide-row { padding: 46px 0 96px; }
  .hero-slide-title { font-size: clamp(1.9rem, 7.6vw, 2.25rem); line-height: 1.1; }
  .hero-slide-lead { font-size: .88rem; line-height: 1.66; }
  .hero-actions { align-items: flex-start; }
  .hero-media { padding: 14px 0 0 14px; }
  .hero-slide-image { height: 365px; }
  .hero-photo-badge { left: 14px; bottom: 14px; width: calc(100% - 28px); min-height: 60px; }
  .hero-slider-dock { bottom: 20px; }
  .audience-grid { min-height: 0; grid-template-columns: repeat(2,1fr); padding: .65rem 0; }
  .audience-grid > * { min-height: 48px; border-left: 0; border-bottom: 1px solid var(--line); }
  .audience-grid > *:last-child { grid-column: 1 / -1; border-bottom: 0; }
  .section-title { font-size: clamp(1.85rem, 8vw, 2.25rem); }
  .editorial-image img, .why-visual img, .canada-photo img { height: 390px; }
  .editorial-note { right: 12px; width: 220px; }
  .service-extras { grid-template-columns: 1fr; }
  .service-extra { border-left: 0 !important; border-top: 1px solid var(--line); }
  .service-extra:first-child { border-top: 0; }
  .statement-card { padding: 1.6rem; }
  .industry-card { min-height: 340px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid article { border-left: 0 !important; border-top: 1px solid var(--line); min-height: 210px; }
  .process-grid article:first-child { border-top: 0; }
  .contact-section { padding: 68px 0; }
  .contact-copy, .contact-form-wrap { padding: 1.7rem; }
}

@media (max-width: 479.98px) {
  .container { padding-left: 20px; padding-right: 20px; }
  .navbar-brand img { width: 112px; height: 56px; }
  .hero-slide-title { font-size: 1.9rem; letter-spacing: -.04em; }
  .hero-kicker { font-size: .59rem; letter-spacing: .095em; }
  .hero-slide-image { height: 315px; }
  .hero-photo-badge { padding: .68rem .78rem; }
  .hero-photo-badge span { font-size: .59rem; }
  .hero-indicators.carousel-indicators [data-bs-target] { width: 38px; }
  .hero-indicators.carousel-indicators .active { width: 58px; }
  .hero-arrows { display: none; }
  .editorial-image img, .why-visual img, .canada-photo img { height: 330px; }
  .location-grid { grid-template-columns: 1fr; }
  .statement-card .btn { width: 100%; white-space: normal; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .hero-reveal, .hero-media { opacity: 1 !important; transform: none !important; filter: none !important; clip-path: none !important; }
  .hero-title-mask > span, .hero-slide-image, .hero-photo-badge { animation: none !important; transform: none !important; opacity: 1 !important; }
  .scroll-parallax-layer, .scroll-parallax-image { transform: none !important; }
  .service-image img, .industry-card img { scale: 1 !important; }
}


/* Client-review refinement: readability, contrast, tighter mobile hero and clearer branding */
:root {
  --muted: #5d585f;
}

/* Consistent readable type scale across the layout */
.nav-link { font-size: .94rem; }
.btn { font-size: .90rem; }
.btn-lg { font-size: .94rem; }
.hero-kicker, .section-kicker { font-size: .76rem; }
.hero-slide-lead { font-size: 1rem; line-height: 1.68; }
.hero-text-link { font-size: .86rem; }
.hero-proof { font-size: .78rem; color: rgba(255,255,255,.66); }
.hero-photo-badge strong { font-size: .84rem; }
.hero-photo-badge span { font-size: .74rem; color: rgba(255,255,255,.72); }
.audience-grid > * { font-size: .84rem; }
.audience-grid > *:first-child { font-size: .76rem; }
.section-copy { font-size: 1rem; line-height: 1.75; }
.editorial-note strong { font-size: .9rem; }
.editorial-note span { font-size: .8rem; line-height: 1.55; }
.mini-benefits strong { font-size: .92rem; }
.mini-benefits small { font-size: .84rem; line-height: 1.55; }
.service-image span { font-size: .72rem; }
.service-content h3 { font-size: 1.08rem; }
.service-content p { font-size: .9rem; line-height: 1.65; }
.service-content a, .text-link { font-size: .86rem; }
.service-extra { grid-template-columns: 40px 1fr; gap: .8rem; padding: 1.12rem; }
.service-extra i { width: 40px; height: 40px; }
.service-extra strong { font-size: .9rem; line-height: 1.35; }
.service-extra small { font-size: .8rem; line-height: 1.55; margin-top: .2rem; }
.why-badge span { font-size: .7rem; }
.why-badge strong { font-size: .9rem; }
.reason-list > div > span { font-size: .76rem; }
.reason-list h3 { font-size: 1rem; }
.reason-list p { font-size: .86rem; line-height: 1.6; }
.process-grid h3 { font-size: 1rem; }
.process-grid p { font-size: .85rem; line-height: 1.6; }
.canada-photo-label strong { font-size: .84rem; }
.canada-photo-label small { font-size: .74rem; color: rgba(255,255,255,.74); }
.testimonial-card p { font-size: .9rem; }
.testimonial-card strong { font-size: .82rem; }
.testimonial-card span { font-size: .76rem; }
.accordion-button { font-size: .9rem; }
.accordion-body { font-size: .87rem; }
.contact-copy p { font-size: .9rem; color: rgba(255,255,255,.72); }
.contact-points span { font-size: .84rem; }
.form-label { font-size: .78rem; }
.form-control, .form-select { font-size: .88rem; }
.form-note { font-size: .72rem; }
.form-status { font-size: .8rem; }

/* Transparent logo assets: no white image boxes in navigation/footer. */
.navbar-brand img {
  width: 100%!important;
  height:92px!important;
  object-fit:contain;
}
.footer-logo {
  width: 205px;
  height: auto;
  max-height: 104px;
  object-fit: contain;
  object-position: left center;
  background: transparent;
  border-radius: 0;
  padding: 0;
}

/* Make the narrow services strip readable without changing its information density. */
.service-extras { margin-top: 32px; }

/* Smaller, cleaner statement CTA block. */
.statement-section { padding-bottom: 76px; }
.statement-card {
  max-width: 1040px;
  margin: 0 auto;
  padding: 1.35rem 1.6rem;
  gap: 1.4rem;
  border-radius: 18px;
}
.statement-card span { font-size: .74rem; }
.statement-card h2 {
  font-size: clamp(1.28rem, 1.8vw, 1.62rem);
  line-height: 1.2;
  max-width: 700px;
}
.statement-card .btn { padding: .72rem 1rem; font-size: .84rem; }

/* Industry cards: brighter imagery, less diffusion, stronger text contrast. */
.industries-section { background: #211d22; }
.industry-card { min-height: 370px; background: #332e34; }
.industry-card img {
  filter: brightness(1.14) saturate(1.07) contrast(1.02);
  scale: 1.045;
}
.industry-card:hover img { scale: 1.09; }
.industry-overlay {
  background: linear-gradient(180deg, rgba(22,19,24,.02) 20%, rgba(22,19,24,.12) 52%, rgba(22,19,24,.78) 100%);
}
.industry-copy { left: 1.35rem; right: 1.35rem; bottom: 1.35rem; text-shadow: 0 2px 12px rgba(0,0,0,.5); }
.industry-copy span { font-size: .72rem; color: #ffb06c; }
.industry-copy h3 { font-size: 1.12rem; margin: .45rem 0 .4rem; }
.industry-copy p { color: rgba(255,255,255,.9); font-size: .86rem; line-height: 1.55; }

/* Locations: requested 3-column desktop layout and a stronger CTA. */
.location-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .7rem; }
.location-grid span { font-size: .84rem; padding: .78rem .82rem; }
.canada-section .text-link {
  margin-top: 1.35rem !important;
  padding: .72rem .95rem;
  border: 1px solid rgba(227,125,37,.42);
  border-radius: 10px;
  background: var(--warm);
  font-size: .9rem;
}
.canada-section .text-link:hover { background: #e5eaee; }

/* Footer readability and contrast. */
.footer-copy { max-width: 470px; font-size: .9rem; line-height: 1.7; color: rgba(255,255,255,.68); }
.footer-heading { font-size: .88rem; margin-bottom: .9rem; }
.site-footer a { font-size: .84rem; color: rgba(255,255,255,.67); margin: .58rem 0; }
.footer-bottom { font-size: .75rem; color: rgba(255,255,255,.52); }

@media (max-width: 991.98px) {
  .navbar-brand img { width: 142px; height: 66px; }
  .location-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 767.98px) {
  /* Mobile hero is intentionally compact so the main banner details are visible with far less scrolling. */
  .section-pad { padding: 58px 0; }
  #mainNav { min-height: 60px; }
  .navbar-brand img { width: 124px; height: 56px; }
  .navbar-collapse { padding: .4rem 0 .75rem; }
  .hero-slide-row { padding: 26px 0 58px; gap: .7rem !important; }
  .hero-slide-copy { max-width: 100%; }
  .hero-kicker { font-size: .7rem; letter-spacing: .09em; }
  .hero-slide-title { font-size: clamp(1.72rem, 7.3vw, 2rem); margin: .72rem 0 .78rem; line-height: 1.08; }
  .hero-slide-lead { font-size: .88rem; line-height: 1.55; margin-bottom: .9rem; }
  .hero-actions { gap: .65rem; }
  .hero-actions .btn-lg { padding: .72rem .9rem; font-size: .84rem; }
  .hero-text-link { font-size: .82rem; }
  .hero-proof { margin-top: .78rem; font-size: .73rem; }
  .hero-media { margin: .35rem auto 0; padding: 8px 0 0 8px; }
  .hero-media::before { width: 58%; height: 66%; border-radius: 22px; }
  .hero-media::after { width: 64px; height: 64px; bottom: 28px; }
  .hero-photo-shell { border-radius: 19px; }
  .hero-slide-image { height: 245px; }
  .hero-photo-badge {
    left: 10px;
    bottom: 10px;
    width: calc(100% - 20px);
    min-height: 50px;
    padding: .58rem .68rem;
    border-radius: 12px;
    gap: .55rem;
  }
  .hero-photo-badge > i { font-size: .95rem; }
  .hero-photo-badge strong { font-size: .78rem; }
  .hero-photo-badge span { font-size: .68rem; line-height: 1.35; }
  .hero-slider-dock { bottom: 9px; }
  .hero-indicators.carousel-indicators [data-bs-target] { height: 22px; }
  .hero-slide .container::before { display: none; }
  .statement-section { padding-bottom: 58px; }
  .statement-card { padding: 1.2rem; }
  .industry-card { min-height: 320px; }
  .location-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-section { padding: 58px 0; }
  .footer-logo { width: 185px; }
}

@media (max-width: 479.98px) {
  .container { padding-left: 18px; padding-right: 18px; }
  .navbar-brand img { width: 112px; height: 50px; }
  .hero-slide-row { padding: 20px 0 52px; }
  .hero-slide-title { font-size: 1.68rem; }
  .hero-slide-image { height: 215px; }
  .hero-photo-badge span { display: none; }
  .hero-photo-badge { min-height: 44px; }
  .location-grid { grid-template-columns: 1fr; }
  .statement-card .btn { width: auto; align-self: flex-start; }
  .footer-copy { font-size: .86rem; }
  .site-footer a { font-size: .82rem; }
}


/* Client-requested contact, branding, typography and color refinements */
.pre-menu-contact {
  position: relative;
  z-index: 1040;
  background: #161318;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.pre-menu-contact-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.pre-menu-business { font-size: .76rem; font-weight: 800; letter-spacing: .02em; }
.pre-menu-links { display: flex; align-items: center; justify-content: flex-end; gap: 1.15rem; flex-wrap: wrap; }
.pre-menu-links a {
  display: inline-flex;
  align-items: center;
  gap: .38rem;
  color: rgba(255,255,255,.80);
  font-size: .74rem;
  font-weight: 700;
  text-decoration: none;
  transition: color .2s ease;
}
.pre-menu-links a:hover { color: #fff; }
.pre-menu-links i { color: var(--brand); font-size: .82rem; }

/* Keep the logo visible but compact, and visually crop the embedded tagline from the asset. */
#mainNav .navbar-brand {
  width: 136px;
  height: 58px;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  flex: 0 0 136px;
}
#mainNav .navbar-brand img {
  display: block;
  width: 136px !important;
  height: auto !important;
  max-width: none;
  clip-path: inset(0 0 15% 0);
  transform: translateY(-1px);
  transform-origin: top left;
}

/* Slightly smaller headings and slightly larger paragraph copy site-wide. */
.hero-slide-title { font-size: clamp(1.9rem, 2.45vw, 2.35rem); }
.section-title { font-size: clamp(1.8rem, 2.55vw, 2.35rem); }
.contact-copy h2 { font-size: clamp(1.65rem, 2.55vw, 2.15rem); }
.section-copy { font-size: 1.03rem; }
.hero-slide-lead { font-size: 1.03rem; }
.service-content p,
.reason-list p,
.process-grid p,
.testimonial-card p,
.accordion-body,
.contact-copy p,
.footer-copy { font-size: .94rem; }

/* Give hero primary CTAs a visible border without changing their fill or layout. */
.hero-actions .btn {
  border: 1px solid rgba(255,255,255,.62) !important;
}
.hero-actions .btn:hover,
.hero-actions .btn:focus {
  border-color: #fff !important;
}

/* Footer contact and map additions. */
.footer-grid {
  display: grid;
  grid-template-columns: minmax(250px, 1.8fr) minmax(110px, .8fr) minmax(110px, .8fr) minmax(100px, .65fr) minmax(260px, 1.7fr);
  gap: 1.55rem;
  align-items: start;
}
.footer-logo-link {
  display: block !important;
  width: 164px;
  height: 70px;
  overflow: hidden;
  margin: 0 !important;
}
.footer-logo {
  display: block;
  width: 164px !important;
  height: auto !important;
  max-width: none;
  max-height: none;
  clip-path: inset(0 0 15% 0);
  transform: translateY(-1px);
  transform-origin: top left;
}
.footer-contact-list { display: grid; gap: .16rem; margin-top: .85rem; }
.site-footer .footer-contact-list a {
  display: flex;
  align-items: center;
  gap: .48rem;
  margin: .34rem 0;
}
.footer-contact-list i,
.footer-address i { color: #f2a15c; flex: 0 0 auto; }
.site-footer .footer-address {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  line-height: 1.55;
  margin: .35rem 0 .72rem;
}
.footer-map-wrap {
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.10);
  background: #1b181c;
}
.footer-map-wrap iframe {
  display: block;
  width: 100%;
  height: 150px;
  border: 0;
  filter: saturate(.85) contrast(.96);
}

@media (max-width: 991.98px) {
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  #mainNav .navbar-brand { width: 130px; height: 56px; flex-basis: 130px; }
  #mainNav .navbar-brand img { width: 130px !important; }
}

@media (max-width: 767.98px) {
  .pre-menu-contact-inner { min-height: 32px; }
  .pre-menu-business { display: none; }
  .pre-menu-links { width: 100%; justify-content: center; gap: .8rem; }
  .pre-menu-links a { font-size: .7rem; }
  .pre-menu-links a:last-child span { display: none; }
  #mainNav .navbar-brand { width: 118px; height: 51px; flex-basis: 118px; }
  #mainNav .navbar-brand img { width: 118px !important; }
  .hero-slide-title { font-size: clamp(1.62rem, 6.9vw, 1.9rem); }
  .section-title { font-size: clamp(1.6rem, 6.8vw, 1.9rem); }
  .hero-slide-lead, .section-copy { font-size: .96rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-map-wrap iframe { height: 180px; }
}

@media (max-width: 479.98px) {
  .pre-menu-links { gap: .65rem; }
  .pre-menu-links a span { display: none; }
  .pre-menu-links a { font-size: .84rem; }
  #mainNav .navbar-brand { width: 110px; height: 48px; flex-basis: 110px; }
  #mainNav .navbar-brand img { width: 110px !important; }
}


/* Client follow-up: clearer industry-card text, address in the pre-menu, and bordered hero CTAs. */
.pre-menu-left { display: flex; align-items: center; gap: .85rem; min-width: 0; }
.pre-menu-address {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  min-width: 0;
  color: rgba(255,255,255,.84);
  font-size: .72rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.pre-menu-address:hover { color: #fff; }
.pre-menu-address i { color: var(--brand); font-size: .82rem; flex: 0 0 auto; }

/* Increase the dark gradient only where the industry-card copy sits so image details remain visible. */
.industry-overlay {
  background: linear-gradient(180deg, rgba(22,19,24,.03) 12%, rgba(22,19,24,.22) 43%, rgba(22,19,24,.82) 72%, rgba(22,19,24,.97) 100%) !important;
}
.industry-copy { z-index: 2; }
.industry-copy p { color: rgba(255,255,255,.96); }

/* Secondary hero links should read as real buttons too. */
.hero-actions .hero-text-link,
.sp-hero-actions .hero-text-link {
  min-height: 44px;
  padding: .72rem 1rem;
  border: 1px solid rgba(255,255,255,.62);
  border-radius: 9px;
  background: transparent;
}
.hero-actions .hero-text-link:hover,
.hero-actions .hero-text-link:focus,
.sp-hero-actions .hero-text-link:hover,
.sp-hero-actions .hero-text-link:focus {
  border-color: #fff;
  background: rgba(255,255,255,.05);
}

@media (max-width: 991.98px) {
  .pre-menu-contact-inner { flex-wrap: wrap; justify-content: center; padding-top: 5px; padding-bottom: 5px; }
  .pre-menu-left { width: 100%; justify-content: center; }
  .pre-menu-address { justify-content: center; font-size: .69rem; }
}
@media (max-width: 575.98px) {
  .pre-menu-address span { max-width: 82vw; overflow: hidden; text-overflow: ellipsis; }
}

/* Shared live form status states used by the site-wide email handler. */
.form-status.error,.sp-form-status.error,.st-form-status.error{color:#b42318}
.form-status.success,.sp-form-status.success,.st-form-status.success{color:#16824a}
