:root {
  --sc-orange: #F16A21;
  --sc-black: #464646;
  --sc-nav-font-size: 16px;
  --sc-heading-font-size: 18px;
  --sc-dropdown-min-height: 420px;
}

.sc-header {
  font-family: 'Alexandria', sans-serif;
  font-weight: 400;
  font-size: var(--sc-nav-font-size);
  position: sticky;
  top: 0;
  background-color: #fff;
  z-index: 9999;
}

.mob-btn {
    display: none;
}

.sc-header .sc-header-title {
  font-size: 24px;
  font-weight: 700;
  color: #263238;
  margin-bottom: 30px;
}

.sc-header .sc-header-heading {
  font-size: var(--sc-heading-font-size);
  font-weight: 700;
  color: #424242;
  margin-bottom: 25px;
}

.sc-header .sc-header-description {
  font-weight: 400;
  color: var(--sc-black);
  font-size: var(--sc-nav-font-size);
  font-family: 'Alexandria', sans-serif !important;
  margin-bottom: 16px;
}

.sc-header .sc-header-orange-heading {
  color: var(--sc-orange) !important;
}

.sc-header .sc-header-yellow-heading {
  color: #fae048 !important;
}

.sc-header-sub-link,
.sc-header-sub-link:visited {
  font-size: var(--sc-nav-font-size);
  color: #757575;
  font-weight: 400;
}

.sc-header-sub-link:hover,
.sc-header-sub-link:active {
  color: var(--sc-orange);
}

.sc-header-sub-link:hover h4 {
  color: var(--sc-orange);
}

.sc-header-sub-link-white {
  color: #fff;
}

.sc-social-logo-header a {
  display: inline-block;
  border-radius: 50%;
  border: 1.5px solid transparent;
  font-size: 0;
}

.sc-customer-demo:hover {
  background: #fff;
}

.sc-social-logo-header a:hover {
  border: 1.5px solid var(--sc-orange);
}

.sc-nav {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  font-size: var(--sc-nav-font-size);
}

.sc-free-ai .sc-list-flex-item li {
  border-bottom: 1px solid #E0E0E0;
}

.sc-free-ai .chevron-down {
  filter: brightness(0) saturate(100%) invert(24%) sepia(10%) saturate(7%) hue-rotate(351deg) brightness(99%) contrast(88%);
}

.sc-header .sc-nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--sc-black);
}
button.sc-nav-head.sc-nav-link {
    background: transparent;
}

.sc-nav-link-orange {
  color: var(--sc-orange) !important;
}

.sc-nav-link-yellow {
  background-color: #fff176;
}

.sc-nav-link-yellow {
  background-color: #fff176;
  padding: 15px !important;
  border-radius: 12px;
}

.sc-nav-link-bg-orange {
  background-color: var(--sc-orange);
  padding: 15px !important;
  border-radius: 12px;
  display: flex;
  gap: 5px;
  color: #fff !important;
}

.sc-header-content {
  display: flex;
  align-items: center;
  /* 6px = 87px nav row, matching the 2026 design's 88px header frame
     (Sameer 2026-07-23, site-wide). Tablet/mobile overrides below stand. */
  padding: 6px 24px;
}

.sc-nav-wrap {
  list-style-type: none;
}

.sc-nav-item {
  padding: 24px;
}

.sc-login {
  margin-left: auto;
  display: flex;
  align-items: center;
}

.sc-header .sc-login a {
  font-size: 16px;
  padding: 0 24px;
  font-weight: 600;
}

.sc-social-header-logos {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  gap: 5px;
}

.sc-nav-item-content {
  visibility: hidden;
  position: absolute;
  width: 100%;
  background: #fff;
  left: 0;
  border: 1px solid rgba(224, 224, 224, 1);
  opacity: 0;
  top: 96px;
  transform: translateY(-50px);
  transition: all .4s ease;
  min-height: var(--sc-dropdown-min-height);
}


.sc-nav-container {
  margin: 0 auto;
  height: 100%;
  min-height: var(--sc-dropdown-min-height);
}

