/* =========================================================
   SAW OFFICE LANDING PAGE CSS
   File: saw-office-landing.css
   Purpose: Shared CSS for SAW office landing pages
   Offices: Biloxi, Atlanta, Dallas, Houston, Miami
========================================================= */

:root {
  --saw-office-bg: #1A1A1A;
  --saw-office-bg-2: #101010;
  --saw-office-card: #262626;
  --saw-office-card-2: #454545;
  --saw-office-white: #FFFFFF;
  --saw-office-black: #111111;
  --saw-office-muted: rgba(255,255,255,.76);
  --saw-office-soft: rgba(255,255,255,.10);

  --saw-office-primary: #FF7A18;
  --saw-office-primary-dark: #D45500;
  --saw-office-primary-deep: #9F3E00;
  --saw-office-gray: #4C4C4C;

  --saw-office-gradient: linear-gradient(
    90deg,
    var(--saw-office-primary) 0%,
    var(--saw-office-primary-dark) 68%,
    var(--saw-office-primary-deep) 100%
  );

  --saw-office-angled-gradient: linear-gradient(
    135deg,
    var(--saw-office-primary) 0%,
    var(--saw-office-primary-dark) 55%,
    #7B7B7B 100%
  );

  --saw-office-max-width: 1180px;
}

/* Optional office-specific overrides */
.office-biloxi {
  --saw-office-primary: #FF7A18;
  --saw-office-primary-dark: #D45500;
  --saw-office-primary-deep: #9F3E00;
}

.office-atlanta {
  --saw-office-primary: #FF7A18;
  --saw-office-primary-dark: #D45500;
  --saw-office-primary-deep: #9F3E00;
}

.office-dallas {
  --saw-office-primary: #FF7A18;
  --saw-office-primary-dark: #D45500;
  --saw-office-primary-deep: #9F3E00;
}

.office-houston {
  --saw-office-primary: #FF7A18;
  --saw-office-primary-dark: #D45500;
  --saw-office-primary-deep: #9F3E00;
}

.office-miami {
  --saw-office-primary: #FF7A18;
  --saw-office-primary-dark: #D45500;
  --saw-office-primary-deep: #9F3E00;
}

/* =========================================================
   BASE SECTION WRAPPER
========================================================= */

#saw-bx-hero-v2,
.saw-office-landing {
  background: var(--saw-office-bg);
  color: var(--saw-office-white);
  overflow: hidden;
}

#saw-bx-hero-v2 *,
.saw-office-landing * {
  box-sizing: border-box;
}

#saw-bx-hero-v2 .saw-wrap,
.saw-office-landing .saw-wrap {
  max-width: var(--saw-office-max-width);
  margin: 0 auto;
  padding: 0 22px;
}

/* =========================================================
   HERO
========================================================= */

#saw-bx-hero-v2 .saw-hero,
.saw-office-landing .saw-hero {
  padding: 38px 0 24px;
  background:
    radial-gradient(circle at 10% 10%, color-mix(in srgb, var(--saw-office-primary) 18%, transparent), transparent 28%),
    radial-gradient(circle at 90% 20%, rgba(255,255,255,.08), transparent 22%),
    linear-gradient(135deg, #111111 0%, #1A1A1A 48%, #2B2B2B 100%);
  position: relative;
  overflow: hidden;
}

#saw-bx-hero-v2 .saw-hero::before,
.saw-office-landing .saw-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(circle at center, black 0%, transparent 78%);
  -webkit-mask-image: radial-gradient(circle at center, black 0%, transparent 78%);
  pointer-events: none;
}

#saw-bx-hero-v2 .saw-hero-grid,
.saw-office-landing .saw-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 22px;
  align-items: stretch;
  position: relative;
  z-index: 2;
}

#saw-bx-hero-v2 .saw-hero-main,
.saw-office-landing .saw-hero-main {
  border-radius: 22px;
  padding: clamp(24px, 4vw, 48px);
  min-height: 410px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    radial-gradient(circle at 15% 20%, color-mix(in srgb, var(--saw-office-primary) 18%, transparent), transparent 28%),
    linear-gradient(135deg, #141414 0%, #2A2A2A 58%, #1A1A1A 100%);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 30px 80px rgba(0,0,0,.42);
  position: relative;
  overflow: hidden;
}

#saw-bx-hero-v2 .saw-hero-main::after,
.saw-office-landing .saw-hero-main::after {
  content: var(--saw-office-name, "BILOXI");
  position: absolute;
  right: 18px;
  top: 14px;
  font-size: clamp(48px, 9vw, 110px);
  line-height: .8;
  letter-spacing: -.08em;
  font-weight: 1000;
  color: rgba(255,255,255,.05);
  pointer-events: none;
}

#saw-bx-hero-v2 .saw-eyebrow,
.saw-office-landing .saw-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--saw-office-primary) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--saw-office-primary) 35%, transparent);
  color: var(--saw-office-primary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

#saw-bx-hero-v2 .saw-hero-main h1,
.saw-office-landing .saw-hero-main h1 {
  margin: 0 0 14px;
  font-size: clamp(40px, 7vw, 78px);
  line-height: .92;
  letter-spacing: -.07em;
  font-weight: 1000;
  color: var(--saw-office-white);
  max-width: 820px;
}

#saw-bx-hero-v2 .saw-hero-main h1 .accent,
.saw-office-landing .saw-hero-main h1 .accent {
  color: var(--saw-office-primary);
  text-shadow: 0 0 24px color-mix(in srgb, var(--saw-office-primary) 18%, transparent);
}

#saw-bx-hero-v2 .saw-hero-main p,
.saw-office-landing .saw-hero-main p {
  margin: 0 0 22px;
  max-width: 760px;
  color: rgba(255,255,255,.80);
  font-size: 17px;
  line-height: 1.7;
}

#saw-bx-hero-v2 .saw-hero-actions,
.saw-office-landing .saw-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

#saw-bx-hero-v2 .saw-btn,
.saw-office-landing .saw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 15px 20px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 950;
  text-decoration: none;
  transition: .2s ease;
  border: 1px solid rgba(255,255,255,.12);
  white-space: nowrap;
}

#saw-bx-hero-v2 .saw-btn:hover,
.saw-office-landing .saw-btn:hover {
  transform: translateY(-2px);
}

#saw-bx-hero-v2 .saw-btn-primary,
.saw-office-landing .saw-btn-primary {
  background: var(--saw-office-gradient);
  color: var(--saw-office-white);
  box-shadow: 0 18px 40px rgba(0,0,0,.30);
}

#saw-bx-hero-v2 .saw-btn-secondary,
.saw-office-landing .saw-btn-secondary {
  background: rgba(255,255,255,.08);
  color: var(--saw-office-white);
}

#saw-bx-hero-v2 .saw-hero-side,
.saw-office-landing .saw-hero-side {
  border-radius: 22px;
  overflow: hidden;
  display: grid;
  grid-template-rows: 185px 1fr;
  background: #F6F6F6;
  color: var(--saw-office-black);
  box-shadow: 0 30px 80px rgba(0,0,0,.36);
  border: 1px solid rgba(255,255,255,.14);
}

#saw-bx-hero-v2 .saw-hero-side-top,
.saw-office-landing .saw-hero-side-top {
  background:
    radial-gradient(circle at 18% 20%, rgba(255,255,255,.20), transparent 24%),
    linear-gradient(135deg, var(--saw-office-primary) 0%, var(--saw-office-primary-dark) 52%, var(--saw-office-gray) 100%);
  position: relative;
  overflow: hidden;
}

#saw-bx-hero-v2 .saw-hero-side-top::after,
.saw-office-landing .saw-hero-side-top::after {
  content: "AI";
  position: absolute;
  left: 16px;
  bottom: -10px;
  font-size: 92px;
  line-height: .8;
  letter-spacing: -.08em;
  font-weight: 1000;
  color: rgba(255,255,255,.78);
}

#saw-bx-hero-v2 .saw-hero-side-bottom,
.saw-office-landing .saw-hero-side-bottom {
  padding: 24px;
}

#saw-bx-hero-v2 .saw-hero-side-bottom h2,
.saw-office-landing .saw-hero-side-bottom h2 {
  margin: 0 0 10px;
  font-size: 30px;
  line-height: 1.04;
  letter-spacing: -.04em;
  font-weight: 1000;
}

#saw-bx-hero-v2 .saw-hero-side-bottom p,
.saw-office-landing .saw-hero-side-bottom p {
  margin: 0 0 14px;
  color: rgba(17,17,17,.76);
  font-size: 15px;
  line-height: 1.58;
}

#saw-bx-hero-v2 .saw-side-link,
.saw-office-landing .saw-side-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--saw-office-black);
  font-size: 14px;
  font-weight: 950;
  text-decoration: none;
}

/* =========================================================
   AI EMPLOYEE SUBHEADER RAIL
========================================================= */

