/* style.css */

/* SPA Preloader Bar */
.spa-preloader {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, #ccffcc, #ccffcc);
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}

:root {
  --font-sans: "Manrope", "Helvetica", "Arial", sans-serif;
  --sb-border: rgba(255, 255, 255, 0.08);
}

.spa-preloader.loading {
  opacity: 1;
  animation: spa-preload-progress 1.8s cubic-bezier(0.2, 0.6, 0.4, 1) forwards;
}

.spa-preloader.done {
  width: 100%;
  opacity: 0;
  transition: opacity 0.4s ease 0.1s;
}

@keyframes spa-preload-progress {
  0% {
    width: 0;
  }

  20% {
    width: 35%;
  }

  50% {
    width: 65%;
  }

  80% {
    width: 85%;
  }

  100% {
    width: 95%;
  }
}

body {
  background-color: #14120b;
  color: white;
  font-family: var(--font-sans);
  /* margin: 0; */
  /* padding: 0; */
  /* padding-top: 10px; */
  /* overflow-x: 0; */
  /* background: green; */
}

.nav-section {
  background-color: transparent;
  padding: 0;
  height: 50px;
  transition:
    background-color 0.2s ease,
    box-shadow 0.2s ease,
    backdrop-filter 0.2s ease,
    -webkit-backdrop-filter 0.2s ease;
  /* background-color: red; */
}