.sc-nav-item-box {
  height: 100%;
  min-height: var(--sc-dropdown-min-height);
}

.sc-header-open-dropdown .sc-nav-item-content {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  /* Move to its original position */
  z-index: 99;
}

.sc-header ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.sc-header-sub-link-wrap {
  display: flex;
  gap: 10px;
  align-items: center;
}

.sc-blog-item img {
  width: 100%;
}

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

.sc-header-blog-row {
  display: flex;
  gap: 20px;
}

.sc-nav h4 {
  font-size: var(--sc-nav-font-size);
  font-weight: 400 !important;
}

.sc-header-open-dropdown {
  background: rgba(255, 248, 225, 1);
}

.sc-nav-head {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
}

.sc-header-open-dropdown .sc-nav-head img {
  transform: rotate(180deg);
  filter: brightness(0) saturate(100%) invert(66%) sepia(13%) saturate(2633%) hue-rotate(348deg) brightness(95%) contrast(103%);
}

.sc-banner {
  background-color: #7e57c2;
  text-align: center;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  color: #fff;
  font-weight: 700;
}

.sc-banner p {
  margin-bottom: 0 !important;
  color: #fff !important;
}

.sc-banner a {
  background-color: #f90;
  padding: 5px 15px;
  color: #fff;
  border-radius: 10px;
}

.sc-nav-column {
  padding: 30px 34px;
  border-right: 1px solid rgba(224, 224, 224, 1);
  gap: 70px;
}

.sc-customer-service {
  background-color: var(--sc-orange);
}

.sc-customer-service .sc-header-description {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  font-family: 'Alexandria', sans-serif !important;
  margin-bottom: 16px !important;
}

.sc-customer-service .sc-customer-demo {
  background-color: #fae048;
  padding: 12px 15px;
  color: var(--sc-black);
  font-weight: 700;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  transition: all 0.4s ease;
}

a.sc-customer-demo:hover {
  background: #fff;
}

.sc-nav-column:first-child {
  padding-left: 110px;
  padding-right: 75px;
}

.sc-nav-column:last-child {
  border-right: none;
}

.sc-nav-list li {
  margin-bottom: 16px;
}

.sc-header-mb-sm {
  margin-bottom: 16px;
}

.sc-header-mt-sm {
  margin-top: 30px;
}

.sc-header-mb-md {
  margin-bottom: 28px;
}

.sc-header-mb {
  margin-bottom: 50px;
}

.sc-fav-logo .sc-social-logo-header img {
  display: block;
  border: 1px solid rgba(224, 224, 224, 1);
  border-radius: 50%;
}

header .sc-social-logo-header img {
  min-width: 20px;
  max-width: 40px;
}

.sc-social-logo-header {
  font-size: 0;
}

.sc-header-partners {
  display: inline-flex;
  background-color: #fff;
  justify-content: space-between;
  padding: 17px 15px;
  gap: 15px;
}

.sc-header-partner {
  font-size: 0;
}



.sc-list-flex-item li {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--sc-orange);
}

.sc-list-flex-item li a {
  display: flex;
  justify-content: space-between;
}

.sc-bg-pink-light {
  background: rgba(255, 248, 225, 1);
}

.sc-bg-pink-light-a {
  background: rgba(255, 251, 234, 1);
}