#saw-bx-hero-v2 .saw-subrail,
.saw-office-landing .saw-subrail {
  padding: 18px 0 42px;
  background: linear-gradient(180deg, #1A1A1A 0%, #202020 100%);
}

#saw-bx-hero-v2 .saw-post-slider,
.saw-office-landing .saw-post-slider {
  display: flex;
  margin: 0;
  padding: 0 1rem 1rem;
  position: relative;
}

#saw-bx-hero-v2 .saw-post-slider::after,
.saw-office-landing .saw-post-slider::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 3.4rem;
  width: 5px;
  border-radius: 5px;
  background: linear-gradient(180deg, var(--saw-office-primary) 0%, var(--saw-office-primary-dark) 65%, #8E8E8E 100%);
  box-shadow: -10px 0 20px 3px rgba(0,0,0,.55);
}

#saw-bx-hero-v2 .saw-slider-header,
.saw-office-landing .saw-slider-header {
  color: var(--saw-office-white);
  margin-top: 2rem;
  flex: 0 0 255px;
  margin-right: 1rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  transform: translateY(-10px);
  min-height: 285px;
}

#saw-bx-hero-v2 .saw-slider-header::before,
.saw-office-landing .saw-slider-header::before {
  --offset: 5px;
  content: "";
  position: absolute;
  top: calc(var(--offset) * -1);
  left: calc(var(--offset) * -1);
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  border-radius: 12px;
  background: var(--saw-office-angled-gradient);
  z-index: 1;
}

#saw-bx-hero-v2 .saw-slider-header::after,
.saw-office-landing .saw-slider-header::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  background: #000000;
  z-index: 2;
}

#saw-bx-hero-v2 .saw-slider-header > *,
.saw-office-landing .saw-slider-header > * {
  position: relative;
  z-index: 3;
}

#saw-bx-hero-v2 .saw-slider-header h2,
.saw-office-landing .saw-slider-header h2 {
  margin: 0 0 10px;
  font-size: 28px;
  line-height: 1.04;
  letter-spacing: -.04em;
  font-weight: 1000;
  color: var(--saw-office-white);
}

#saw-bx-hero-v2 .saw-slider-header p,
.saw-office-landing .saw-slider-header p {
  margin: 0;
  color: rgba(255,255,255,.76);
  font-size: 14px;
  line-height: 1.55;
}

#saw-bx-hero-v2 .saw-mini-card-grid,
.saw-office-landing .saw-mini-card-grid {
  display: flex;
  gap: 1rem;
  position: relative;
  padding: 3rem 0 2.8rem 2rem;
  margin: 0;
  overflow-x: scroll;
  -webkit-overflow-scrolling: touch;
  scrollbar-color: #666 #201c29;
  flex: 1;
}

#saw-bx-hero-v2 .saw-mini-card-grid::-webkit-scrollbar,
.saw-office-landing .saw-mini-card-grid::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

#saw-bx-hero-v2 .saw-mini-card-grid::-webkit-scrollbar-thumb,
.saw-office-landing .saw-mini-card-grid::-webkit-scrollbar-thumb {
  background: #555555;
  border-radius: 10px;
  box-shadow: inset 2px 2px 2px rgba(255,255,255,.25), inset -2px -2px 2px rgba(0,0,0,.25);
}

#saw-bx-hero-v2 .saw-mini-card-grid::-webkit-scrollbar-track,
.saw-office-landing .saw-mini-card-grid::-webkit-scrollbar-track {
  background: linear-gradient(to right, #434343, #434343 1px, #262626 1px, #262626);
}

#saw-bx-hero-v2 .saw-mini-card,
.saw-office-landing .saw-mini-card {
  padding: 1.15rem;
  border-radius: 18px;
  background: linear-gradient(85deg, #454545, #262626);
  color: var(--saw-office-white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: .2s ease;
  min-width: 300px;
  min-height: 380px;
  box-shadow: -2rem 0 3rem -2rem #000;
  border: 1px solid rgba(255,255,255,.08);
  text-decoration: none;
  overflow: hidden;
}

#saw-bx-hero-v2 .saw-mini-card:not(:first-child),
.saw-office-landing .saw-mini-card:not(:first-child) {
  margin-left: -130px;
  box-shadow: -3rem 0 3rem -2rem #000;
}

#saw-bx-hero-v2 .saw-mini-card:hover,
#saw-bx-hero-v2 .saw-mini-card:focus-within,
.saw-office-landing .saw-mini-card:hover,
.saw-office-landing .saw-mini-card:focus-within {
  transform: translate(0, -1rem) rotate(3deg);
}

#saw-bx-hero-v2 .saw-mini-card:hover ~ .saw-mini-card,
#saw-bx-hero-v2 .saw-mini-card:focus-within ~ .saw-mini-card,
.saw-office-landing .saw-mini-card:hover ~ .saw-mini-card,
.saw-office-landing .saw-mini-card:focus-within ~ .saw-mini-card {
  transform: translateX(130px);
}

#saw-bx-hero-v2 .saw-mini-card:first-child:hover,
.saw-office-landing .saw-mini-card:first-child:hover {
  transform: translate(-.5rem, -1rem) rotate(3deg);
}

#saw-bx-hero-v2 .saw-ai-image,
.saw-office-landing .saw-ai-image {
  width: 100%;
  height: 155px;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 14px;
  background: #1f1f1f;
  border: 1px solid rgba(255,255,255,.08);
}

#saw-bx-hero-v2 .saw-ai-image img,
.saw-office-landing .saw-ai-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

#saw-bx-hero-v2 .saw-card-kicker,
.saw-office-landing .saw-card-kicker {
  color: var(--saw-office-primary);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

#saw-bx-hero-v2 .saw-mini-card h3,
.saw-office-landing .saw-mini-card h3 {
  margin: 0 0 10px;
  color: var(--saw-office-white);
  font-size: 25px;
  line-height: 1.04;
  letter-spacing: -.04em;
  font-weight: 1000;
}

#saw-bx-hero-v2 .saw-mini-card p,
.saw-office-landing .saw-mini-card p {
  margin: 0;
  color: rgba(255,255,255,.76);
  font-size: 14px;
  line-height: 1.55;
}

#saw-bx-hero-v2 .saw-mini-card-footer,
.saw-office-landing .saw-mini-card-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  color: #FFB27D;
  font-size: 13px;
  font-weight: 900;
}

#saw-bx-hero-v2 .saw-mini-icon,
.saw-office-landing .saw-mini-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--saw-office-primary) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--saw-office-primary) 24%, transparent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--saw-office-primary);
  flex: 0 0 auto;
}

/* =========================================================
   FALLBACKS FOR BROWSERS WITHOUT color-mix SUPPORT
========================================================= */

@supports not (color: color-mix(in srgb, red 50%, transparent)) {
  #saw-bx-hero-v2 .saw-hero,
  .saw-office-landing .saw-hero {
    background:
      radial-gradient(circle at 10% 10%, rgba(255,122,24,.18), transparent 28%),
      radial-gradient(circle at 90% 20%, rgba(255,255,255,.08), transparent 22%),
      linear-gradient(135deg, #111111 0%, #1A1A1A 48%, #2B2B2B 100%);
  }

  #saw-bx-hero-v2 .saw-hero-main,
  .saw-office-landing .saw-hero-main {
    background:
      radial-gradient(circle at 15% 20%, rgba(255,122,24,.18), transparent 28%),
      linear-gradient(135deg, #141414 0%, #2A2A2A 58%, #1A1A1A 100%);
  }

  #saw-bx-hero-v2 .saw-eyebrow,
  .saw-office-landing .saw-eyebrow {
    background: rgba(255,122,24,.12);
    border-color: rgba(255,122,24,.35);
  }

  #saw-bx-hero-v2 .saw-mini-icon,
  .saw-office-landing .saw-mini-icon {
    background: rgba(255,122,24,.12);
    border-color: rgba(255,122,24,.24);
  }
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1050px) {
  #saw-bx-hero-v2 .saw-hero-grid,
  .saw-office-landing .saw-hero-grid {
    grid-template-columns: 1fr;
  }

  #saw-bx-hero-v2 .saw-post-slider,
  .saw-office-landing .saw-post-slider {
    overflow-x: auto;
    padding-left: 0;
  }

  #saw-bx-hero-v2 .saw-post-slider::after,
  .saw-office-landing .saw-post-slider::after {
    display: none;
  }

  #saw-bx-hero-v2 .saw-slider-header,
  .saw-office-landing .saw-slider-header {
    flex: 0 0 220px;
  }

  #saw-bx-hero-v2 .saw-mini-card,
  .saw-office-landing .saw-mini-card {
    min-width: 240px;
  }

  #saw-bx-hero-v2 .saw-mini-card:not(:first-child),
  .saw-office-landing .saw-mini-card:not(:first-child) {
    margin-left: -30px;
  }

  #saw-bx-hero-v2 .saw-mini-card:hover ~ .saw-mini-card,
  .saw-office-landing .saw-mini-card:hover ~ .saw-mini-card {
    transform: translateX(30px);
  }
}

@media (max-width: 720px) {
  #saw-bx-hero-v2 .saw-wrap,
  .saw-office-landing .saw-wrap {
    padding: 0 16px;
  }

  #saw-bx-hero-v2 .saw-hero,
  .saw-office-landing .saw-hero {
    padding: 26px 0 12px;
  }

  #saw-bx-hero-v2 .saw-hero-main,
  .saw-office-landing .saw-hero-main {
    min-height: 430px;
  }

  #saw-bx-hero-v2 .saw-btn,
  .saw-office-landing .saw-btn {
    width: 100%;
    white-space: normal;
  }

  #saw-bx-hero-v2 .saw-post-slider,
  .saw-office-landing .saw-post-slider {
    display: block;
  }

  #saw-bx-hero-v2 .saw-slider-header,
  .saw-office-landing .saw-slider-header {
    min-height: auto;
    margin: 0 0 14px;
  }

  #saw-bx-hero-v2 .saw-mini-card-grid,
  .saw-office-landing .saw-mini-card-grid {
    padding: 1.4rem 0 2rem;
  }

  #saw-bx-hero-v2 .saw-mini-card,
  .saw-office-landing .saw-mini-card {
    min-width: 215px;
  }

  #saw-bx-hero-v2 .saw-mini-card:not(:first-child),
  .saw-office-landing .saw-mini-card:not(:first-child) {
    margin-left: -10px;
  }

  #saw-bx-hero-v2 .saw-mini-card:hover ~ .saw-mini-card,
  .saw-office-landing .saw-mini-card:hover ~ .saw-mini-card {
    transform: translateX(10px);
  }
}
/* =========================================================
   SAW OFFICE HERO — ORANGE OVERRIDES
   Fixes green inheritance + Web Systems animation
========================================================= */

.office-biloxi {
  --saw-office-primary: #FF6600;
  --saw-office-primary-dark: #CC5200;
  --saw-office-primary-deep: #8F3900;
}

/* Header/logo safety */
.office-biloxi .main__logo img {
  max-height: 62px;
  width: auto;
}

/* Orange hero accent overrides */
.office-biloxi .banner__section .bn__currently,
.office-biloxi .banner__section .cmn--btn,
.office-biloxi .banner__section .video__80,
.office-biloxi .banner__section .common__icon {
  background: #FF6600 !important;
  border-color: #FF6600 !important;
}

.office-biloxi .banner__section .cmn--btn {
  color: #ffffff !important;
}

.office-biloxi .banner__section .bn__currently span,
.office-biloxi .banner__section .bn__currently i {
  color: #ffffff !important;
}

.office-biloxi .banner__section .hone {
  color: #ffffff !important;
}

.office-biloxi .banner__section .proces,
.office-biloxi .banner__section .scroll,
.office-biloxi .banner__section .banner__soci a:hover,
.office-biloxi .banner__section .left__infomobile a:hover {
  color: #FF6600 !important;
}

/* Video overlay orange correction */
.office-biloxi .saw-office-hero-original::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 102, 0, 0.24), transparent 32%),
    radial-gradient(circle at 78% 18%, rgba(255, 102, 0, 0.12), transparent 28%);
  pointer-events: none;
  z-index: 1;
}