.nav-section.is-scrolled {
  background-color: rgba(20, 18, 11, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-section .nav-link {
  color: white !important;
}

.dropdown-menu .dropdown-item {
  color: white;
  background-color: transparent;
}

.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus {
  background-color: transparent !important;
  color: #b9b7b6 !important;
}

.intro-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-image: url("/assets/images/canvas.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  background-color: #14120b;
  background-blend-mode: multiply;
  padding-top: 24px;
  padding-bottom: 72px;
}

section.mt-5.mb-0 {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-image: url("/assets/images/canvas.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  background-color: #14120b;
  background-blend-mode: multiply;
  padding-bottom: 5px;
}

.intro-section::after,
section.mt-5.mb-0::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 160px;
  background: linear-gradient(180deg,
      rgba(20, 18, 11, 0) 0%,
      rgba(20, 18, 11, 0.72) 62%,
      #14120b 100%);
  pointer-events: none;
  z-index: 0;
}

.intro-section>.container,
section.mt-5.mb-0>.container {
  position: relative;
  z-index: 1;
}

.intro-div {
  margin-top: 132px;
  line-height: 33px;
  font-family: var(--font-sans);
  font-size: 26px;
}

.home-intro .intro-div {
  max-width: 820px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.home-intro .img-holder {
  height: min(62vh, 620px);
  margin-top: 52px;
  border-radius: 10px;
  max-width: 85%;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.45);
}

.home-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #f2d08a;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.home-hero {
  padding-top: 56px;
  padding-bottom: 88px;
}

.home-hero__container {
  position: relative;
  z-index: 1;
}

.home-hero__content {
  margin-top: 96px;
  text-align: left;
  max-width: none;
}

.home-hero__title {
  margin: 20px 0 18px;
  font-size: clamp(1.5rem, 5vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.05em;
  font-weight: 800;
}

.home-hero__lead {
  max-width: 640px;
  color: #c9c3b7;
  font-size: 1.08rem;
  line-height: 1.7;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.home-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.home-stat-card {
  padding: 18px;
  border-radius: 18px;
  background: rgba(19, 17, 11, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

.home-stat-card strong {
  display: block;
  font-size: 1rem;
  line-height: 1.2;
  color: #ffffff;
}

.home-stat-card span {
  display: block;
  margin-top: 10px;
  color: #aca594;
  font-size: 0.95rem;
  line-height: 1.55;
}

.home-hero__visual {
  position: relative;
}

.home-hero__eyebrow {
  margin-bottom: 12px;
  color: #efe8dd;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.home-hero__visual-card {
  padding: 22px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(35, 31, 22, 0.98) 0%, rgba(18, 16, 12, 0.96) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.home-hero__pulse {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(70, 156, 119, 0.16);
  color: #ccefdc;
  font-size: 0.92rem;
  font-weight: 600;
}

.home-hero__pulse-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #6fe3a4;
  box-shadow: 0 0 0 6px rgba(111, 227, 164, 0.15);
}

.home-hero__metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0 18px;
}

.home-hero__metric-grid div {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.home-hero__metric-grid small {
  display: block;
  color: #a69f91;
  font-size: 0.82rem;
  margin-bottom: 8px;
}

.home-hero__metric-grid strong {
  color: #ffffff;
  font-size: 1.45rem;
  letter-spacing: -0.03em;
}

.home-hero__image {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 20px;
}

.home-proof,
.home-workflows,
.home-operating-model,
.home-outcomes {
  margin-top: 92px;
}

.home-section-heading {
  max-width: 780px;
  margin: 0 auto 18px;
}

.home-section-heading h2 {
  margin: 18px 0 12px;
  font-size: clamp(2rem, 2.8vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.home-section-heading p {
  margin: 0;
  color: #b9b2a6;
  font-size: 1.02rem;
  line-height: 1.7;
}

.home-proof-card,
.home-detail-card,
.home-outcome-card {
  height: 100%;
  padding: 24px;
  border-radius: 22px;
  background: linear-gradient(180deg, #1a1710 0%, #15130e 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #fff;
}

.home-proof-card i {
  display: inline-flex;
  width: 48px;
  height: 48px;
  justify-content: center;
  align-items: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: #f2d08a;
  font-size: 1.25rem;
}

.home-proof-card h3,
.home-detail-card h3 {
  margin: 18px 0 10px;
  font-size: 1.25rem;
  line-height: 1.2;
}

.home-proof-card p,
.home-detail-card p,
.home-outcome-card p {
  margin: 0;
  color: #b8b1a4;
  line-height: 1.7;
}

.home-feature-card {
  margin-top: 28px;
  padding: 20px;
}

.home-feature-card__label {
  display: inline-block;
  margin-bottom: 12px;
  color: #f2d08a;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-feature-card h3 {
  font-size: clamp(1.8rem, 2.3vw, 2.7rem);
  letter-spacing: -0.03em;
}

.home-feature-card p {
  color: #b9b2a6;
  line-height: 1.7;
  font-size: 1rem;
}

.home-feature-list {
  margin: 18px 0 0;
  padding-left: 18px;
  color: #ece6dc;
}

.home-feature-list li {
  margin-top: 10px;
}

.home-feature-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: #ff8d74;
  text-decoration: none;
  font-weight: 600;
}

.home-feature-link:hover {
  color: #ffb09d;
}

.home-feature-card__media {
  min-height: 380px;
  align-items: center;
}

.home-feature-card__media--emerald {
  background: linear-gradient(180deg, #0d4139 0%, #082824 100%);
}

.home-feature-card__media--bronze {
  background: linear-gradient(180deg, #5f4632 0%, #2a1c13 100%);
}

.home-feature-card__media--slate {
  background: linear-gradient(180deg, #394247 0%, #1b2125 100%);
}

.home-detail-card__step {
  display: inline-flex;
  margin-bottom: 18px;
  color: #7e7769;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.home-outcome-card strong {
  display: block;
  margin-top: 18px;
  color: #f6f1e9;
  font-size: 0.98rem;
}

.home-final-cta {
  margin-top: 110px;
}

.home-final-cta__title {
  margin: 18px auto 14px;
  max-width: 780px;
  font-size: clamp(2rem, 3vw, 3.5rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.home-final-cta__copy {
  max-width: 700px;
  margin: 0 auto;
  color: #bcb5a8;
  font-size: 1rem;
  line-height: 1.7;
}

.home-final-cta__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.enterprise-shell {
  padding-top: 42px;
  padding-bottom: 96px;
}

.enterprise-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #f2d08a;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.enterprise-hero {
  position: relative;
  padding-top: 70px;
}

.enterprise-hero__content {
  padding-top: 36px;
}

.enterprise-hero__title {
  margin: 20px 0 18px;
  color: #fff;
  font-size: clamp(2.7rem, 5vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  font-weight: 800;
}

.enterprise-hero__lead {
  max-width: 660px;
  color: #c6c0b4;
  font-size: 1.08rem;
  line-height: 1.75;
}

.enterprise-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.enterprise-hero__signals {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
}

.enterprise-signal-card {
  padding: 18px;
  border-radius: 18px;
  background: rgba(19, 17, 11, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.enterprise-signal-card strong {
  display: block;
  color: #fff;
  font-size: 1rem;
}

.enterprise-signal-card span {
  display: block;
  margin-top: 10px;
  color: #aba394;
  font-size: 0.95rem;
  line-height: 1.55;
}

.enterprise-hero__panel {
  padding: 24px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(35, 31, 22, 0.98) 0%, rgba(17, 15, 11, 0.96) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.enterprise-hero__badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(88, 116, 255, 0.14);
  color: #d8ddff;
  font-size: 0.9rem;
  font-weight: 600;
}

.enterprise-hero__metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0;
}

.enterprise-hero__metrics div {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.enterprise-hero__metrics small {
  display: block;
  margin-bottom: 8px;
  color: #a39b8c;
  font-size: 0.82rem;
}

.enterprise-hero__metrics strong {
  color: #fff;
  font-size: 1.45rem;
  letter-spacing: -0.03em;
}

.enterprise-hero__image {
  width: 100%;
  min-height: 340px;
  object-fit: contain;
}

.enterprise-scope,
.enterprise-workflows,
.enterprise-results,
.enterprise-governance,
.enterprise-cta {
  margin-top: 96px;
}

.enterprise-section-heading {
  max-width: 820px;
  margin: 0 auto 18px;
}

.enterprise-section-heading h2 {
  margin: 18px 0 12px;
  color: #fff;
  font-size: clamp(2rem, 3vw, 3.5rem);
  line-height: 1.03;
  letter-spacing: -0.04em;
}

.enterprise-section-heading p {
  margin: 0;
  color: #bbb3a6;
  font-size: 1.02rem;
  line-height: 1.72;
}

.enterprise-scope-card,
.enterprise-result-card,
.enterprise-governance-card {
  height: 100%;
  padding: 24px;
  border-radius: 22px;
  background: linear-gradient(180deg, #1a1710 0%, #15130e 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #fff;
}

.enterprise-scope-card i {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: #f2d08a;
  font-size: 1.2rem;
}

.enterprise-scope-card h3,
.enterprise-governance-card h3 {
  margin: 18px 0 10px;
  font-size: 1.24rem;
  line-height: 1.2;
}

.enterprise-scope-card p,
.enterprise-result-card p,
.enterprise-governance-card p {
  margin: 0;
  color: #b7afa1;
  line-height: 1.7;
}

.enterprise-showcase-card {
  margin-top: 28px;
  padding: 24px;
  border-radius: 28px;
  background: #17140f;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.enterprise-showcase-card__label {
  display: inline-block;
  margin-bottom: 12px;
  color: #f2d08a;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.enterprise-showcase-card h3 {
  color: #fff;
  font-size: clamp(1.9rem, 2.4vw, 2.9rem);
  letter-spacing: -0.03em;
}

.enterprise-showcase-card p {
  color: #bbb3a7;
  font-size: 1rem;
  line-height: 1.72;
}

.enterprise-showcase-list {
  margin: 18px 0 0;
  padding-left: 18px;
  color: #ece6dc;
}

.enterprise-showcase-list li {
  margin-top: 10px;
}

.enterprise-inline-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: #ff8d74;
  text-decoration: none;
  font-weight: 600;
}

.enterprise-inline-link:hover {
  color: #ffb09d;
}

.enterprise-showcase-media {
  min-height: 390px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  padding: 24px;
}

.enterprise-showcase-media img {
  max-width: 100%;
  max-height: 320px;
}

.enterprise-showcase-media--slate {
  background: linear-gradient(180deg, #384247 0%, #1b2125 100%);
}

.enterprise-showcase-media--forest {
  background: linear-gradient(180deg, #103830 0%, #081f1b 100%);
}

.enterprise-showcase-media--earth {
  background: linear-gradient(180deg, #5b4533 0%, #281b12 100%);
}

.enterprise-result-card strong {
  display: block;
  margin-bottom: 10px;
  color: #fff;
  font-size: 1.08rem;
}

.enterprise-cta {
  padding-bottom: 12px;
}

.enterprise-cta__title {
  margin: 18px auto 14px;
  max-width: 820px;
  color: #fff;
  font-size: clamp(2.1rem, 3vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.enterprise-cta__copy {
  max-width: 760px;
  margin: 0 auto;
  color: #bcb5a8;
  line-height: 1.7;
}

.enterprise-cta__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

@media (max-width: 991.98px) {
  .home-hero {
    padding-top: 32px;
    padding-bottom: 56px;
  }

  .home-hero__content {
    margin-top: 72px;
    text-align: center;
  }

  .home-hero__lead {
    margin-left: auto;
    margin-right: auto;
  }

  .home-hero__actions {
    justify-content: center;
  }

  .home-hero__stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .home-kicker {
    font-size: 0.76rem;
  }

  .home-hero__metric-grid {
    grid-template-columns: 1fr;
  }

  .home-hero__visual-card,
  .home-proof-card,
  .home-detail-card,
  .home-outcome-card {
    padding: 18px;
  }

  .home-feature-card {
    padding: 14px;
  }

  .home-feature-card__media {
    min-height: 280px;
  }

  .home-proof,
  .home-workflows,
  .home-operating-model,
  .home-outcomes,
  .home-final-cta {
    margin-top: 64px;
  }
}

.billing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  padding: 4px;
  border-radius: 999px;
  background-color: #1b1913;
  border: 1px solid #26241e;
}

.billing-toggle__btn {
  border: none;
  background: transparent;
  color: #b9b7b6;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.billing-toggle__btn.is-active {
  background-color: #ffffff;
  color: #14120b;
}

.intro-div a {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 16px;
  font-weight: 400px;
}

.Features-page .intro-div p {
  font-family: var(--font-sans);
  line-height: 24px;
  font-size: 16px;
  font-weight: 400;
  color: #8e9592;
}

.Enterprise-page .intro-div p {
  font-family: var(--font-sans);
  line-height: 24px;
  font-size: 16px;
  font-weight: 400;
  color: #8e9592;
}

.center-img {
  position: absolute;
  width: 60%;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.prof-para {
  margin-top: 70px;
  margin-bottom: 20px;
  font-family: var(--font-sans);
  text-align: center;
}

.home-trust-strip {
  margin: 78px 0 48px;
}

.home-trust-label {
  margin: 0 0 26px;
  text-align: center;
  color: #f2f0ea;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.24;
}

.home-logo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.home-logo-box {
  min-height: 88px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  background: linear-gradient(180deg, #19160f 0%, #14120d 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #f7f5ef;
  font-family: var(--font-sans);
  font-size: clamp(1.45rem, 1.1vw + 1rem, 1.5rem);
  font-weight: 600;
  letter-spacing: -0.01em;
}

@media (min-width: 768px) {
  .home-logo-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
  }

  .home-logo-box {
    min-height: 118px;
  }
}

@media (min-width: 1200px) {
  .home-logo-grid {
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 12px;
  }

  .home-logo-box {
    min-height: 80px;
    font-size: 1rem;
  }
}

@media (max-width: 767.98px) {
  .home-trust-strip {
    margin: 56px 0 36px;
  }

  .home-trust-label {
    font-size: 1.2rem;
    margin-bottom: 16px;
  }
}

.Accordion-section {
  margin-top: 60px;
}

.Accordion-section .accordion-item,
.Accordion-section .accordion-button,
.Accordion-section .accordion-body {
  background-color: #14120b;
  color: #ffffff;
}

.Accordion-section .accordion-button {
  box-shadow: none;
}

.Accordion-section .accordion-button::after {
  filter: invert(1);
}

/* Sponsor */
.logo-box {
  background-color: #1b1913;
  border-radius: 6px;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  text-align: center;
  padding: 0 8px;
}

/* Large screens: 8 boxes in a row */
@media (min-width: 992px) {
  .logo-grid {
    grid-template-columns: repeat(8, 1fr);
  }
}

/* AGENT CONTAINER STYLE */
.agent-container {
  background-color: #1d1b15;
  border-radius: 10px;
  border: 1px solid var(--sb-border);
  padding: 5px;
  overflow: hidden;
  margin-top: 25px;
  font-family: var(--font-sans);
  font-size: 22px;
  line-height: 29px;
}

.agent-container span {
  color: #9a9996;
}

.Features-page .agent-container {
  margin-top: 30px;
}

.Enterprise-page .agent-container .text-content {
  font-family: var(--font-sans);
  font-family: 400;
  line-height: 24px;
  font-size: 16px;
}

/*AGENT CONTAINER FOR SMALLER SCREEN */
@media (max-width: 768px) {
  .agent-container {
    margin-top: 60px;
    margin-left: 5px;
    margin-right: 5px;
  }

  .agent-box img {
    height: auto;
    margin: 8px;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .Enterprise-page .agent-container {
    margin-top: 200px;
    margin-left: 20px;
    margin-right: 20px;
    padding: 1px;
  }

  .agent-container .paragraph {
    font-size: medium !important;
  }
}

.agent-box {
  background-color: #003333;
  padding: 10px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.agent-box img {
  max-width: 100%;
  border-radius: 10px;
  height: auto;
}

/* TAB CONTAINER STYLE */
.tab-container {
  background-color: #1d1b15;
  border-radius: 10px;
  padding: 5px;
  overflow: hidden;
  margin-top: 100px;
  font-family: var(--font-sans);
  font-size: 22px;
  line-height: 29px;
  font-weight: 400px;
}

.tab-container span {
  color: #9a9996;
}

.Features-page .tab-container {
  margin-top: 150px;
}

.Enterprise-page .tab-container {
  margin-top: 200px;
}

.Enterprise-page .tab-container .text-content {
  font-family: var(--font-sans);
  font-family: 400;
  line-height: 24px;
  font-size: 16px;
}

/*TAB CONTAINER FOR SMALLER SCREEN  */
@media (max-width: 768px) {
  .tab-container {
    margin-top: 60px;
    margin-left: 5px;
    margin-right: 5px;
  }
}

@media (max-width: 768px) {
  .Enterprise-page .tab-container {
    margin-left: 20px;
    margin-right: 20px;
    margin-top: 150px;
    padding: 1px;
  }

  .tab-container .paragraph {
    font-size: medium !important;
  }
}

.background-box {
  background-color: #333d3f;
  padding: 20px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  /* image sits at bottom of blue box */
  margin-bottom: 10px;
}

@media (min-width: 992px) {
  .col-lg-8 .image-box {
    margin-right: 40px;
  }
}

.background-box img {
  max-width: 100%;
  border-radius: 10px;
  height: auto;
}

/* CURSOR CONTAINER STYLE */
.cursor-container {
  background-color: #1d1b15;
  border-radius: 10px;
  padding: 5px;
  overflow: hidden;
  margin-top: 100px;
  font-family: var(--font-sans);
  font-size: 22px;
  line-height: 29px;
  font-weight: 400px;
}

.cursor-container span {
  color: #9a9996;
}

.Enterprise-page .cursor-container {
  margin-top: 200px;
}

.Enterprise-page .cursor-container .text-content {
  font-family: var(--font-sans);
  font-family: 400;
  line-height: 24px;
  font-size: 16px;
}

/*CURSOR CONTAINER FOR SMALLER SCREEN */
@media (max-width: 991px) {
  .cursor-container {
    margin-top: 60px;
    margin-left: 5px;
    margin-right: 5px;
  }
}

@media (max-width: 768px) {
  .Enterprise-page .cursor-container {
    margin-left: 20px;
    margin-right: 20px;
    margin-top: 150px;
    padding: 1px;
  }

  .cursor-container .paragraph {
    font-size: medium !important;
  }
}

.cursor-box {
  background-color: gray;
  padding: 20px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: 10px;
}

.cursor-box img {
  max-width: 100%;
  border-radius: 10px;
  min-height: auto;
}

.software {
  font-family: var(--font-sans);
  font-size: 36px;
  font-weight: 400px;
  line-height: 43px;
}

/* Custom-height*/

@media (min-width: 768px) {
  .custom-height {
    min-height: 200px;
  }
}

.custom-height {
  background: #1b1913;
  min-height: 300px;
  line-height: 24px;
  font-size: 16px;
  font-family: var(--font-sans);
}

.frontier-header {
  font-family: var(--font-sans);
  font-size: 26px;
  font-weight: 400px;
  line-height: 33px;
}

/* Frontier */
.frontier-div {
  background: #1d1b15;
}

.frontier-div .card-body {
  padding: 0;
  /* margin-bottom: 15px;  */
  font-weight: 400px;
  line-height: 24px;
  font-size: 16px;
  font-family: var(--font-sans);
}

.frontier-div .card-text {
  color: #929996 !important;
}

.Features-page .frontier-div {
  margin-top: 50px;
}

/* Presentation image */
.img-holder {
  width: 100%;
  height: 95vh;
  overflow: hidden;
  border-radius: 10px;
  margin-top: 60px;
}

.Company-img .img-holder {
  margin-bottom: 120px;
}

/* Presentation image styling */
.img-present {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* presentation image for smaller screen */
@media (max-width: 576px) {
  .img-holder {
    height: 280px;
  }
}

.changelog-header {
  font-family: var(--font-sans);
  font-size: 26px;
  font-weight: 400px;
  line-height: 33px;
}

.changelog-div {
  background: #1b1913;
}

.changelog-div .card-title,
.changelog-div .btn {
  color: #9a9996 !important;
}

.future-cursor {
  line-height: 43px;
  margin-top: 150px;
  font-family: var(--font-sans);
  font-weight: 400px;
  font-size: 36px;
  /* background: green; */
}

.highlight-section {
  background: #1b1913;
  padding-top: 100px;
  padding-bottom: 100px;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400px;
}

.highlight-section .cards {
  background: #26241e;
  border: 1px solid #292721;
}

.highlight-section p {
  color: #9a9996 !important;
}

.Enterprise-page .highlight-section {
  margin-top: 150px;
  background: #14120b !important;
  padding-top: 0px !important;
}

@media (max-width: 576px) {
  .highlight-section {
    /* padding: 0px; */
    padding-top: 100px;
  }
}

.Blog-page .cards {
  background-color: #201e18;
}

.blog-page-shell {
  padding-top: 96px;
  padding-bottom: 112px;
  background:
    radial-gradient(circle at 14% -14%, rgba(255, 255, 255, 0.06), transparent 36%),
    linear-gradient(180deg, #111214 0%, #111315 44%, #101214 100%);
  min-height: calc(100vh - 220px);
}

.blog-page-header {
  margin-bottom: 18px;
  max-width: 760px;
}

.blog-page-eyebrow {
  margin: 0;
  color: #a5aab3;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 11px;
  font-weight: 600;
}

.blog-page-header h1 {
  margin: 8px 0 0;
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 500;
  color: #f4f5f7;
}

.blog-page-lead {
  margin: 14px 0 0;
  max-width: 620px;
  color: #adb2ba;
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.5;
}

.blog-page-quote {
  display: none;
}

.blog-controls {
  margin-top: 20px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(0, 180px)) auto;
  gap: 12px;
  align-items: end;
}

.blog-search-wrap {
  position: relative;
}

.blog-search-wrap i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #6f7f97;
  font-size: 13px;
}

.blog-search-wrap input {
  width: 100%;
  height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(16, 19, 23, 0.92);
  color: #e5e9ef;
  padding: 0 14px 0 38px;
  font-size: 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.blog-search-wrap input::placeholder {
  color: #8b93a0;
}

.blog-search-wrap input:focus,
.blog-sort-wrap select:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.08);
}

.blog-sort-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.blog-sort-wrap label {
  color: #949ca8;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.blog-sort-wrap select {
  min-width: 160px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(16, 19, 23, 0.92);
  color: #e5e9ef;
  padding: 0 12px;
  font-size: 14px;
}

.blog-filter-btn {
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  padding: 0 18px;
  background: #f2f4f8;
  color: #111318;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.blog-filter-btn:hover {
  filter: brightness(1.04);
  transform: translateY(-1px);
}

.blog-chip-list {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.blog-chip-list-tags {
  margin-top: 10px;
}

.blog-chip-list-label {
  display: inline-flex;
  align-items: center;
  color: #7f8ba0;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-right: 2px;
}

.blog-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(20, 22, 26, 0.86);
  color: #c6cbd3;
  text-decoration: none;
  font-size: 13px;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.blog-chip span {
  min-width: 22px;
  height: 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
  font-size: 11px;
  color: #e6e9ef;
  background: rgba(255, 255, 255, 0.14);
}

.blog-chip:hover,
.blog-chip.is-active {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(29, 32, 37, 0.95);
  color: #f0f2f6;
}

.blog-chip-tag {
  padding: 7px 12px;
  background: rgba(20, 22, 26, 0.86);
}

.blog-chip-tag.is-active,
.blog-chip-tag:hover {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(29, 32, 37, 0.95);
}

.blog-results-meta {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.blog-results-meta p {
  margin: 0;
  color: #90a0b8;
  font-size: 13px;
}

.blog-active-filters {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.blog-active-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  border-radius: 999px;
  border: 1px solid rgba(164, 183, 210, 0.22);
  background: rgba(16, 20, 28, 0.85);
  color: #d6e0ef;
  text-decoration: none;
  font-size: 12px;
}

.blog-active-pill:hover {
  border-color: rgba(151, 184, 229, 0.55);
  background: rgba(28, 36, 48, 0.9);
}

.blog-active-pill i {
  font-size: 10px;
}

.blog-active-clear {
  color: #d1e0f8;
  font-size: 12px;
  text-decoration: none;
  padding: 2px 4px;
}

.blog-active-clear:hover {
  color: #f0f6ff;
}

.blog-post-list {
  margin-top: 22px;
  max-width: 100%;
}

.blog-post-list>section {
  opacity: 0;
  transform: translateY(10px);
  animation: blog-reveal 0.55s ease forwards;
}

.blog-post-list>section:nth-of-type(1) {
  animation-delay: 0.05s;
}

.blog-post-list>section:nth-of-type(2) {
  animation-delay: 0.12s;
}

.blog-post-list>section:nth-of-type(3) {
  animation-delay: 0.18s;
}

@keyframes blog-reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .blog-post-list>section {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

.blog-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.blog-section-head h2 {
  margin: 0;
  color: #f3f7fd;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.15;
  font-weight: 500;
}

.blog-section-head p {
  margin: 0;
  color: #8d9cb3;
  font-size: 14px;
}

.blog-top-feed {
  margin-top: 8px;
  margin-bottom: 26px;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 12px;
}

.blog-hero-card {
  display: block;
  text-decoration: none;
  border-radius: 14px;
  padding: 18px;
  background: linear-gradient(170deg, rgba(25, 27, 31, 0.98) 0%, rgba(16, 18, 21, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  min-height: 240px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.blog-hero-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.22);
}

.blog-hero-card h2 {
  margin: 8px 0 0;
  color: #f2f5fa;
  font-size: clamp(30px, 3.6vw, 40px);
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.blog-hero-card p {
  margin: 12px 0 0;
  color: #afb4bc;
  font-size: 17px;
  line-height: 1.5;
}

.blog-mini-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.blog-mini-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border-radius: 12px;
  padding: 14px;
  background: rgba(17, 19, 22, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.12);
  min-height: 112px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.blog-mini-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.32);
}

.blog-mini-card h3 {
  margin: 6px 0 0;
  color: #edf2f9;
  font-size: clamp(18px, 2.1vw, 22px);
  line-height: 1.26;
  font-weight: 500;
}

.blog-mini-card span {
  margin-top: auto;
  color: #c3cad4;
  font-size: 13px;
}

.blog-story-rail {
  margin-top: 8px;
  margin-bottom: 24px;
}

.blog-story-rail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.blog-story-rail-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px;
  border-radius: 12px;
  text-decoration: none;
  background: linear-gradient(170deg, rgba(18, 23, 31, 0.95) 0%, rgba(13, 17, 22, 0.98) 100%);
  border: 1px solid rgba(164, 183, 210, 0.14);
  min-height: 154px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.blog-story-rail-item:hover {
  transform: translateY(-2px);
  border-color: rgba(169, 197, 236, 0.55);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.2);
}

.blog-story-rail-top {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.blog-story-rail-top small {
  color: #9daec2;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.blog-story-rail-item h3 {
  margin: 0;
  color: #eef4fd;
  font-size: clamp(19px, 2.2vw, 23px);
  line-height: 1.25;
  font-weight: 500;
}

.blog-story-rail-item span {
  margin-top: auto;
  color: #c6d6ee;
  font-size: 13px;
}

.blog-featured-wrap {
  margin-top: 10px;
}

.blog-featured-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 12px;
}

.blog-featured-card {
  display: grid;
  grid-template-columns: 1fr;
  text-decoration: none;
  background: linear-gradient(170deg, rgba(20, 24, 30, 0.98) 0%, rgba(13, 17, 22, 0.98) 100%);
  border: 1px solid rgba(164, 183, 210, 0.18);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-featured-card:hover {
  border-color: rgba(169, 197, 236, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.22);
}

.blog-featured-card.is-lead {
  grid-row: span 2;
}

.blog-featured-media {
  min-height: 190px;
  background: #131a24;
}

.blog-featured-card.is-lead .blog-featured-media {
  min-height: 270px;
}

.blog-featured-media img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
  display: block;
}

.blog-featured-card.is-lead .blog-featured-media img {
  min-height: 270px;
}

.blog-featured-body {
  padding: 14px;
}

.blog-featured-body h3 {
  margin: 0;
  color: #f2f7ff;
  font-size: clamp(22px, 2.8vw, 30px);
  line-height: 1.2;
  font-weight: 500;
}

.blog-featured-card:not(.is-lead) .blog-featured-body h3 {
  font-size: clamp(20px, 2.4vw, 24px);
}

.blog-featured-body p {
  margin: 10px 0 0;
  color: #aab6c8;
  font-size: 15px;
  line-height: 1.48;
}

.blog-all-stories {
  margin-top: 30px;
}

.blog-all-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.blog-all-grid .blog-list-card {
  grid-template-columns: 1fr;
  padding: 16px;
}

.blog-all-grid .blog-list-card-media {
  display: none;
}

.blog-list-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 14px;
  text-decoration: none;
  background: linear-gradient(160deg, rgba(20, 22, 26, 0.97) 0%, rgba(14, 16, 19, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  padding: 14px;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-list-card:hover {
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.2);
}

.blog-list-card-media {
  border-radius: 10px;
  overflow: hidden;
  background: #121923;
  min-height: 136px;
}

.blog-list-card-media img {
  width: 100%;
  height: 100%;
  min-height: 136px;
  object-fit: cover;
  display: block;
}

.blog-list-card-placeholder {
  width: 100%;
  height: 100%;
  min-height: 136px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(139, 177, 232, 0.24), transparent 42%),
    radial-gradient(circle at 80% 85%, rgba(125, 171, 153, 0.2), transparent 42%),
    #121923;
}

.blog-list-card-placeholder span {
  width: 82px;
  height: 6px;
  border-radius: 999px;
  background: rgba(221, 234, 251, 0.35);
}

.blog-list-card-body {
  min-width: 0;
}

.blog-list-card-topline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 7px;
}

.blog-list-card-topline small {
  color: #a7aeb8;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.blog-list-card h2 {
  margin: 0;
  color: #f1f4f9;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.25;
  font-weight: 500;
}

.blog-list-card p {
  margin: 10px 0 0;
  color: #aeb5bf;
  font-size: 16px;
  line-height: 1.5;
}

.blog-list-card-foot {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.blog-list-card-foot span {
  color: #c9d0db;
  font-size: 13px;
}

.blog-list-card-foot span:last-child {
  color: #dde4ef;
}

.blog-list-card.is-empty {
  display: block;
  padding: 28px;
}

.blog-list-card.is-empty h2 {
  margin: 0;
}

.blog-list-card.is-empty p {
  margin-top: 10px;
  max-width: 560px;
}

.blog-reset-link {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d5e5fb;
  font-size: 14px;
  text-decoration: none;
}

.blog-pager-wrap {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.blog-pager,
.blog-pager-placeholder {
  background: rgba(15, 20, 28, 0.85);
  border: 1px solid rgba(164, 183, 210, 0.18);
  border-radius: 12px;
  min-height: 84px;
  padding: 16px;
}

.blog-pager {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-decoration: none;
}

.blog-pager small {
  color: #95a7be;
  font-size: 14px;
  line-height: 1.2;
  margin-bottom: 3px;
}

.blog-pager span {
  color: #eef4fd;
  font-size: 23px;
  line-height: 1.2;
  font-weight: 500;
}

.blog-pager-next {
  text-align: right;
}

.blog-pager:hover {
  border-color: rgba(169, 197, 236, 0.56);
  background: rgba(27, 36, 49, 0.9);
}

@media (max-width: 991px) {
  .blog-page-shell {
    padding-top: 78px;
  }

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

  .blog-featured-grid {
    grid-template-columns: 1fr;
  }

  .blog-top-feed {
    grid-template-columns: 1fr;
    margin-bottom: 20px;
  }

  .blog-hero-card {
    min-height: 200px;
  }

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

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

  .blog-featured-card.is-lead {
    grid-row: auto;
  }

  .blog-featured-card.is-lead .blog-featured-media,
  .blog-featured-card.is-lead .blog-featured-media img {
    min-height: 210px;
  }

  .blog-all-grid {
    grid-template-columns: 1fr;
  }

  .blog-filter-btn {
    grid-column: 1 / -1;
  }

  .blog-results-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .blog-list-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .blog-page-shell {
    padding-top: 72px;
    padding-bottom: 82px;
  }

  .blog-page-header h1 {
    font-size: clamp(36px, 12vw, 46px);
  }

  .blog-page-lead {
    font-size: 16px;
  }

  .blog-section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .blog-featured-media,
  .blog-featured-media img {
    min-height: 180px;
  }

  .blog-mini-grid {
    grid-template-columns: 1fr;
  }

  .blog-story-rail {
    margin-bottom: 18px;
  }

  .blog-story-rail-grid {
    grid-template-columns: 1fr;
  }

  .blog-story-rail-item {
    min-height: 130px;
  }

  .blog-controls {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .blog-sort-wrap select,
  .blog-filter-btn,
  .blog-search-wrap input {
    height: 42px;
  }

  .blog-list-card {
    grid-template-columns: 1fr;
    padding: 12px;
    border-radius: 12px;
  }

  .blog-list-card-media,
  .blog-list-card-media img,
  .blog-list-card-placeholder {
    min-height: 180px;
  }

  .blog-list-card h2 {
    font-size: 22px;
  }

  .blog-list-card p {
    font-size: 16px;
    margin-bottom: 0;
  }

  .blog-pager-wrap {
    grid-template-columns: 1fr;
    margin-top: 20px;
  }

  .blog-pager span {
    font-size: 19px;
  }

  .blog-pager-next {
    text-align: left;
  }
}

.download-cursor {
  padding-top: 150px;
  padding-bottom: 100px;
  background-color: #14120b;
}

.download-cursor h1 {
  /* font-size: larger; */
  font-weight: 400px;
  font-family: var(--font-sans);
  font-size: 72px;
  line-height: 79px;
}

.Enterprise-page .download-cursor h1 {
  font-weight: 400px;
  font-family: var(--font-sans);
  font-size: 52px;
  line-height: 60px;
}

.download-cursor a {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 16px;
  font-weight: 400px;
}

.footer-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 4% -12%, rgba(84, 124, 170, 0.12), transparent 42%),
    linear-gradient(180deg, #161713 0%, #11120f 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 72px 0 26px;
}

.footer-top-glow {
  position: absolute;
  left: -12%;
  top: 0;
  width: 360px;
  height: 200px;
  background: radial-gradient(circle at center, rgba(167, 188, 215, 0.1) 0%, rgba(167, 188, 215, 0) 70%);
  filter: blur(8px);
  pointer-events: none;
}

.footer-shell {
  position: relative;
  z-index: 1;
}

.footer-brand-card {
  background: linear-gradient(155deg, rgba(27, 30, 33, 0.8), rgba(20, 21, 18, 0.76));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 26px 24px;
  min-height: 100%;
}

.footer-brand-eyebrow {
  color: #b5c1d0;
  letter-spacing: 0.12em;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-brand-title {
  font-size: clamp(1.45rem, 1.1rem + 1.2vw, 2rem);
  line-height: 1.2;
  color: #f3f4ef;
}

.footer-brand-copy {
  color: #b8bbb0;
  font-size: 14px;
  line-height: 1.65;
}

.footer-brand-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.footer-primary-cta {
  background: #f3f5f8;
  color: #111317;
  border: 1px solid #f3f5f8;
  border-radius: 10px;
  padding: 9px 14px;
  font-size: 14px;
  font-weight: 600;
}

.footer-primary-cta:hover {
  background: #ffffff;
  color: #0f1115;
  border-color: #ffffff;
}

.footer-secondary-link {
  color: #c7ccd4;
  text-decoration: none;
  font-size: 14px;
}

.footer-secondary-link:hover {
  color: #f0f2f5;
}

.footer-trust-list li {
  color: #9ea6b2;
  font-size: 12px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-title {
  color: #8f958b;
  font-size: 11px;
  letter-spacing: 0.12em;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-list li {
  margin-bottom: 10px;
}

.footer-link {
  color: #e5e6e2;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.45;
  transition: color 0.2s ease;
  display: inline-block;
}

.footer-link:hover {
  color: #f3f5f8;
}

.footer-news-copy {
  color: #b8bbb0;
  font-size: 14px;
  line-height: 1.55;
}

.footer-newsletter {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.footer-input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  border-radius: 10px;
  min-height: 44px;
}

.footer-input::placeholder {
  color: #9fa49c;
}

.footer-input:focus {
  color: #fff;
  border-color: rgba(186, 202, 223, 0.66);
  box-shadow: 0 0 0 0.22rem rgba(142, 164, 190, 0.16);
  background: rgba(255, 255, 255, 0.07);
}

.footer-subscribe-btn {
  background: #dbe2ea;
  color: #12151a;
  border-radius: 10px;
  border: none;
  min-height: 42px;
  transition: background-color 0.2s ease;
}

.footer-subscribe-btn:hover {
  background: #edf2f7;
  color: #12151a;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #eef2e9;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.footer-social-link:hover {
  border-color: rgba(185, 198, 217, 0.6);
  background: rgba(50, 57, 68, 0.78);
  color: #f0f2f6;
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.12);
  margin: 34px 0 20px;
}

.footer-bottom {
  row-gap: 12px;
}

.footer-copyright {
  color: #8f958b;
  font-size: 14px;
}

.footer-badge {
  margin-left: 8px;
  background: rgba(145, 166, 193, 0.14);
  border: 1px solid rgba(145, 166, 193, 0.44);
  color: #d3e0ef;
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 4px 10px;
}

.footer-theme-pill,
.footer-lang-btn {
  background: #26241e;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
}

.footer-theme-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  padding: 8px 14px;
}

.footer-lang-btn {
  border-radius: 999px;
  padding: 6px 14px;
}

.footer-lang-btn:hover,
.footer-lang-btn:focus {
  color: #fff;
  border-color: rgba(146, 170, 199, 0.5);
  background: #2f2d25;
}

.footer-lang-menu {
  background-color: #201e18;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

@media (max-width: 991.98px) {
  .footer-section {
    padding-top: 58px;
  }

  .footer-brand-card {
    margin-bottom: 4px;
  }

  .footer-bottom {
    align-items: flex-start;
  }
}

@media (max-width: 575.98px) {
  .footer-section {
    padding: 50px 0 20px;
  }

  .footer-badge {
    margin-left: 0;
    display: inline-block;
    margin-top: 8px;
  }
}

/* .career-page .footer-section {
  margin-top: 50px;
 } */

.bottom-bar {
  margin-top: 150px;
}

.dropdown-menu .dropdown-item {
  color: #fff !important;
}

.color-c1 {
  color: #929996;
}

.blog-reading-progress {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  transform-origin: left center;
  transform: scaleX(0);
  z-index: 1100;
  background: linear-gradient(90deg, #97c65f 0%, #6a8bc4 100%);
}

.blog-post-shell {
  padding-top: 86px;
  padding-bottom: 100px;
  background:
    radial-gradient(circle at 84% 11%,
      rgba(198, 228, 134, 0.06),
      transparent 36%),
    #14120b;
  min-height: calc(100vh - 220px);
}

.blog-post-layout {
  max-width: 900px;
}

.blog-post-grid {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 46px;
  align-items: start;
}

.blog-post-meta {
  position: sticky;
  top: 84px;
}

.blog-post-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d4d4d1;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.02em;
  margin-bottom: 26px;
}

.blog-post-back-link:hover {
  color: #ffffff;
}

.blog-post-author {
  margin: 0 0 10px;
  color: #7f7d79;
  font-size: 12px;
}

.blog-post-meta-list li {
  color: #9c9b97;
  font-size: 12px;
  line-height: 1.6;
}

.blog-post-share {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.blog-share-btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(35, 33, 27, 0.9);
  color: #d6d6d2;
  padding: 8px 10px;
  font-size: 12px;
  line-height: 1.2;
  text-align: left;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.blog-share-btn:hover {
  border-color: rgba(151, 198, 95, 0.52);
  background: rgba(39, 45, 29, 0.85);
}

.blog-share-status {
  min-height: 16px;
  color: #b3c997;
  font-size: 11px;
}

.blog-post-content {
  max-width: 100%;
}

.blog-post-hero h1 {
  margin: 0;
  color: #f4f4f2;
  font-size: clamp(30px, 3.8vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 500;
  max-width: 620px;
}

.blog-post-excerpt {
  margin: 10px 0 0;
  max-width: 560px;
  color: #8c8b87;
  font-size: 12px;
  line-height: 1.55;
}

.blog-post-hero-cta {
  display: inline-flex;
  margin-top: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #f1f1ef;
  color: #181711;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
}

.blog-post-hero-cta:hover {
  color: #181711;
  background: #ffffff;
}

.blog-post-featured-media {
  margin: 18px 0 0;
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: #d9d9d6;
  min-height: 170px;
}

.blog-post-featured-media img {
  width: 100%;
  min-height: 170px;
  max-height: 290px;
  display: block;
  object-fit: cover;
}

.blog-post-featured-placeholder {
  min-height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.blog-post-featured-dot {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #3a3934;
}

.blog-post-featured-bar {
  width: 44px;
  height: 12px;
  border-radius: 3px;
  background: #92cd48;
}

.blog-post-kpi-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.blog-post-kpi-item small {
  display: block;
  color: #8f8d88;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.blog-post-kpi-item strong {
  display: block;
  margin-top: 2px;
  color: #f0efeb;
  font-size: 20px;
  font-weight: 500;
}

.blog-post-sub-meta {
  margin: 10px 0 0;
  color: #86847f;
  font-size: 11px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.blog-post-article-body {
  margin-top: 16px;
}

.blog-post-toc {
  margin-top: 18px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 10px;
  background: rgba(26, 24, 19, 0.72);
}

.blog-post-toc h2 {
  margin: 0 0 8px;
  color: #efeeeb;
  font-size: 16px;
  line-height: 1.3;
}

.blog-post-toc ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog-post-toc li {
  margin-bottom: 6px;
}

.blog-post-toc li.is-sub-item {
  padding-left: 14px;
}

.blog-post-toc a {
  color: #b8d59a;
  font-size: 13px;
  line-height: 1.45;
  text-decoration: none;
}

.blog-post-toc a:hover {
  color: #d9efb8;
}

.blog-post-toc a.is-active {
  color: #e9f8d0;
  font-weight: 600;
}

.blog-post-rich-content {
  color: #edecec;
  font-size: 16px;
  line-height: 1.72;
}

.blog-post-rich-content>*:first-child {
  margin-top: 0;
}

.blog-post-rich-content h2,
.blog-post-rich-content h3,
.blog-post-rich-content h4 {
  margin: 30px 0 10px;
  color: #edecec;
  line-height: 1.3;
  letter-spacing: -0.01em;
  scroll-margin-top: 96px;
}

.blog-post-rich-content h2,
.blog-post-rich-content h3 {
  position: relative;
}

.blog-heading-anchor-btn {
  margin-left: 8px;
  border: none;
  background: transparent;
  color: #98b97b;
  font-size: 14px;
  line-height: 1;
  opacity: 0;
  cursor: pointer;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.blog-post-rich-content h2:hover .blog-heading-anchor-btn,
.blog-post-rich-content h3:hover .blog-heading-anchor-btn,
.blog-heading-anchor-btn:focus {
  opacity: 1;
}

.blog-heading-anchor-btn:hover,
.blog-heading-anchor-btn:focus {
  color: #d9efb8;
}

.blog-post-rich-content p {
  margin: 0 0 14px;
  color: #edecec;
}

.blog-post-rich-content ul,
.blog-post-rich-content ol {
  margin: 0 0 20px;
  padding-left: 22px;
}

.blog-post-rich-content li {
  margin-bottom: 8px;
}

.blog-post-rich-content blockquote,
.blog-post-rich-content pre {
  margin: 14px 0;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 2px;
}

.blog-post-rich-content a {
  color: #d4f59e;
}

.blog-related-wrap {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.blog-post-nav {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.blog-post-nav-link,
.blog-post-nav-placeholder {
  min-height: 90px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(31, 29, 24, 0.7);
  padding: 14px;
}

.blog-post-nav-link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-decoration: none;
}

.blog-post-nav-link small {
  color: #9d9f98;
  font-size: 12px;
  line-height: 1.3;
  margin-bottom: 4px;
}

.blog-post-nav-link span {
  color: #f0efeb;
  font-size: 17px;
  line-height: 1.35;
}

.blog-post-nav-next {
  text-align: right;
}

.blog-post-nav-link:hover {
  border-color: rgba(151, 198, 95, 0.5);
  background: rgba(39, 45, 29, 0.72);
}

.blog-related-wrap h2 {
  margin: 0 0 12px;
  color: #f0efeb;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.2;
}

.blog-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.blog-related-card {
  display: block;
  text-decoration: none;
  border-radius: 10px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(33, 31, 25, 0.7);
  transition: border-color 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}

.blog-related-card:hover {
  border-color: rgba(151, 198, 95, 0.5);
  background: rgba(39, 45, 29, 0.72);
  transform: translateY(-1px);
}

.blog-related-card small {
  color: #a3a39f;
  font-size: 11px;
  line-height: 1.4;
}

.blog-related-card h3 {
  margin: 8px 0 0;
  color: #f0efeb;
  font-size: 17px;
  line-height: 1.33;
}

.blog-related-card p {
  margin: 8px 0 0;
  color: #9c9b96;
  font-size: 13px;
  line-height: 1.5;
}

@media (max-width: 991px) {
  .blog-post-shell {
    padding-top: 78px;
    padding-bottom: 84px;
  }

  .blog-post-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .blog-post-meta {
    position: static;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 12px;
  }

  .blog-post-share {
    margin-top: 12px;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }

  .blog-share-btn {
    width: auto;
    min-width: 132px;
  }

  .blog-share-status {
    flex-basis: 100%;
  }

  .blog-post-meta-list {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }

  .blog-post-kpi-item strong {
    font-size: 18px;
  }

  .blog-related-grid {
    grid-template-columns: 1fr;
  }

  .blog-post-nav {
    grid-template-columns: 1fr;
  }

  .blog-post-nav-next {
    text-align: left;
  }
}

@media (max-width: 767px) {
  .blog-post-shell {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .blog-post-hero h1 {
    font-size: 30px;
  }

  .blog-post-excerpt {
    font-size: 12px;
  }

  .blog-post-featured-media {
    margin-top: 24px;
  }

  .blog-post-kpi-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

/* Products & Platform Megamenu Styles */
.products-dropdown-item,
.platform-dropdown-item {
  position: static;
}

.products-megamenu,
.platform-megamenu {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  background: linear-gradient(135deg, #1b1913 0%, #1d1b15 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
  padding: 32px;
  display: none;
  z-index: 1000;
  margin-top: 8px;
  max-height: 85vh;
  overflow-y: auto;
  overflow-x: hidden;
}

.products-megamenu::-webkit-scrollbar,
.platform-megamenu::-webkit-scrollbar {
  width: 8px;
}

.products-megamenu::-webkit-scrollbar-track,
.platform-megamenu::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 4px;
}

.products-megamenu::-webkit-scrollbar-thumb,
.platform-megamenu::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
}

.products-megamenu::-webkit-scrollbar-thumb:hover,
.platform-megamenu::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.25);
}

.megamenu-section {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.megamenu-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.megamenu-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #9a9996;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-family: var(--font-sans);
}

.megamenu-item {
  display: flex;
  gap: 12px;
  padding: 12px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
  margin-bottom: 8px;
  background: transparent;
}

.megamenu-item:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(2px);
}

.megamenu-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  color: #ffffff;
  font-size: 16px;
}

.megamenu-item:hover .megamenu-icon {
  background: rgba(204, 255, 204, 0.15);
  color: #ccffcc;
}

.megamenu-content {
  flex: 1;
}

.megamenu-item-title {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 4px;
  font-family: var(--font-sans);
}

.megamenu-item-desc {
  font-size: 13px;
  color: #9a9996;
  line-height: 1.4;
  font-family: var(--font-sans);
}

/* Megamenu Sidebar Styles */
.megamenu-sidebar {
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.sidebar-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 16px;
  transition: all 0.2s ease;
  text-decoration: none;
  display: block;
}

.sidebar-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  text-decoration: none;
}

.tour-card {
  background: linear-gradient(135deg,
      rgba(38, 36, 30, 0.6) 0%,
      rgba(29, 27, 21, 0.6) 100%);
}

.tour-preview {
  margin-bottom: 12px;
  border-radius: 6px;
  overflow: hidden;
  background: #26241e;
  padding: 8px;
}

.tour-preview img {
  width: 100%;
  height: auto;
  display: block;
}

.sidebar-title {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
  font-family: var(--font-sans);
}

.sidebar-desc {
  font-size: 13px;
  color: #9a9996;
  line-height: 1.5;
  margin-bottom: 12px;
  font-family: var(--font-sans);
}

.sidebar-link {
  display: inline-block;
  font-size: 13px;
  color: #ccffcc;
  text-decoration: none;
  font-weight: 500;
  font-family: var(--font-sans);
}

.sidebar-link:hover {
  color: #b3ffb3;
  text-decoration: underline;
}

.promo-card {
  background: linear-gradient(135deg,
      rgba(204, 255, 204, 0.08) 0%,
      rgba(204, 255, 204, 0.03) 100%);
  border-color: rgba(204, 255, 204, 0.15);
}

.promo-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(204, 255, 204, 0.15);
  border-radius: 8px;
  color: #ccffcc;
  font-size: 20px;
  margin-bottom: 12px;
}

.simple-card {
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.simple-card:hover {
  cursor: pointer;
}

.simple-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  color: #ffffff;
  font-size: 16px;
  flex-shrink: 0;
}

.simple-card:hover .simple-icon {
  background: rgba(255, 255, 255, 0.1);
}

.simple-card .sidebar-title {
  margin-bottom: 0;
  font-size: 13px;
}

/* Responsive Megamenu */
@media (max-width: 991px) {
  .products-megamenu {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin-top: 0;
  }

  .megamenu-sidebar {
    padding-left: 0;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 24px;
    padding-top: 24px;
  }

  .products-dropdown-item .products-megamenu {
    display: none;
    position: static;
  }

  .products-dropdown-item.show .products-megamenu {
    display: block;
  }
}

/* Mobile Menu Toggle Button (Hamburger) */
.mobile-menu-toggle {
  background: transparent;
  border: none;
  padding: 8px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 10002;
  position: relative;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}

.hamburger-line {
  width: 24px;
  height: 2px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #14120b;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile Menu Close Button */
.mobile-menu-close {
  position: fixed;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 32px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10003;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
  opacity: 0;
  transform: scale(0.8);
}

.mobile-menu-overlay.active .mobile-menu-close {
  opacity: 1;
  transform: scale(1);
  transition:
    opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.2s,
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.2s,
    color 0.2s ease;
}

.mobile-menu-close:hover {
  color: #ccffcc;
}

.mobile-menu-content {
  padding: 80px 24px 32px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Hide nav links and footer when any submenu is active */
.mobile-menu-overlay.submenu-open .mobile-nav-link {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-overlay.submenu-open .mobile-menu-footer {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Mobile Navigation List */
.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  transition:
    opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav-item {
  margin-bottom: 8px;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-overlay.active .mobile-nav-item {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu-overlay.active .mobile-nav-item:nth-child(1) {
  transition-delay: 0.05s;
}

.mobile-menu-overlay.active .mobile-nav-item:nth-child(2) {
  transition-delay: 0.1s;
}

.mobile-menu-overlay.active .mobile-nav-item:nth-child(3) {
  transition-delay: 0.15s;
}

.mobile-menu-overlay.active .mobile-nav-item:nth-child(4) {
  transition-delay: 0.2s;
}

.mobile-menu-overlay.active .mobile-nav-item:nth-child(5) {
  transition-delay: 0.25s;
}

.mobile-nav-link {
  display: block;
  padding: 16px 0;
  font-size: 28px;
  font-weight: 400;
  color: #ffffff;
  text-decoration: none;
  font-family: var(--font-sans);
  line-height: 1.2;
  transition: color 0.2s ease;
  position: relative;
}

.mobile-nav-link:hover {
  color: #ccffcc;
}

.mobile-nav-dropdown-toggle::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  width: 8px;
  height: 8px;
  border-right: 2px solid #9a9996;
  border-bottom: 2px solid #9a9996;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Mobile Submenu */
.mobile-submenu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #14120b;
  z-index: 10001;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  visibility: hidden;
}

.mobile-submenu.active {
  transform: translateX(0);
  visibility: visible;
}

.mobile-submenu-header {
  position: sticky;
  top: 0;
  background-color: #14120b;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 10;
}

.mobile-back-btn {
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 20px;
  padding: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.mobile-back-btn:hover {
  color: #ccffcc;
}

.mobile-submenu-header span {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  font-family: var(--font-sans);
}

.mobile-submenu-content {
  padding: 24px;
}

.mobile-submenu-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #9a9996;
  margin-bottom: 16px;
  margin-top: 24px;
  text-transform: uppercase;
  font-family: var(--font-sans);
}

.mobile-submenu-title:first-child {
  margin-top: 0;
}

.mobile-submenu-item {
  display: block;
  padding: 14px 0;
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  text-decoration: none;
  font-family: var(--font-sans);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition:
    color 0.2s ease,
    padding-left 0.2s ease;
}

.mobile-submenu-item:hover {
  color: #ccffcc;
  padding-left: 8px;
}

/* Mobile Menu Footer */
.mobile-menu-footer {
  padding-top: 32px;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.3s,
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.mobile-menu-overlay.active .mobile-menu-footer {
  opacity: 1;
  transform: translateY(0);
}

/* Hide desktop navigation on mobile */
@media (max-width: 991px) {
  #main-nav {
    display: none !important;
  }

  .nav-section .d-flex.ms-auto {
    display: none !important;
  }
}

/* Show desktop navigation on larger screens */
@media (min-width: 992px) {

  .mobile-menu-toggle,
  .mobile-menu-overlay {
    display: none !important;
  }
}

.section-header {
  line-height: 2.5rem;
}

.lh-fs6 {
  line-height: 1.5;
}

.bg-c1 {
  background-color: #0e0d0a;
}