.sc-bg-purple-gredient {
  background: linear-gradient(0deg,
      #fae048 -91.08%,
      #e0c361 -74.68%,
      #bd9c83 -45.18%,
      #a17e9f -15.68%,
      #8d68b2 13.82%,
      #825bbe 40.05%,
      #7e57c2 66.27%,
      #8072d0 102.33%,
      #8394e2 158.06%,
      #85a9ed 200.67%,
      #86b1f2 230.17%);
}

.sc-header-bg-features {
  background-color: #fafafa;
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}


.sc-menu-bar {
  position: relative;
  height: 22px;
    width: 40px;
  background-color: #fffce600;
  cursor: pointer;
  overflow: hidden;
}

.sc-menu-bar .menu__icon {
  position: absolute;
  width: 22px;
  height: 15px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.sc-menu-bar .menu__line {
  position: absolute;
  left: 0;
  background-color: var(--sc-black);
  height: 3px;
  width: 100%;
  border-radius: 3px;
  pointer-events: none;
}

.sc-menu-bar .menu__line--1 {
  top: 0;
}

.sc-menu-bar .menu__line--2 {
  top: 0;
  bottom: 0;
  margin: auto;
}

.sc-menu-bar .menu__line--3 {
  bottom: 0;
}


.sc-menu-bar .menu__line--1,
.sc-menu-bar .menu__line--3 {
  transition: transform 0.3s ease-in-out;
}

.sc-menu-bar.sc-header-opened .menu__line--1 {
  transform: translate3d(-6.5px, 1px, 0) rotate(135deg) scaleX(0.7);
  transition: transform 0.3s ease-in-out;
}

.sc-menu-bar.sc-header-opened .menu__line--3 {
  transform: translate3d(-6.5px, -1px, 0) rotate(-135deg) scaleX(0.7);
  transition: transform 0.3s ease-in-out;
}


.sc-nav-column {
  position: relative;
}

.sc-why-social {
  display: grid;
  grid-template-columns: 526fr 532fr 861fr;
}

.sc-resources {
  display: grid;
  grid-template-columns: 526fr 556fr 419fr 419fr;
}

.sc-product {
  display: grid;
  grid-template-columns: 526fr 345fr 630fr 419fr;
}

.sc-free-ai .sc-header-heading {
  display: flex;
  gap: 20px;
  align-items: center;
}

.sc-free-ai {
  background-color: #FDF9C4;
}

.sc-fav-logo .sc-social-logo-header.firmao img {
  border: none;
  border-radius: 0;
}

.sc-tooltip {
  position: relative;
  display: inline-block;
  cursor: pointer;
  border-radius: 50%;
}

.sc-tooltip img {
  display: block;
}

.sc-tooltip .sc-tooltiptext {
  visibility: hidden;
  width: 130px;
  background: rgba(110, 110, 110, 1);
  color: #fff;
  text-align: center;
  border-radius: 4px;
  padding: 7px 10px;
  position: absolute;
  z-index: 1;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 14px;

}


.sc-tooltip .sc-tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: rgba(110, 110, 110, 1) transparent transparent transparent;
}

.sc-tooltip:hover .sc-tooltiptext {
  visibility: visible;
  opacity: 1;
}

.sc-tooltip:hover {

  transition: all 0.2s ease-out;
  box-shadow: 0px 4px 8px rgba(38, 38, 38, 0.2);
}


@media (max-width: 1820px) {
  .sc-why-social {
    grid-template-columns: 450fr 532fr 861fr;
  }

  .sc-resources {
    grid-template-columns: 450fr 556fr 419fr 419fr;
  }

  .sc-product {
    grid-template-columns: 450fr 345fr 630fr 419fr;
  }
}

@media (max-width: 1750px) {
  .sc-customer-service .sc-header-description {
    font-size: 20px;
  }
}

@media (max-width: 1620px) {
  .sc-nav-column {
    gap: 40px;
  }

  .sc-nav-column:first-child {
    padding-left: 55px;
    padding-right: 32px;
  }
}

@media (max-width: 1520px) {
  .sc-nav-column {
    gap: 30px;
  }

  .sc-nav-column:first-child {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (max-width: 1400px) {
  .sc-nav-column {
    gap: 20px;
  }

  .sc-social-header-logos {
    flex-wrap: wrap;
  }

}


@media (min-width: 1301px) and (max-width: 1450px) {

  .sc-nav-item {
    padding: 15px;
  }
}


@media (min-width: 1025px) and (max-width: 1300px) {
  :root {
    --sc-nav-font-size: 14px;
  }

  .sc-nav-column:first-child {
    padding-left: 20px;
    padding-right: 20px;
  }

  .sc-nav-column {
    padding: 30px 20px;
  }

  .sc-nav-item {
    padding: 10px;
  }
}

@media (min-width: 1025px) and (max-width: 1150px) {
  .sc-nav {
    margin-left: 10px;
  }

  .sc-header-content {
    padding: 24px 24px;
  }

  .sc-nav-item {
    padding: 10px;
  }

  .sc-icon {
    width: 25px;
  }

  .sc-nav-title {
    width: calc(100% - 25px);
  }
}

@media (min-width: 1025px) {
  .sc-header-partners {
    border: 1px solid #e0e0e0;
    border-radius: 64px;
    padding: 17px 15px;
  }

  .sc-header-partner {
    position: relative;
  }

  .sc-header-partner:not(:last-child)::after {
    content: '';
    width: 2px;
    height: 30px;
    background-color: #e0e0e0;
    position: absolute;
    right: -8.5px;
    top: 50%;
    transform: translateY(-50%);
  }

  .sc-dot-image {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: auto;
    left: 0;
  }

  .sc-nav {
    margin-left: 30px;
  }

  .sc-nav-wrap {
    display: flex;
	  align-items: center;
  }

  .sc-mobile {
    display: none;
  }
}

@media (min-width: 1025px) and (max-width: 1280px) {
  .sc-header .sc-login a {
    font-size: 12px;
  }

  .sc-site-logo-image-wrap {
    width: 140px !important;
  }

  .sc-header .sc-nav-link {
    font-size: 13px;
  }
}

@media (max-width: 1024px) {

  /* .sc-header {
    position: relative;
  } */
  .sc-blog-item {
    margin-bottom: 30px;
  }


  .sc-header-blog-row {
    display: block;
  }

  .sc-why-social {
    grid-template-columns: 1fr;
  }

  .sc-resources {
    grid-template-columns: 1fr;
  }

  .sc-product {
    grid-template-columns: 1fr;
  }

  .sc-dot-image {
    margin-top: 20px;
    margin-left: -34px;
    margin-right: -34px;
  }

  .sc-nav-flex-row {
    display: block;
  }

  .sc-desktop {
    display: none;
  }

  .sc-nav {
    position: fixed;
    top: 0;
    transform: translate(-100%);
    display: block;
    left: 0;
    transition: transform 0.5s;
    width: 100%;
    height: 100%;
    z-index: 999;
    transform: translateX(-100%);
    transition: transform 0.5s;
  }

  .sc-header-content {
    padding: 12px 16px;
    justify-content: space-between;
  }

  .sc-header-active {
    transform: translateX(0);
  }

  .sc-nav .nav-content {
    background: rgba(255, 248, 225, 1);
    width: 420px;
    max-width: 100%;
    height: 100%;
    display: block;
    overflow: auto;
    box-shadow: 0px 4px 8px rgba(38, 38, 38, 0.2);
  }

  .sc-nav-item-content {
    display: none;
  }

  .sc-header-open-dropdown .sc-nav-item-content {
    display: block;
    position: static;
    margin-top: 20px;
  }

  .sc-nav-item {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(224, 224, 224, 1);
  }

  .sc-nav-head {
    justify-content: space-between;
  }

  .sc-nav-column:first-child {
    padding-left: 34px;
  }

  .sc-close-button {
    padding: 5px;
    width: 40px;
    height: 40px;
    margin-left: auto;
    background: var(--sc-black);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 24px;
  }

  .open-nav {
    overflow: hidden;
  }

  .menu-bar {
    cursor: pointer;
  }

  ul.sc-login {
    margin-top: 30px;
  }
}

@media (max-width: 660px) {
	
	.sc-site-logo-image-wrap{
		width:140px !important;
	}
	.mob-btn {
    display: block;
}
	
	.mob-btn a.sc-nav-link.sc-nav-link-bg-orange {
    padding: 10px 12px !important;
    font-size: 16px;
}
  .sc-banner {
    padding: 15px;
    display: block;
  }

  .sc-banner p {
    margin-bottom: 10px !important;
  }
}


.share-buttons a:hover {
  background: var(--sc-orange);
}

.share-buttons {
  margin-top: -0.8075em;
  margin-bottom: 10px;
}

.share-buttons a {
  background: #FFF076;
  width: 100%;
  display: block;
  padding: 10px;
  text-align: center;
  color: var(--sc-black);
  font-weight: 700;
  border-radius: 8px;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  outline: none;
}

/* .sc-3-column-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
} */

/* Default - 3 columns */
.sc-3-column-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 10px;
  /* spacing between items */
  list-style: none;
  padding: 0;
  margin: 0;
}

.sc-3-column-list .sc-icon {
  width: 20px;
}

/* Tablet - 2 columns */
@media (max-width: 992px) {
  .sc-3-column-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile - 1 column */
@media (max-width: 576px) {
  .sc-3-column-list {
    grid-template-columns: 1fr;
  }
}

/*  style for Default page */
.page-template-default ol>li::marker {
  font-size: 25px;
  font-weight: 700;
}

.sc-new {
  background-color: #FFD700;
  color: #000000;
  border: none;
  padding: 3px 7px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  font-style: italic;
}
.sc-item-start {
  align-items: start;
}
/* ============================================================================
   NAV PHASE-A FIXES (2026-07, tri-planned) — additive only.
   ========================================================================= */

/* Hamburger + close are real <button>s now: reset UA styles PER BUTTON —
   .sc-close-button keeps its var(--sc-black) background tile. */
button.sc-menu-bar {
  border: 0;
  padding: 0;
  background: transparent;
  appearance: none;
  cursor: pointer;
}
button.sc-close-button {
  border: 0;
  appearance: none;
  cursor: pointer;
}
/* menu lines were divs, now spans (button = phrasing content) */
.sc-menu-bar .menu__icon { display: block; }
.sc-menu-bar .menu__line { display: block; }

/* Visible keyboard focus on all header controls */
.sc-nav-head:focus-visible,
button.sc-menu-bar:focus-visible,
button.sc-close-button:focus-visible,
.sc-nav .sc-nav-link:focus-visible {
  outline: 2px solid #464646;
  outline-offset: 2px;
}

/* Chevrons: triggers ship inline <svg> — the legacy rule only matched <img>
   and never fired. currentColor picks up the trigger color automatically. */
.sc-header-open-dropdown .sc-nav-head svg {
  transform: rotate(180deg);
}

/* Tooltips: visible on keyboard focus, not just hover */
.sc-tooltip:focus-visible .sc-tooltiptext,
.sc-tooltip:focus .sc-tooltiptext {
  visibility: visible;
  opacity: 1; /* base rule keeps opacity:0 — visibility alone leaves it invisible */
}

/* Closed mobile drawer leaves the tab order / a11y tree (JS toggles [inert];
   translateX alone left it focusable off-screen). Scoped to drawer widths. */
@media (max-width: 1024px) {
  .sc-nav[inert] {
    visibility: hidden;
  }
}

/* Phase A.1 (2026-07-24, tri-reviewed): full-row tap targets in the drawer.
   Padding is TRANSFERRED from the li to the interactive child (adding it
   would double row heights); flex is kept for chevron alignment; selectors
   scoped to top-level drawer rows so panel links/login CTAs are untouched. */
@media (max-width: 1024px) {
  .sc-nav-wrap > .sc-nav-item {
    padding-top: 0;
    padding-bottom: 0;
  }
  .sc-nav-wrap > .sc-nav-item > .sc-nav-head,
  .sc-nav-wrap > .sc-nav-item > .sc-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  /* Hamburger icon box is hard-set to 40x22 with overflow:hidden — padding
     is absorbed. Explicit 44px box instead; negative margins keep the header
     row height unchanged; the icon self-centers (absolute translate). */
  button.sc-menu-bar {
    height: 44px;
    width: 44px;
    margin: -11px -2px;
  }
  button.sc-close-button {
    min-width: 44px;
    min-height: 44px;
  }
}

/* ============================================================================
   NAV V2 DESIGN PREVIEW (Phase B) — STAGE ONLY, 2026-07-24 (rev 2, tri-reviewed).
   V2 reskin of header + mega menus. Tri-review fixes: V2 orange via scoped
   --sc-orange; ink-on-orange card text (3.26:1 large-text pass, was a 2.89
   regression); hover = ink + orange underline (never orange text on cream);
   sub-link rules at legacy specificity so dark-template inline CSS still
   wins; drawer backdrop preserved (cream on .nav-content only); token
   alignment (1.5px rules, radius 24 cards, 4px hard shadows); focus-visible
   parity on all new interactive states.
   SHIP-BLOCKERS BEFORE PROD (logged): font enqueue must key on the shared
   HEADER rendering (not the footer's condition); dark-page header variant
   wants a proper --dark modifier like the footer's.
   ========================================================================= */

.sc-header {
  --sc-orange: #ff6900; /* V2 orange for everything header-scoped */
  border-bottom: 1.5px solid #464646;
}
.sc-header .sc-nav-wrap > .sc-nav-item > .sc-nav-link,
.sc-header .sc-nav-head,
.sc-header .sc-login .sc-nav-link,
.sc-header .sc-nav-link.sc-underline {
  font-family: 'DM Sans', sans-serif;
}
.sc-header .sc-nav-wrap > .sc-nav-item > .sc-nav-link,
.sc-header .sc-nav-head {
  color: #464646;
}
.sc-nav-wrap > .sc-nav-item > .sc-nav-link:hover,
.sc-nav-wrap > .sc-nav-item:hover > .sc-nav-head {
  color: #464646;
  text-decoration: underline;
  text-decoration-color: #ff6900;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

/* Start free CTAs: the footer's neo button (bg = scoped --sc-orange) */
.sc-nav-link-bg-orange {
  border: 1px solid #464646 !important;
  border-radius: 12px;
  box-shadow: 3px 3px 0 0 #464646;
  font-family: "Bricolage Grotesque", "Alexandria", sans-serif;
  font-weight: 700;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.3s;
}
.sc-nav-link-bg-orange:hover,
.sc-nav-link-bg-orange:focus-visible {
  background-color: #ec6201;
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 0 #464646;
}

/* Open trigger: cream neo chip */
.sc-header-open-dropdown {
  background: #fcfaf4;
  border-radius: 12px;
  box-shadow: inset 0 0 0 1.5px #464646;
}

/* Mega panel sheet: ink rule, no blur shadows (neo = hard edges) */
.sc-nav-item-content {
  background: #fff;
  border: 0;
  border-bottom: 1.5px solid #464646;
}

/* Column tints join the cream family; retire the dots art */
.sc-header-bg-features,
.sc-bg-pink-light,
.sc-bg-pink-light-a,
.sc-free-ai {
  background: #fcfaf4;
}
.sc-dot-image { display: none; }

/* Panel typography (title/heading keep legacy-beating specificity;
   sub-links/titles stay at LEGACY specificity so dark templates' inline
   rules still win their tie) */
.sc-header .sc-header-title,
.sc-header .sc-header-heading {
  font-family: "Bricolage Grotesque", "Alexandria", sans-serif;
  color: #464646;
}
.sc-header .sc-header-description {
  font-family: 'DM Sans', sans-serif !important;
  color: #666666;
}
.sc-header-sub-link,
.sc-nav-title {
  font-family: 'DM Sans', sans-serif;
  color: #464646;
}
.sc-header-sub-link:hover,
.sc-header-sub-link:focus-visible,
.sc-header-sub-link:hover .sc-nav-title {
  color: #464646;
  text-decoration: underline;
  text-decoration-color: #ff6900;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

/* "Talk to our team" card: orange neo card, INK text (3.26:1 large-text) */
.sc-nav-item-box .sc-customer-service {
  background-color: #ff6900;
  border: 1.5px solid #464646;
  border-radius: 24px;
  box-shadow: 4px 4px 0 0 #464646;
  margin: 20px;
}
.sc-header .sc-customer-service .sc-header-description {
  color: #464646;
  font-family: "Bricolage Grotesque", "Alexandria", sans-serif !important;
}
.sc-customer-service .sc-customer-demo {
  background: #ffffff;
  border: 1px solid #464646;
  border-radius: 12px;
  box-shadow: 3px 3px 0 0 #464646;
  font-family: "Bricolage Grotesque", "Alexandria", sans-serif;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
a.sc-customer-demo:hover,
a.sc-customer-demo:focus-visible {
  background: #ffffff;
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 0 #464646;
}
a.sc-customer-demo:focus-visible {
  outline: 2px solid #464646;
  outline-offset: 2px;
}

/* Featured blog cards: V2 card shadows */
.sc-blog-item img {
  border: 1px solid #464646;
  border-radius: 12px !important;
  box-shadow: 4px 4px 0 0 #464646;
}
.sc-blog-item p { font-family: 'DM Sans', sans-serif; color: #464646; }

/* Mobile drawer: cream SHEET only — .sc-nav stays the backdrop overlay */
@media (max-width: 1024px) {
  .sc-nav .nav-content { background: #fcfaf4; }
  .sc-header-open-dropdown {
    border-radius: 0;
    box-shadow: none;
    background: transparent;
  }
  /* Active section marker: ink + orange underline (orange text on cream
     is 2.77:1 — never use orange as a text color on cream) */
  .sc-header-open-dropdown > .sc-nav-head {
    color: #464646;
    text-decoration: underline;
    text-decoration-color: #ff6900;
    text-decoration-thickness: 2px;
    text-underline-offset: 6px;
  }
}

/* ============================================================================
   NAV PHASE B (2026-07-24): mobile mega-panel restructure + explicit dark
   header variant + cookie-banner layering.
   ========================================================================= */

/* Dark header variant (engagement-tool, justice, seasonal pricing):
   explicit — no longer relying on specificity ties with page inline CSS.
   Desktop-scoped: the mobile drawer is its own cream surface everywhere. */
@media (min-width: 1025px) {
  .sc-header--dark .sc-nav-wrap > .sc-nav-item > .sc-nav-link,
  .sc-header--dark .sc-nav-head {
    color: #ffffff;
  }
  .sc-header--dark .sc-nav-wrap > .sc-nav-item > .sc-nav-link:hover,
  .sc-header--dark .sc-nav-wrap > .sc-nav-item:hover > .sc-nav-head {
    color: #ffffff;
    text-decoration-color: #ff6900;
  }
  .sc-header--dark .sc-header-open-dropdown {
    background: rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.6);
  }
}

/* Dark headers, all widths: white hamburger lines + white focus outlines
   (ink is invisible on the dark engagement/justice/seasonal headers). */
.sc-header--dark .menu__line {
  background-color: #ffffff;
}
.sc-header--dark .sc-nav-head:focus-visible,
.sc-header--dark button.sc-menu-bar:focus-visible,
.sc-header--dark .sc-nav .sc-nav-link:focus-visible {
  outline-color: #ffffff;
}

/* Mobile drawer: links-first panels. The stacked desktop columns made the
   Features dropdown ~1.6k px tall with marketing copy above the links —
   hide the decorative/marketing columns in the drawer; every LINK list
   stays (Features, industries, roles, learn/stories/community,
   comparisons, free tools). Book-a-demo remains a top-level drawer item. */
@media (max-width: 1024px) {
  .sc-nav-item-box > .sc-nav-column:first-child { display: none; } /* marketing desc card */
  .sc-why-social > .sc-nav-column:nth-child(3) { display: none; }  /* Featured Blogs (RSS) */
  .sc-product .sc-bg-pink-light-a { display: none; }               /* platform/integration grids */
  .sc-product .sc-customer-service { display: none; }              /* demo card (top-level item exists) */

  /* Industry/role lists: two columns in the drawer (single column made the
     Why panel ~900px on its own) */
  .sc-nav-item-content .sc-3-column-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 12px;
  }

  /* Cookie banner sits at z-index 1000000 and floats over the open drawer
     — keep it behind the drawer (nav z-index 9999) while the menu is open;
     it returns when the drawer closes. */
  body.open-nav #cookie-notice { z-index: 9998 !important; }
}