/* Keep actual foreground above overlay */
.office-biloxi .saw-office-hero-original > div[style*="z-index:1"] {
  position: relative;
  z-index: 2 !important;
}

/* =========================================================
   FIX: Animated Web Systems Text
========================================================= */

.office-biloxi .banner__content .designers {
  position: relative;
  display: inline-block !important;
  color: #ffffff !important;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.88);
  text-shadow:
    0 0 18px rgba(255, 102, 0, 0.30),
    0 0 38px rgba(255, 102, 0, 0.18);
  line-height: 0.95;
  isolation: isolate;
}

/* Orange animated fill layer */
.office-biloxi .banner__content .designers::before {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  width: 0%;
  color: #FF6600;
  -webkit-text-stroke: 1px #FF6600;
  overflow: hidden;
  white-space: nowrap;
  z-index: 2;
  animation: saw-orange-text-fill 4.2s ease-in-out infinite alternate;
  text-shadow:
    0 0 18px rgba(255, 102, 0, 0.55),
    0 0 34px rgba(255, 102, 0, 0.35);
}

/* Subtle underline glow */
.office-biloxi .banner__content .designers::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #FF6600, rgba(255, 102, 0, 0));
  box-shadow: 0 0 22px rgba(255, 102, 0, 0.45);
  z-index: 1;
}

@keyframes saw-orange-text-fill {
  0% {
    width: 0%;
  }

  45% {
    width: 100%;
  }

  100% {
    width: 100%;
  }
}

/* Make second hero button orange outline instead of green/white conflict */
.office-biloxi .banner__section .cmn--btn:nth-of-type(2),
.office-biloxi .banner__content a[href*="AI-Employees"] {
  background: #ffffff !important;
  color: #1A1A1A !important;
  border: 2px solid #FF6600 !important;
}

.office-biloxi .banner__content a[href*="AI-Employees"] i {
  color: #FF6600 !important;
}

/* Mobile safety */
@media (max-width: 767px) {
  .office-biloxi .banner__content .designers {
    font-size: clamp(54px, 18vw, 90px);
  }

  .office-biloxi .main__logo img {
    max-height: 48px;
  }
}
/* =========================================================
   SAW BILOXI HERO CLEANUP — ORANGE VERSION
   Fixes haze, left PNG arrow, orange label box, and green nav CTA
========================================================= */

/* Force Biloxi office orange color system */
body.office-biloxi {
  --saw-office-primary: #FF6600;
  --saw-office-primary-dark: #CC5200;
  --saw-office-primary-deep: #8F3900;
}

/* =========================================================
   1. FIX GREEN "LET'S TALK" NAV BUTTON
========================================================= */

body.office-biloxi .header-section .menu__components .cmn--btn,
body.office-biloxi .header-section .menu__components a.cmn--btn,
body.office-biloxi .header-section .cmn--btn {
  background: #FF6600 !important;
  background-image: linear-gradient(90deg, #FF6600 0%, #CC5200 72%, #8F3900 100%) !important;
  color: #ffffff !important;
  border-color: #FF6600 !important;
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.28),
    0 0 22px rgba(255, 102, 0, 0.24) !important;
}

body.office-biloxi .header-section .menu__components .cmn--btn span,
body.office-biloxi .header-section .menu__components .cmn--btn i {
  color: #ffffff !important;
}

body.office-biloxi .header-section .menu__components .cmn--btn:hover {
  background: #ffffff !important;
  background-image: none !important;
  color: #1A1A1A !important;
  border-color: #FF6600 !important;
}

body.office-biloxi .header-section .menu__components .cmn--btn:hover span,
body.office-biloxi .header-section .menu__components .cmn--btn:hover i {
  color: #1A1A1A !important;
}

/* =========================================================
   2. REMOVE PNG ARROW BESIDE VIDEO BUTTON
========================================================= */

body.office-biloxi .banner__section .vid__arrow,
body.office-biloxi .banner__section img.vid__arrow {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}

/* Tighten video/play area now that arrow is removed */
body.office-biloxi .banner__section .video__area {
  gap: 14px !important;
  margin-top: 24px !important;
}

/* =========================================================
   3. FIX ORANGE HAZE ON "WEB SYSTEMS"
   Keeps animation cleaner, removes dirty glow.
========================================================= */

body.office-biloxi .banner__content .designers {
  position: relative !important;
  display: inline-block !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  -webkit-text-stroke: 0 !important;
  text-shadow: none !important;
  filter: none !important;
  line-height: 0.95 !important;
  isolation: isolate !important;
}

/* Clean orange animated fill layer */
body.office-biloxi .banner__content .designers::before {
  content: attr(data-text) !important;
  position: absolute !important;
  inset: 0 !important;
  width: 0%;
  overflow: hidden !important;
  white-space: nowrap !important;
  color: #FF6600 !important;
  -webkit-text-fill-color: #FF6600 !important;
  -webkit-text-stroke: 0 !important;
  text-shadow: none !important;
  filter: none !important;
  z-index: 2 !important;
  animation: saw-orange-clean-text-fill 4.8s ease-in-out infinite alternate !important;
}

/* Clean underline only — no haze */
body.office-biloxi .banner__content .designers::after {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  bottom: -9px !important;
  width: 100% !important;
  height: 3px !important;
  border-radius: 999px !important;
  background: #FF6600 !important;
  box-shadow: none !important;
  z-index: 1 !important;
}

@keyframes saw-orange-clean-text-fill {
  0% {
    width: 0%;
  }

  45% {
    width: 100%;
  }

  100% {
    width: 100%;
  }
}

/* Remove extra orange haze overlay if previously added */
body.office-biloxi .saw-office-hero-original::before {
  display: none !important;
  content: none !important;
}

/* =========================================================
   4. FIX STRANGE ORANGE BOX OVER HERO TEXT
   Makes the Biloxi label cleaner and less blocky.
========================================================= */

body.office-biloxi .banner__section .bn__currently {
  display: inline-flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  width: auto !important;
  max-width: 620px !important;
  padding: 12px 16px !important;
  border-radius: 14px !important;
  background: rgba(255, 102, 0, 0.88) !important;
  background-image: linear-gradient(90deg, rgba(255, 102, 0, 0.92), rgba(204, 82, 0, 0.88)) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.28),
    0 0 24px rgba(255, 102, 0, 0.16) !important;
  backdrop-filter: blur(6px) !important;
  -webkit-backdrop-filter: blur(6px) !important;
}

body.office-biloxi .banner__section .bn__currently span {
  color: #ffffff !important;
}

body.office-biloxi .banner__section .bn__currently .d-block {
  font-size: 13px !important;
  line-height: 1.2 !important;
  font-weight: 900 !important;
  letter-spacing: 0.02em !important;
  margin-bottom: 4px !important;
}

body.office-biloxi .banner__section .bn__currently .d-flex {
  gap: 10px !important;
  font-size: 15px !important;
  line-height: 1.35 !important;
  font-weight: 800 !important;
}

body.office-biloxi .banner__section .bn__currently i {
  color: #ffffff !important;
  font-size: 16px !important;
}

/* =========================================================
   5. ORANGE HERO BUTTON CONSISTENCY
========================================================= */

body.office-biloxi .banner__content .cmn--btn {
  background: #FF6600 !important;
  background-image: linear-gradient(90deg, #FF6600 0%, #CC5200 72%, #8F3900 100%) !important;
  color: #ffffff !important;
  border-color: #FF6600 !important;
}

body.office-biloxi .banner__content .cmn--btn span,
body.office-biloxi .banner__content .cmn--btn i {
  color: inherit !important;
}

/* White secondary AI button */
body.office-biloxi .banner__content a[href*="AI-Employees"] {
  background: #ffffff !important;
  background-image: none !important;
  color: #1A1A1A !important;
  border: 2px solid #FF6600 !important;
}

body.office-biloxi .banner__content a[href*="AI-Employees"] span {
  color: #1A1A1A !important;
}

body.office-biloxi .banner__content a[href*="AI-Employees"] i {
  color: #FF6600 !important;
}

/* Play button orange */
body.office-biloxi .banner__section .video__80 {
  background: #FF6600 !important;
  border-color: #FF6600 !important;
  box-shadow:
    0 0 0 8px rgba(255, 102, 0, 0.10),
    0 0 28px rgba(255, 102, 0, 0.30) !important;
}

body.office-biloxi .banner__section .video__80 i {
  color: #ffffff !important;
}

body.office-biloxi .banner__section .proces {
  color: #FF6600 !important;
}

/* =========================================================
   6. REMOVE GREEN REMNANTS IN HEADER MENU HOVER
========================================================= */

body.office-biloxi .main-menu > li:hover > a,
body.office-biloxi .main-menu > li:focus-within > a {
  color: #FF6600 !important;
  text-shadow: none !important;
}

body.office-biloxi .main-menu > li > a::after {
  background: #FF6600 !important;
  background-image: linear-gradient(90deg, #FF6600 0%, #CC5200 72%, #8F3900 100%) !important;
}

body.office-biloxi .main-menu > li.has-dropdown > a .dropdown-caret {
  color: #FF6600 !important;
}

/* Mobile safety */
@media (max-width: 767px) {
  body.office-biloxi .banner__section .bn__currently {
    max-width: 100% !important;
    padding: 10px 12px !important;
  }

  body.office-biloxi .banner__section .bn__currently .d-flex {
    font-size: 13px !important;
  }

  body.office-biloxi .banner__content .designers::after {
    bottom: -5px !important;
  }
}
/* =========================================================
   HERO TOP LABEL — REMOVE BOX, MAKE TEXT ORANGE
========================================================= */

body.office-biloxi .banner__section .bn__currently {
  display: inline-flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  width: auto !important;
  max-width: 760px !important;
  padding: 0 !important;
  margin-bottom: 24px !important;
  background: transparent !important;
  background-image: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

body.office-biloxi .banner__section .bn__currently span,
body.office-biloxi .banner__section .bn__currently i {
  color: #FF6600 !important;
}

body.office-biloxi .banner__section .bn__currently .d-block {
  font-size: 14px !important;
  line-height: 1.2 !important;
  font-weight: 950 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  margin-bottom: 7px !important;
}

body.office-biloxi .banner__section .bn__currently .d-flex {
  gap: 10px !important;
  font-size: 17px !important;
  line-height: 1.35 !important;
  font-weight: 850 !important;
}

body.office-biloxi .banner__section .bn__currently:hover span,
body.office-biloxi .banner__section .bn__currently:hover i {
  color: #ffffff !important;
}
/* =========================================================
   SAW OFFICE LANDING — POST-HERO SECTIONS
   Sections: Recognized As, Portfolio, Number One,
   Product Summary, Website Protection, Awards Marquee
========================================================= */

body.office-biloxi {
  --saw-office-primary: #FF6600;
  --saw-office-primary-dark: #CC5200;
  --saw-office-primary-deep: #8F3900;
  --saw-office-section-bg: #202020;
  --saw-office-section-bg-2: #2a2a2a;
  --saw-office-panel: #303030;
  --saw-office-panel-dark: #161616;
  --saw-office-text: #ffffff;
  --saw-office-muted-text: rgba(255,255,255,.72);
}

/* Shared page sections */
.saw-office-block {
  position: relative;
  overflow: hidden;
  background: var(--saw-office-section-bg);
  color: var(--saw-office-text);
  padding: 78px 0;
}

.saw-office-block:nth-of-type(even) {
  background: #1A1A1A;
}

.saw-office-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 12%, rgba(255,102,0,.12), transparent 30%),
    radial-gradient(circle at 88% 18%, rgba(255,255,255,.05), transparent 28%);
  pointer-events: none;
}

.saw-office-inner {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 22px;
}

.saw-section-heading {
  margin: 0 0 26px;
  font-size: clamp(58px, 11vw, 132px);
  line-height: .78;
  letter-spacing: -.085em;
  font-weight: 1000;
  color: #ffffff;
}

.saw-section-heading span {
  color: var(--saw-office-primary);
}

.saw-section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  color: var(--saw-office-primary);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.saw-section-copy {
  max-width: 780px;
  color: var(--saw-office-muted-text);
  font-size: 17px;
  line-height: 1.7;
  margin: 0 0 26px;
}

/* Recognized cards */
.saw-recognition-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.saw-recognition-card {
  min-height: 220px;
  padding: 24px;
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.025)),
    #242424;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 22px 50px rgba(0,0,0,.28);
}

.saw-recognition-card i {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(255,102,0,.12);
  border: 1px solid rgba(255,102,0,.32);
  color: var(--saw-office-primary);
  font-size: 25px;
  margin-bottom: 18px;
}

.saw-recognition-card h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 22px;
  line-height: 1.08;
  font-weight: 1000;
  letter-spacing: -.04em;
}

.saw-recognition-card p {
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 14.5px;
  line-height: 1.55;
}

/* Portfolio rows */
.saw-portfolio-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 34px;
  align-items: start;
}

.saw-portfolio-list {
  display: grid;
  gap: 24px;
}

.saw-portfolio-row {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  background: #f6f6f6;
  color: #111;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0,0,0,.36);
  transition: .2s ease;
}

.saw-portfolio-row:hover {
  transform: translateY(-4px);
  box-shadow: 0 34px 90px rgba(0,0,0,.46);
}

.saw-portfolio-art {
  min-height: 220px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 20%, rgba(255,255,255,.22), transparent 24%),
    linear-gradient(135deg, #FF6600 0%, #CC5200 45%, #4C4C4C 100%);
}

.saw-portfolio-art::after {
  content: attr(data-label);
  position: absolute;
  left: 16px;
  bottom: -8px;
  font-size: 68px;
  line-height: .82;
  font-weight: 1000;
  letter-spacing: -.085em;
  color: rgba(255,255,255,.74);
}

.saw-portfolio-copy {
  padding: 28px;
}

.saw-portfolio-copy .tag {
  color: var(--saw-office-primary);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.saw-portfolio-copy h3 {
  margin: 0 0 10px;
  font-size: 30px;
  line-height: 1.04;
  letter-spacing: -.045em;
  font-weight: 1000;
}

.saw-portfolio-copy p {
  color: rgba(17,17,17,.76);
  margin: 0 0 15px;
  line-height: 1.6;
}

.saw-office-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #111;
  font-size: 13px;
  font-weight: 950;
  text-decoration: none;
}

.saw-office-sidebar {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 14px;
}

.saw-sidebar-card {
  padding: 18px;
  border-radius: 14px;
  background: linear-gradient(85deg, #444, #262626);
  border: 1px solid rgba(255,255,255,.10);
  color: #fff;
  box-shadow: 0 18px 44px rgba(0,0,0,.30);
}

.saw-sidebar-card strong {
  display: block;
  color: var(--saw-office-primary);
  margin-bottom: 8px;
  font-size: 14px;
}

.saw-sidebar-card span {
  display: block;
  color: rgba(255,255,255,.72);
  font-size: 13px;
  line-height: 1.48;
}

/* Number One */
.saw-number-panel {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 26px;
  align-items: stretch;
  padding: 28px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,102,0,.18), transparent 30%),
    linear-gradient(145deg, #2b2b2b, #111);
  border: 1px solid rgba(255,255,255,.11);
  box-shadow: 0 32px 90px rgba(0,0,0,.42);
}

.saw-number-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  border-radius: 22px;
  background: #000;
  border: 1px solid rgba(255,102,0,.34);
  position: relative;
  overflow: hidden;
}

.saw-number-badge::after {
  content: "#1";
  font-size: clamp(120px, 18vw, 240px);
  line-height: .8;
  font-weight: 1000;
  letter-spacing: -.12em;
  color: var(--saw-office-primary);
}

.saw-number-content h3 {
  margin: 0 0 12px;
  font-size: clamp(38px, 6vw, 72px);
  line-height: .9;
  letter-spacing: -.07em;
  font-weight: 1000;
}

.saw-number-content p {
  color: rgba(255,255,255,.76);
  line-height: 1.7;
  margin: 0 0 18px;
}

.saw-stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.saw-stat {
  padding: 16px;
  border-radius: 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
}

.saw-stat strong {
  display: block;
  color: var(--saw-office-primary);
  font-size: 28px;
  line-height: 1;
  margin-bottom: 7px;
}

.saw-stat span {
  color: rgba(255,255,255,.72);
  font-size: 13px;
  line-height: 1.35;
}

/* Product summary */
.saw-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.saw-product-card {
  padding: 24px;
  border-radius: 22px;
  background: linear-gradient(145deg, #343434, #1d1d1d);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 22px 52px rgba(0,0,0,.30);
}

.saw-product-card.featured {
  border-color: rgba(255,102,0,.42);
  background:
    radial-gradient(circle at top right, rgba(255,102,0,.18), transparent 34%),
    linear-gradient(145deg, #393939, #1d1d1d);
}

.saw-product-card i {
  color: var(--saw-office-primary);
  font-size: 28px;
  margin-bottom: 14px;
}

.saw-product-card h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 23px;
  line-height: 1.08;
  letter-spacing: -.04em;
  font-weight: 1000;
}

.saw-product-price {
  color: var(--saw-office-primary);
  font-size: 24px;
  font-weight: 1000;
  margin-bottom: 10px;
}

.saw-product-card p {
  color: rgba(255,255,255,.72);
  font-size: 14.5px;
  line-height: 1.55;
  margin: 0 0 16px;
}

.saw-product-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 950;
  font-size: 13px;
  text-decoration: none;
}

/* Protection panel */
.saw-protection-panel {
  padding: 32px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 12% 12%, rgba(255,102,0,.20), transparent 34%),
    linear-gradient(145deg, #2f2f2f, #111);
  border: 1px solid rgba(255,102,0,.36);
  box-shadow: 0 34px 90px rgba(0,0,0,.44);
}

.saw-protection-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-end;
  margin-bottom: 24px;
}

.saw-protection-top h3 {
  margin: 0 0 10px;
  font-size: clamp(36px, 6vw, 72px);
  line-height: .9;
  letter-spacing: -.07em;
  font-weight: 1000;
}

.saw-price-badge {
  min-width: 220px;
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(90deg, #FF6600, #CC5200);
  color: #fff;
  box-shadow: 0 18px 40px rgba(0,0,0,.32);
}

.saw-price-badge small {
  display: block;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.saw-price-badge strong {
  display: block;
  font-size: 34px;
  line-height: 1;
}

.saw-protection-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.saw-protection-card {
  padding: 20px;
  border-radius: 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
}

.saw-protection-card i {
  color: var(--saw-office-primary);
  font-size: 24px;
  margin-bottom: 12px;
}

.saw-protection-card h4 {
  color: #fff;
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 1000;
}

.saw-protection-card p {
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 14px;
  line-height: 1.5;
}

/* Awards marquee */
.saw-awards-marquee {
  overflow: hidden;
  background: #111;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 24px 0;
}

.saw-awards-track {
  display: flex;
  gap: 34px;
  width: max-content;
  animation: saw-awards-scroll 34s linear infinite;
}

.saw-awards-track span {
  color: rgba(255,255,255,.84);
  font-size: clamp(28px, 5vw, 62px);
  line-height: 1;
  font-weight: 1000;
  letter-spacing: -.06em;
  white-space: nowrap;
}

.saw-awards-track strong {
  color: var(--saw-office-primary);
}

@keyframes saw-awards-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 1050px) {
  .saw-recognition-grid,
  .saw-product-grid,
  .saw-protection-cards,
  .saw-stat-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .saw-portfolio-layout,
  .saw-number-panel {
    grid-template-columns: 1fr;
  }

  .saw-office-sidebar {
    position: static;
  }
}

@media (max-width: 700px) {
  .saw-office-block {
    padding: 54px 0;
  }

  .saw-recognition-grid,
  .saw-product-grid,
  .saw-protection-cards,
  .saw-stat-row {
    grid-template-columns: 1fr;
  }

  .saw-portfolio-row {
    grid-template-columns: 1fr;
  }

  .saw-portfolio-art {
    min-height: 150px;
  }

  .saw-protection-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .saw-price-badge {
    width: 100%;
  }
}
/* =========================================================
   FIX: RECOGNIZED AS + PORTFOLIO CLEAN ORANGE OVERRIDES
   Screenshot correction pass
========================================================= */

body.office-biloxi {
  --saw-orange: #FF6600;
  --saw-orange-dark: #CC5200;
}

/* =========================================================
   GLOBAL SECTION GREEN CLEANUP
========================================================= */

body.office-biloxi #recognized-as *,
body.office-biloxi #prot * {
  text-shadow: none !important;
  filter: none !important;
}

body.office-biloxi #recognized-as .common__sub,
body.office-biloxi #recognized-as .base,
body.office-biloxi #recognized-as .saw-orange-text,
body.office-biloxi #recognized-as strong,
body.office-biloxi #recognized-as b,
body.office-biloxi #recognized-as i,
body.office-biloxi #recognized-as font,
body.office-biloxi #prot .common__sub,
body.office-biloxi #prot .base,
body.office-biloxi #prot .left__cont span,
body.office-biloxi #prot font {
  color: #FF6600 !important;
}

/* Remove any inherited green/yellow from headings */
body.office-biloxi #recognized-as h1,
body.office-biloxi #recognized-as h2,
body.office-biloxi #recognized-as h3,
body.office-biloxi #recognized-as h4,
body.office-biloxi #prot h1,
body.office-biloxi #prot h2,
body.office-biloxi #prot h3,
body.office-biloxi #prot h4 {
  text-shadow: none !important;
}

/* =========================================================
   RECOGNIZED AS SECTION STRUCTURE
========================================================= */

body.office-biloxi #recognized-as {
  background: #1A1A1A !important;
  padding-top: 110px !important;
  padding-bottom: 110px !important;
}

/* Social proof row */
body.office-biloxi #recognized-as .social-proof-widget {
  margin-bottom: 48px !important;
}

body.office-biloxi #recognized-as .social-proof-face {
  border-color: #FF6600 !important;
}

body.office-biloxi #recognized-as .social-proof-stars {
  background: #FF6600 !important;
  color: #ffffff !important;
  box-shadow: none !important;
}

/* Eyebrow */
body.office-biloxi #recognized-as .common__sub {
  color: #FF6600 !important;
  font-weight: 900 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  margin-bottom: 18px !important;
}

/* Main Recognized heading */
body.office-biloxi #recognized-as .project__head h2 {
  color: #ffffff !important;
  max-width: 920px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  line-height: 1.08 !important;
  letter-spacing: -0.035em !important;
}

body.office-biloxi #recognized-as .project__head h2 strong {
  color: #FF6600 !important;
  font-weight: 950 !important;
}

/* Main paragraph */
body.office-biloxi #recognized-as .project__head p {
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 17px !important;
  line-height: 1.72 !important;
  max-width: 980px !important;
  margin-top: 20px !important;
}

/* Award image sizing and placement */
body.office-biloxi #recognized-as .saw-award-image {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  padding: 10px !important;
}

body.office-biloxi #recognized-as .saw-award-image img {
  max-width: 92% !important;
  height: auto !important;
  opacity: 0.92 !important;
  filter: none !important;
}

/* Award copy card */
body.office-biloxi #recognized-as .saw-award-content {
  background: rgba(255, 255, 255, 0.035) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 22px !important;
  padding: 30px !important;
}

body.office-biloxi #recognized-as .saw-award-h3 {
  color: #ffffff !important;
  font-size: clamp(28px, 3.8vw, 46px) !important;
  line-height: 1.04 !important;
  letter-spacing: -0.04em !important;
  font-weight: 950 !important;
  margin-bottom: 18px !important;
}

body.office-biloxi #recognized-as .saw-award-h3 .saw-orange-text,
body.office-biloxi #recognized-as .saw-award-h3 b {
  color: #FF6600 !important;
}

body.office-biloxi #recognized-as .saw-award-p {
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 16.5px !important;
  line-height: 1.7 !important;
  margin-bottom: 16px !important;
}

/* Recognized button */
body.office-biloxi #recognized-as .cmn--btn {
  background: #FF6600 !important;
  background-image: linear-gradient(90deg, #FF6600 0%, #CC5200 100%) !important;
  color: #ffffff !important;
  border-color: #FF6600 !important;
  box-shadow: none !important;
}

body.office-biloxi #recognized-as .cmn--btn span,
body.office-biloxi #recognized-as .cmn--btn i {
  color: #ffffff !important;
}

/* =========================================================
   PORTFOLIO SECTION CLEANUP
========================================================= */

body.office-biloxi #prot {
  background: #111111 !important;
  padding-top: 110px !important;
  padding-bottom: 110px !important;
}

body.office-biloxi #prot .project__head {
  margin-bottom: 58px !important;
}

body.office-biloxi #prot .project__head .common__sub {
  color: #FF6600 !important;
  font-weight: 900 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
}

body.office-biloxi #prot .project__head h2 {
  color: #ffffff !important;
  max-width: 820px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  line-height: 1.05 !important;
  letter-spacing: -0.035em !important;
}

/* Portfolio image visibility */
body.office-biloxi #prot .project__item .thumb {
  background: #222 !important;
  border-radius: 10px !important;
  overflow: hidden !important;
}

body.office-biloxi #prot .project__item .thumb img {
  opacity: 0.92 !important;
  filter: none !important;
  transition: transform 0.25s ease, opacity 0.25s ease !important;
}

body.office-biloxi #prot .project__item:hover .thumb img {
  opacity: 1 !important;
  transform: scale(1.015) !important;
}

/* Portfolio category labels */
body.office-biloxi #prot .project__item .base,
body.office-biloxi #prot .project__item .left__cont span {
  color: #FF6600 !important;
  font-weight: 900 !important;
  letter-spacing: 0.10em !important;
}

/* Portfolio titles */
body.office-biloxi #prot .project__item h3 {
  color: #ffffff !important;
}

/* Portfolio arrow icon buttons */
body.office-biloxi #prot .common__icon {
  background: #FF6600 !important;
  background-image: none !important;
  border-color: #FF6600 !important;
  color: #ffffff !important;
  box-shadow: none !important;
}

body.office-biloxi #prot .common__icon i {
  color: #ffffff !important;
}

/* Portfolio spacing correction */
body.office-biloxi #prot .project__item {
  margin-bottom: 52px !important;
}

body.office-biloxi #prot .project__item .content {
  padding-top: 0 !important;
}

/* =========================================================
   MOBILE CLEANUP
========================================================= */

@media (max-width: 991px) {
  body.office-biloxi #recognized-as .saw-award-content {
    margin-top: 24px !important;
  }

  body.office-biloxi #recognized-as .saw-award-image img {
    max-width: 78% !important;
  }
}

@media (max-width: 575px) {
  body.office-biloxi #recognized-as,
  body.office-biloxi #prot {
    padding-top: 72px !important;
    padding-bottom: 72px !important;
  }

  body.office-biloxi #recognized-as .project__head h2,
  body.office-biloxi #prot .project__head h2 {
    font-size: 34px !important;
  }

  body.office-biloxi #recognized-as .project__head p {
    font-size: 15px !important;
  }

  body.office-biloxi #recognized-as .saw-award-content {
    padding: 22px !important;
  }

  body.office-biloxi #recognized-as .saw-award-image img {
    max-width: 95% !important;
  }
}
/* =========================================================
   SAW PRODUCT SUMMARY — PREMIUM ORANGE REDESIGN
   Fixes unreadable text, green remnants, haze, and card contrast.
   Scope: #prices only
========================================================= */

body.office-biloxi {
  --saw-orange: #FF6600;
  --saw-orange-dark: #CC5200;
  --saw-orange-soft: rgba(255, 102, 0, 0.12);
  --saw-orange-border: rgba(255, 102, 0, 0.35);
  --saw-dark: #111111;
  --saw-card: #202020;
  --saw-card-2: #2A2A2A;
  --saw-white: #FFFFFF;
  --saw-muted: rgba(255, 255, 255, 0.74);
}

/* Kill inherited haze/glow */
body.office-biloxi #prices,
body.office-biloxi #prices *,
body.office-biloxi .pricing__section,
body.office-biloxi .pricing__section *,
body.office-biloxi .saw-complete-system-addon,
body.office-biloxi .saw-complete-system-addon * {
  text-shadow: none !important;
  filter: none !important;
}

/* Section background */
body.office-biloxi #prices.pricing__section,
body.office-biloxi .pricing__section#prices {
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 102, 0, 0.08), transparent 28%),
    linear-gradient(180deg, #111111 0%, #1A1A1A 42%, #101010 100%) !important;
  padding-top: 120px !important;
  padding-bottom: 120px !important;
}

/* Section heading */
body.office-biloxi #prices .project__head {
  margin-bottom: 58px !important;
}

body.office-biloxi #prices .project__head .common__sub {
  color: var(--saw-orange) !important;
  font-weight: 950 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
}

body.office-biloxi #prices .project__head h2 {
  color: #ffffff !important;
  line-height: 1.05 !important;
  letter-spacing: -0.04em !important;
}

body.office-biloxi #prices .project__head h2 font,
body.office-biloxi #prices .project__head h2 strong,
body.office-biloxi #prices .project__head h2 span font {
  color: var(--saw-orange) !important;
}

/* =========================================================
   PRICING CARDS
========================================================= */

body.office-biloxi #prices .price__item,
body.office-biloxi #prices .process__item.price__item {
  position: relative !important;
  height: 100% !important;
  padding: 28px !important;
  border-radius: 26px !important;
  overflow: hidden !important;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.055), rgba(255,255,255,0.025)),
    #202020 !important;
  border: 1px solid rgba(255,255,255,0.10) !important;
  box-shadow: 0 28px 70px rgba(0,0,0,0.34) !important;
  color: #ffffff !important;
}

/* Top orange card rule */
body.office-biloxi #prices .price__item::before {
  content: "" !important;
  position: absolute !important;
  left: 24px !important;
  right: 24px !important;
  top: 0 !important;
  height: 4px !important;
  border-radius: 0 0 999px 999px !important;
  background: #FF6600 !important;
  pointer-events: none !important;
}

/* Featured/active card should NOT become unreadable */
body.office-biloxi #prices .price__item.pri__active {
  background:
    radial-gradient(circle at top right, rgba(255,102,0,0.16), transparent 34%),
    linear-gradient(145deg, #2A2A2A, #171717) !important;
  border: 1px solid rgba(255,102,0,0.42) !important;
  color: #ffffff !important;
}

/* Images */
body.office-biloxi #prices .price__media {
  background: #ffffff !important;
  border-radius: 18px !important;
  overflow: visible !important;
  margin-bottom: 24px !important;
  box-shadow: 0 16px 38px rgba(0,0,0,0.28) !important;
}

body.office-biloxi #prices .price__media img {
  border-radius: 16px !important;
  filter: none !important;
  opacity: 1 !important;
}

/* Icon bubbles */
body.office-biloxi #prices .pri__iconbox {
  background: #FF6600 !important;
  border: 3px solid #ffffff !important;
  border-radius: 18px !important;
  box-shadow: 0 12px 28px rgba(0,0,0,0.28) !important;
}

body.office-biloxi #prices .pri__iconbox i {
  color: #ffffff !important;
}

/* Titles */
body.office-biloxi #prices .price__item h4,
body.office-biloxi #prices .price__item .white,
body.office-biloxi #prices .price__item .mtitle {
  color: #ffffff !important;
  font-weight: 950 !important;
  line-height: 1.1 !important;
}

/* Price */
body.office-biloxi #prices .big__title,
body.office-biloxi #prices .price__item .big__title,
body.office-biloxi #prices .pri__active .big__title {
  color: #FF6600 !important;
  font-weight: 950 !important;
}

body.office-biloxi #prices .big__title span,
body.office-biloxi #prices .pri__active .big__title span {
  color: rgba(255,255,255,0.72) !important;
  font-weight: 700 !important;
}

/* Payment option boxes */
body.office-biloxi #prices .price__item > div[style*="Payment"],
body.office-biloxi #prices .price__item div[style*="border-radius: 14px"],
body.office-biloxi #prices .price__item div[style*="border-radius:14px"] {
  background: rgba(255,102,0,0.10) !important;
  border: 1px solid rgba(255,102,0,0.35) !important;
  color: #ffffff !important;
  box-shadow: none !important;
}

body.office-biloxi #prices .price__item div[style*="border-radius: 14px"] span,
body.office-biloxi #prices .price__item div[style*="border-radius:14px"] span {
  color: #FF6600 !important;
}

/* Lists */
body.office-biloxi #prices .pri__list {
  color: rgba(255,255,255,0.76) !important;
}

body.office-biloxi #prices .pri__list li {
  color: rgba(255,255,255,0.76) !important;
  line-height: 1.55 !important;
}

body.office-biloxi #prices .pri__list li strong {
  color: #ffffff !important;
}

body.office-biloxi #prices .pri__list li span,
body.office-biloxi #prices .pri__list li font,
body.office-biloxi #prices .pri__list li b,
body.office-biloxi #prices .pri__list li i {
  color: #FF6600 !important;
}

/* Buttons */
body.office-biloxi #prices .cmn--btn,
body.office-biloxi #prices button.cmn--btn {
  background: #FF6600 !important;
  background-image: linear-gradient(90deg, #FF6600 0%, #CC5200 100%) !important;
  color: #ffffff !important;
  border: 1px solid #FF6600 !important;
  box-shadow: none !important;
}

body.office-biloxi #prices .cmn--btn span,
body.office-biloxi #prices .cmn--btn i {
  color: #ffffff !important;
}

body.office-biloxi #prices .cmn--btn:hover,
body.office-biloxi #prices button.cmn--btn:hover {
  background: #ffffff !important;
  background-image: none !important;
  color: #1A1A1A !important;
}

body.office-biloxi #prices .cmn--btn:hover span,
body.office-biloxi #prices .cmn--btn:hover i {
  color: #1A1A1A !important;
}

/* =========================================================
   AI AUTOMATION CARD INTERNAL PANELS
========================================================= */

body.office-biloxi #prices .price__item div[style*="background:#1A1A1A"],
body.office-biloxi #prices .price__item div[style*="background: #1A1A1A"] {
  background: #151515 !important;
  border-color: rgba(255,255,255,0.12) !important;
}

body.office-biloxi #prices .price__item div[style*="font-weight:900"],
body.office-biloxi #prices .price__item div[style*="font-weight: 900"] {
  color: #ffffff !important;
}

body.office-biloxi #prices .price__item div[style*="color:#c9f31d"],
body.office-biloxi #prices .price__item div[style*="color: #c9f31d"],
body.office-biloxi #prices .price__item div[style*="color:#C9F31D"],
body.office-biloxi #prices .price__item div[style*="color: #C9F31D"],
body.office-biloxi #prices .price__item i[style*="color:#c9f31d"],
body.office-biloxi #prices .price__item i[style*="color: #c9f31d"],
body.office-biloxi #prices .price__item i[style*="color:#C9F31D"],
body.office-biloxi #prices .price__item i[style*="color: #C9F31D"] {
  color: #FF6600 !important;
}

/* Collapse plan panels */
body.office-biloxi #leadsparkPlansCollapse div {
  text-shadow: none !important;
  filter: none !important;
}

body.office-biloxi #leadsparkPlansCollapse div[style*="border:1px solid rgba(201,243,29"],
body.office-biloxi #leadsparkPlansCollapse div[style*="border: 1px solid rgba(201,243,29"] {
  border-color: rgba(255,102,0,0.35) !important;
}

/* =========================================================
   CYBERGUARD ADD-ON — PREMIUM ORANGE PANEL
========================================================= */

body.office-biloxi .saw-complete-system-addon {
  background:
    radial-gradient(circle at 10% 10%, rgba(255,102,0,0.14), transparent 34%),
    radial-gradient(circle at 92% 8%, rgba(204,82,0,0.10), transparent 34%),
    linear-gradient(145deg, #181818 0%, #080808 68%, #15110f 100%) !important;
  border: 1px solid rgba(255,102,0,0.38) !important;
  box-shadow: 0 34px 90px rgba(0,0,0,0.46) !important;
}

/* Convert all green inline elements in CyberGuard */
body.office-biloxi .saw-complete-system-addon [style*="#C9F31D"],
body.office-biloxi .saw-complete-system-addon [style*="#c9f31d"],
body.office-biloxi .saw-complete-system-addon [style*="201, 243, 29"],
body.office-biloxi .saw-complete-system-addon [style*="61, 165, 0"],
body.office-biloxi .saw-complete-system-addon [style*="89, 134, 0"] {
  color: #FF6600 !important;
  border-color: rgba(255,102,0,0.35) !important;
  box-shadow: none !important;
}

/* Green background/gradient replacements */
body.office-biloxi .saw-complete-system-addon [style*="background: #C9F31D"],
body.office-biloxi .saw-complete-system-addon [style*="background:#C9F31D"],
body.office-biloxi .saw-complete-system-addon [style*="linear-gradient"] {
  background: #FF6600 !important;
  background-image: linear-gradient(90deg, #FF6600 0%, #CC5200 100%) !important;
  color: #ffffff !important;
  box-shadow: none !important;
}

/* Do not let every internal div turn orange */
body.office-biloxi .saw-complete-system-addon h3,
body.office-biloxi .saw-complete-system-addon h4 {
  color: #ffffff !important;
}

body.office-biloxi .saw-complete-system-addon p {
  color: rgba(255,255,255,0.76) !important;
}

/* CyberGuard feature cards */
body.office-biloxi .saw-complete-system-addon div[style*="linear-gradient(145deg, rgba(255,255,255"] {
  background:
    linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.035)) !important;
  border-color: rgba(255,255,255,0.12) !important;
}

/* Top orange bar */
body.office-biloxi .saw-complete-system-addon > div[aria-hidden="true"]:first-child {
  background: linear-gradient(
    90deg,
    rgba(255,102,0,0) 0%,
    rgba(255,102,0,1) 18%,
    rgba(204,82,0,1) 76%,
    rgba(255,102,0,0) 100%
  ) !important;
  box-shadow: none !important;
}

/* Dotted pattern */
body.office-biloxi .saw-complete-system-addon > div[aria-hidden="true"]:nth-child(2) {
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,102,0,0.35) 1px, transparent 0) !important;
}

/* Price badge */
body.office-biloxi .saw-complete-system-addon div[style*="min-width: 220px"] {
  background: #FF6600 !important;
  background-image: linear-gradient(90deg, #FF6600 0%, #CC5200 100%) !important;
  color: #ffffff !important;
}

body.office-biloxi .saw-complete-system-addon div[style*="min-width: 220px"] * {
  color: #ffffff !important;
}

/* Protect button */
body.office-biloxi .saw-complete-system-addon a[href*="cyberguard"] {
  background: #FF6600 !important;
  background-image: linear-gradient(90deg, #FF6600 0%, #CC5200 100%) !important;
  color: #ffffff !important;
  box-shadow: none !important;
}

body.office-biloxi .saw-complete-system-addon a[href*="cyberguard"] * {
  color: #ffffff !important;
}

/* =========================================================
   MOBILE SAFETY
========================================================= */

@media (max-width: 991px) {
  body.office-biloxi #prices .price__item {
    padding: 24px 20px !important;
  }

  body.office-biloxi .saw-complete-system-addon [style*="grid-template-columns: repeat(3"] {
    grid-template-columns: 1fr !important;
  }
}
<style>
  html, body {
    overflow-x: clip;
  }

  #promo-499,
  #promo-499 * {
    text-shadow: none !important;
    filter: none !important;
  }

  #promo-499 {
    background: #fff !important;
    color: #111 !important;
  }

  #promo-499 .saw-wide-media {
    width: 100%;
    padding-left: 50px;
    padding-right: 50px;
  }

  #promo-499 .saw-wide-media img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
    box-shadow: 0 28px 70px rgba(0,0,0,.35);
  }

  #promo-499 .saw-preview-caption {
    margin: 14px auto 0;
    max-width: 980px;
    text-align: center;
    color: #1A1A1A;
    line-height: 1.65;
    font-style: italic;
    font-size: 1rem;
  }

  #promo-499 .saw-eyebrow {
    display: inline-block;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-size: .78rem;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 102, 0, .12);
    border: 1px solid rgba(255, 102, 0, .38);
    color: #1A1A1A;
  }

  #promo-499 .saw-title {
    max-width: 1040px;
    margin: 16px auto 14px;
    font-weight: 950;
    letter-spacing: -.04em;
    line-height: 1.05;
    color: #111;
    font-size: clamp(34px, 5vw, 68px);
  }

  #promo-499 .saw-copy {
    font-size: 1.08rem;
    line-height: 1.78;
    color: rgba(17,17,17,.86);
    max-width: 980px;
    margin: 0 auto 14px auto;
  }

  #promo-499 .saw-build-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 34px;
  }

  #promo-499 .saw-build-card {
    position: relative;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,.09);
    border-radius: 24px;
    padding: 26px;
    box-shadow: 0 18px 50px rgba(0,0,0,.08);
    overflow: hidden;
  }

  #promo-499 .saw-build-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 5px;
    background: linear-gradient(90deg, #FF6600 0%, #CC5200 100%);
  }

  #promo-499 .saw-build-card-featured {
    background: linear-gradient(180deg, #ffffff 0%, #fff7f1 100%);
    border-color: rgba(255, 102, 0, .38);
    box-shadow: 0 22px 60px rgba(0,0,0,.11);
  }

  #promo-499 .saw-build-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: #1A1A1A;
    color: #FF6600;
    margin-bottom: 16px;
    box-shadow: 0 12px 30px rgba(0,0,0,.16);
  }

  #promo-499 .saw-build-icon i {
    font-size: 32px;
    line-height: 1;
    color: #FF6600 !important;
  }

  #promo-499 .saw-build-card h2 {
    color: #111;
    font-weight: 950;
    letter-spacing: -.02em;
    line-height: 1.12;
    margin: 0 0 10px;
    font-size: clamp(24px, 2.4vw, 34px);
  }

  #promo-499 .saw-build-card p {
    color: rgba(17,17,17,.78);
    font-size: 1rem;
    line-height: 1.68;
    margin: 0 0 16px;
  }

  #promo-499 .saw-build-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    display: grid;
    gap: 9px;
  }

  #promo-499 .saw-build-card li {
    position: relative;
    padding-left: 26px;
    color: rgba(17,17,17,.86);
    line-height: 1.45;
    font-weight: 650;
  }

  #promo-499 .saw-build-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #FF6600;
    font-weight: 950;
  }

  #promo-499 .saw-price-line {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin: 0 0 18px;
  }

  #promo-499 .saw-price-line span {
    color: rgba(17,17,17,.60);
    font-size: .9rem;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .08em;
  }

  #promo-499 .saw-price-line strong {
    color: #1A1A1A;
    font-size: 42px;
    line-height: 1;
    font-weight: 950;
    letter-spacing: -.04em;
  }

  #promo-499 .saw-transition-panel {
    margin-top: 28px;
    padding: 24px;
    border-radius: 24px;
    background: #1A1A1A;
    color: #fff;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    border: 1px solid rgba(255, 102, 0, .38);
    box-shadow: 0 24px 64px rgba(0,0,0,.18);
  }

  #promo-499 .saw-transition-icon {
    width: 62px;
    height: 62px;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: rgba(255, 102, 0, .12);
    color: #FF6600;
    border: 1px solid rgba(255, 102, 0, .32);
  }

  #promo-499 .saw-transition-icon i {
    font-size: 30px;
    color: #FF6600 !important;
  }

  #promo-499 .saw-transition-panel h2 {
    margin: 0 0 8px;
    color: #fff;
    font-size: clamp(24px, 3vw, 38px);
    line-height: 1.08;
    font-weight: 950;
    letter-spacing: -.03em;
  }

  #promo-499 .saw-transition-panel p {
    margin: 0;
    color: rgba(255,255,255,.82);
    line-height: 1.7;
    font-size: 1.03rem;
  }

  #promo-499 .saw-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    margin-top: 18px;
  }

  #promo-499 .saw-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 66px;
    padding: 18px 26px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 950;
    font-size: 20px;
    line-height: 1.08;
    white-space: nowrap;
    transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
    box-shadow: 0 18px 44px rgba(0,0,0,.14);
  }

  #promo-499 .saw-btn:hover {
    transform: translateY(-2px);
  }

  #promo-499 .saw-btn-primary {
    color: #ffffff !important;
    background: linear-gradient(90deg, #FF6600 0%, #CC5200 100%);
    border: 1px solid #FF6600;
  }

  #promo-499 .saw-btn-secondary {
    color: #111 !important;
    background: #fff;
    border: 1px solid rgba(0,0,0,.18);
    box-shadow: 0 18px 44px rgba(0,0,0,.10);
  }

  #promo-499 .saw-btn-blue {
    color: #fff !important;
    background: linear-gradient(135deg, #005bf7 0%, #193774 100%);
    border: 1px solid rgba(0, 91, 247, .55);
  }

  #promo-499 .saw-btn-outline {
    background: #fff;
    color: #005bf7 !important;
    border: 2px solid rgba(0, 91, 247, .55);
    box-shadow: 0 18px 44px rgba(0,0,0,.10);
  }

  #promo-499 .saw-note {
    margin-top: 12px;
    font-size: .96rem;
    color: rgba(17,17,17,.68);
    text-align: center;
  }

  #promo-499 .saw-divider {
    height: 1px;
    background: rgba(0,0,0,.10);
    margin: 34px 0 28px;
    border: 0;
  }

  #promo-499 .saw-h2 {
    font-weight: 950;
    margin: 0 0 10px;
    color: #111;
    letter-spacing: -.02em;
  }

  #promo-499 .saw-muted {
    margin: 0 0 18px;
    color: rgba(17,17,17,.68);
  }

  #promo-499 .saw-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 14px;
    margin-top: 18px;
  }

  #promo-499 .saw-feature {
    grid-column: span 6;
    background: #fff;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 12px 28px rgba(0,0,0,.06);
  }

  #promo-499 .saw-feature h3 {
    margin: 0 0 10px;
    font-weight: 950;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #111;
  }

  #promo-499 .saw-badge {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 950;
    background: rgba(255,102,0,.14);
    border: 1px solid rgba(255,102,0,.34);
    color: #1A1A1A;
    flex: 0 0 auto;
  }

  #promo-499 .saw-feature ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
  }

  #promo-499 .saw-feature li {
    position: relative;
    padding-left: 26px;
    line-height: 1.55;
    color: rgba(17,17,17,.84);
  }

  #promo-499 .saw-feature li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 950;
    color: #FF6600;
  }

  #promo-499 .saw-tw-block {
    margin: 30px auto 0;
    max-width: 1120px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfbff 100%);
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 24px;
    padding: clamp(18px, 2.6vw, 34px);
    box-shadow: 0 16px 46px rgba(0,0,0,.10);
  }

  #promo-499 .saw-tw-media {
    width: 100%;
    margin: 0 auto;
  }

  #promo-499 .saw-tw-media img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    box-shadow: 0 18px 44px rgba(0,0,0,.18);
  }

  #promo-499 .saw-tw-caption {
    margin-top: 10px;
    text-align: right;
    font-style: italic;
    font-weight: 900;
    font-size: .92rem;
    color: #1A1A1A;
  }

  #promo-499 .saw-tw-h2 {
    margin: 18px 0 12px;
    font-weight: 950;
    letter-spacing: -.03em;
    line-height: 1.08;
    color: #111;
    text-align: left;
    font-size: clamp(28px, 4vw, 52px);
  }

  #promo-499 .saw-tw-copy {
    margin: 0 0 13px;
    color: rgba(17,17,17,.84);
    font-size: 1.05rem;
    line-height: 1.75;
    text-align: left;
  }

  #promo-499 .saw-tw-highlight-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 22px;
  }

  #promo-499 .saw-tw-highlight {
    background: #fff;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 12px 30px rgba(0,0,0,.06);
  }

  #promo-499 .saw-tw-highlight i {
    display: inline-flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(0,91,247,.08);
    color: #005bf7;
    font-size: 24px;
    margin-bottom: 12px;
  }

  #promo-499 .saw-tw-highlight h3 {
    margin: 0 0 8px;
    color: #111;
    font-size: 1.05rem;
    font-weight: 950;
  }

  #promo-499 .saw-tw-highlight p {
    margin: 0;
    color: rgba(17,17,17,.76);
    line-height: 1.55;
    font-size: .96rem;
  }

  #promo-499 .saw-tw-cta {
    margin-top: 22px;
  }

  @media (max-width: 992px) {
    #promo-499 {
      padding: 70px 0 90px !important;
    }

    #promo-499 .saw-wide-media {
      padding-left: 28px;
      padding-right: 28px;
    }

    #promo-499 .saw-build-options {
      grid-template-columns: 1fr;
    }

    #promo-499 .saw-feature {
      grid-column: span 12;
    }

    #promo-499 .saw-tw-highlight-grid {
      grid-template-columns: 1fr;
    }

    #promo-499 .saw-btn {
      font-size: 18px;
      min-height: 62px;
      padding: 17px 22px;
    }

    #promo-499 .saw-transition-panel {
      flex-direction: column;
    }
  }

  @media (max-width: 576px) {
    #promo-499 {
      padding: 54px 0 74px !important;
    }

    #promo-499 .saw-wide-media {
      padding-left: 14px;
      padding-right: 14px;
    }

    #promo-499 .saw-wide-media img {
      border-radius: 14px;
    }

    #promo-499 .saw-title {
      font-size: 36px;
    }

    #promo-499 .saw-copy {
      font-size: 1rem;
    }

    #promo-499 .saw-btn {
      width: 100%;
      max-width: 520px;
      font-size: 18px;
      min-height: 64px;
      padding: 18px 18px;
      white-space: normal;
      text-align: center;
    }

    #promo-499 .saw-build-card {
      padding: 22px 18px;
    }

    #promo-499 .saw-transition-panel {
      padding: 20px;
    }

    #promo-499 .saw-tw-caption {
      text-align: left;
    }
  }
</style>
/* Footer copyright bottom — remove colored box */
body.office-biloxi .footer__section .footer__bottom {
  background: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  border-top: 1px solid rgba(255,255,255,0.10) !important;
}

body.office-biloxi .footer__section .footer__bottom.cmn__bg {
  background: transparent !important;
  background-image: none !important;
}
/* =========================================================
   SAW OFFICE GREEN THEME OVERRIDES
   Load after saw-office-landing.css
========================================================= */

body.office-green,
body.office-biloxi-green {
  --saw-office-primary: #C9F31D;
  --saw-office-primary-dark: #3DA500;
  --saw-office-primary-deep: #598600;
  --saw-office-gradient: linear-gradient(
    90deg,
    rgba(201, 243, 29, 1) 12%,
    rgba(61, 165, 0, 1) 76%,
    rgba(89, 134, 0, 1) 100%
  );
  --saw-office-angled-gradient: linear-gradient(
    135deg,
    #C9F31D 0%,
    #3DA500 58%,
    #4C4C4C 100%
  );
}

/* Force the AI rail back to green even if old orange overrides exist */
body.office-green .saw-office-landing,
body.office-biloxi-green .saw-office-landing {
  --saw-office-primary: #C9F31D;
  --saw-office-primary-dark: #3DA500;
  --saw-office-primary-deep: #598600;
  --saw-office-gradient: linear-gradient(
    90deg,
    rgba(201, 243, 29, 1) 12%,
    rgba(61, 165, 0, 1) 76%,
    rgba(89, 134, 0, 1) 100%
  );
  --saw-office-angled-gradient: linear-gradient(
    135deg,
    #C9F31D 0%,
    #3DA500 58%,
    #4C4C4C 100%
  );
}

/* Green text accents inside AI Employee section */
body.office-green .saw-office-landing .saw-card-kicker,
body.office-green .saw-office-landing .saw-mini-icon,
body.office-green .saw-office-landing .saw-mini-card-footer,
body.office-biloxi-green .saw-office-landing .saw-card-kicker,
body.office-biloxi-green .saw-office-landing .saw-mini-icon,
body.office-biloxi-green .saw-office-landing .saw-mini-card-footer {
  color: #C9F31D !important;
}

/* Green icon bubbles */
body.office-green .saw-office-landing .saw-mini-icon,
body.office-biloxi-green .saw-office-landing .saw-mini-icon {
  background: rgba(201, 243, 29, 0.12) !important;
  border-color: rgba(201, 243, 29, 0.28) !important;
}

/* Green right rail bar */
body.office-green .saw-office-landing .saw-post-slider::after,
body.office-biloxi-green .saw-office-landing .saw-post-slider::after {
  background: linear-gradient(180deg, #C9F31D 0%, #3DA500 65%, #598600 100%) !important;
}

/* Green header frame on the AI rail intro card */
body.office-green .saw-office-landing .saw-slider-header::before,
body.office-biloxi-green .saw-office-landing .saw-slider-header::before {
  background: linear-gradient(135deg, #C9F31D 0%, #3DA500 58%, #4C4C4C 100%) !important;
}
/* =========================================================
   AI Employee Rail — Match Original SAW Website Background
========================================================= */

body.office-green #saw-ai-employee-rail,
body.office-green #saw-ai-employee-rail .saw-subrail,
body.office-green .saw-office-landing,
body.office-green .saw-office-landing .saw-subrail {
  background: #141410 !important;
  background-color: #141410 !important;
  background-image: none !important;
}
/* =========================================================
   Tight transition: AI Employee rail → Recognized As
========================================================= */

body.office-green #saw-ai-employee-rail .saw-subrail {
  padding-bottom: 0 !important;
}

body.office-green #saw-ai-employee-rail {
  margin-bottom: 0 !important;
}

body.office-green .saw-award-section {
  padding-top: 42px !important;
}