@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Inria+Sans:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=Inter+Tight:ital,wght@0,100..900;1,100..900&display=swap');

/* VARIABLES */
:root {
  --dark: #2d2d2d;
  --light: #fff;
  --brand-color-primary: #E0AF59;
  --brand-color-secondary: #7C7C7C;
  --brand-color-secondary-light: #ebebf5;
  --bg-light: #F4F4F9;
  --box-shadow: 0px 5px 18px rgba(0, 0, 0, 0.08);
  --transition: all 0.5s ease;
  --font-style: 'Inter Tight', sans-serif;

  --bg-highlight-blue: #cfe2ff;
  --bg-highlight-green: #d1e7dd;
  --bg-highlight-vividgreen: #a3cfbb;
  --bg-highlight-yellow: #fff3cd;
  --bg-highlight-cyan: #cff4fc;
  --bg-highlight-orange: #ffe5d0;
  --bg-highlight-red: #f8d7da;
  --bg-highlight-purple: #e2d9f3;
  --bg-highlight-grey: #e2e3e5;

  --text-highlight-blue: #084298;
  --text-highlight-green: #0f5132;
  --text-highlight-vividgreen: #0a3622;
  --text-highlight-yellow: #856404;
  --text-highlight-teal: #055160;
  --text-highlight-orange: #984c0c;
  --text-highlight-red: #842029;
  --text-highlight-purple: #59359a;
  --text-highlight-grey: #41464b;

}

.bg-yellow {
  background-color: #fffce0;
}

.bg-blue {
  background-color: #e6f2ff;
}

.bg-orange {
  background-color: #fff5eb;
}

.bg-red {
  background-color: #ffe6e6;
}

.bg-green {
  background-color: #e6f7e6;
}

.bg-pink {
  background-color: #ffe6f0;
}

.bg-purple {
  background-color: #f0e6ff;
}

.badge-select {
  font-size: 0.82rem;
  font-weight: 600;
  border: none;
  border-radius: 50rem;
  padding: 0.35em 1.1em;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  text-align: center;
  outline: none;
  transition: box-shadow 0.2s ease;
  min-width: 130px;
  color: var(--dark);
}

.badge-select:focus {
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.badge-yellow {
  background-color: var(--bg-highlight-yellow);
  color: var(--text-highlight-yellow);
  border: 1px solid #ffda6a;
  font-weight: 600;
}

.badge-green {
  background-color: var(--bg-highlight-green);
  color: var(--text-highlight-green);
  border: 1px solid #a3cfbb;
  font-weight: 600;
}

.badge-vividgreen {
  background-color: var(--bg-highlight-vividgreen);
  color: var(--text-highlight-vividgreen);
  border: 1px solid #75b798;
  font-weight: 600;
}

.badge-red {
  background-color: var(--bg-highlight-red);
  color: var(--text-highlight-red);
  border: 1px solid #f1aeb5;
  font-weight: 600;
}

.badge-orange {
  background-color: var(--bg-highlight-orange);
  color: var(--text-highlight-orange);
  border: 1px solid #fecba1;
  font-weight: 600;
}

.badge-blue {
  background-color: var(--bg-highlight-blue);
  color: var(--text-highlight-blue);
  border: 1px solid #9ec5fe;
  font-weight: 600;
}

.badge-cyan {
  background-color: var(--bg-highlight-cyan);
  color: var(--text-highlight-teal);
  border: 1px solid #9eeaf9;
  font-weight: 600;
}

.badge-purple {
  background-color: var(--bg-highlight-purple);
  color: var(--text-highlight-purple);
  border: 1px solid #c5b3e6;
  font-weight: 600;
}

.badge-grey {
  background-color: var(--bg-highlight-grey);
  color: var(--text-highlight-grey);
  border: 1px solid #c5c8cd;
  font-weight: 600;
}

.dark-color {
  color: var(--dark);
}

.primary-color {
  color: var(--brand-color-primary);
}

body {
  font-family: "Inter Tight", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  background: radial-gradient(circle at center, var(--light), var(--bg-light));
}

h1 {
  font-size: 3.5em;
}

h2 {
  font-size: 2.5em;
}

h3 {}

h4 {}

h5 {}

h6 {}

p {
  font-size: 16px;
}

ul {
  font-size: large;
}

li {
  font-size: 14px;
}

.text-light-a {
  color: var(--light);
  text-decoration: underline;
}

.text-light-a:hover {
  color: var(--light);
  font-weight: bold;
}

a {
  text-decoration: none;
  font-size: 14px;
}

a:hover {
  text-decoration: underline;
  color: var(--brand-color-primary);
}

/* Button tweaks */
.btn-primary {
  background-color: var(--dark);
  border-color: var(--dark);
  font-size: 14px;
}

.btn-primary:hover {
  background-color: var(--brand-color-primary);
  border-color: var(--dark);
}

.btn-outline-primary {
  border-color: var(--dark);
  color: var(--dark);
  font-size: 14px;
}

.btn-outline-primary:hover {
  background-color: var(--brand-color-primary);
  color: var(--light);
}

/* Insights showcase */
.insights-showcase {
  padding: 3.5rem 0 3rem;
  background: #ffffff;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.insights-card {
  background: linear-gradient(180deg, #dbe8fb 0%, #eef3ff 100%);
  border-radius: 18px;
  padding: 1.4rem;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 36px rgba(41, 66, 105, 0.16);
}

.insights-card-center {
  padding: 1.1rem;
  min-height: 320px;
  transform: translateY(-6px);
}

.insights-screen {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(40, 60, 96, 0.18);
}

.insights-screen-top {
  display: flex;
  gap: 0.4rem;
  padding: 0.5rem 0.8rem;
  background: #f4f6fb;
  border-bottom: 1px solid #e5e9f3;
}

.insights-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d3d8e5;
}

.insights-video {
  width: 100%;
  display: block;
}

.insights-suggestion {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  background: #ffffff;
  border-radius: 12px;
  padding: 0.8rem 0.9rem;
  box-shadow: 0 10px 20px rgba(40, 60, 96, 0.12);
  width: min(100%, 260px);
}

.insights-suggestion-thumb {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: linear-gradient(140deg, #ffb66c 0%, #ff8b62 100%);
}

.insights-suggestion-title {
  font-weight: 600;
  font-size: 0.9rem;
  color: #1a1a1a;
}

.insights-suggestion-status {
  margin-top: 0.35rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: #ffe9d8;
  color: #c5652a;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
}

.insights-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff8b62;
  box-shadow: 0 0 0 4px rgba(255, 139, 98, 0.2);
  animation: pulseGlow 1.6s infinite;
}

.insights-thinking {
  align-self: flex-start;
  background: #8eb0f5;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 10px;
  box-shadow: 0 8px 18px rgba(40, 60, 96, 0.16);
  margin-bottom: 1rem;
}

.insights-product {
  width: min(100%, 240px);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: #ffffff;
  border-radius: 12px;
  padding: 0.8rem 0.9rem;
  box-shadow: 0 10px 20px rgba(40, 60, 96, 0.12);
}

.insights-product-media {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: linear-gradient(145deg, #f0f1f4 0%, #dfe3ea 100%);
}

.insights-product-info {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  flex: 1;
}

.insights-product-label {
  font-size: 0.7rem;
  color: #7a8597;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.insights-product-name {
  font-weight: 600;
  color: #1a1a1a;
}

.insights-product-avatars {
  display: flex;
  align-items: center;
}

.insights-product-avatars span {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  background: linear-gradient(135deg, #ffb66c 0%, #ff8b62 100%);
  margin-left: -8px;
}

.insights-trusted {
  margin: 2.2rem 0 1rem;
  text-align: center;
  color: #5f6b7a;
  font-weight: 500;
}

.insights-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem 2.2rem;
}

.insights-logo {
  max-height: 26px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.7;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.insights-logo:hover {
  opacity: 1;
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  .insights-grid {
    grid-template-columns: 1fr;
  }

  .insights-card-center {
    transform: none;
  }
}

@keyframes pulseGlow {
  0%,
  100% {
    box-shadow: 0 0 0 4px rgba(255, 139, 98, 0.2);
  }

  50% {
    box-shadow: 0 0 0 7px rgba(255, 139, 98, 0.3);
  }
}



/* Floating WhatsApp button (right side, fixed on scroll) */
.floating-buttons {
  position: fixed;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-end;
  pointer-events: auto;
}

.floating-buttons .wa-btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  color: #fff;
  padding: .6rem .9rem;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
  text-decoration: none;
  font-weight: 600;
  font-family: inherit;
  transition: transform .12s ease, box-shadow .12s ease, opacity .12s ease;
  opacity: 0.98;
}

.floating-buttons .wa-btn:active,
.floating-buttons .wa-btn:focus {
  transform: translateY(1px);
  outline: none;
}

.floating-buttons .wa-icon {
  width: 1.2rem;
  height: 1.2rem;
  display: inline-block;
  flex-shrink: 0;
}

.floating-buttons .wa-label {
  display: none;
  white-space: nowrap;
  font-size: 0.95rem;
}

@media (min-width: 576px) {
  .floating-buttons .wa-label {
    display: inline-block;
  }
}

/* Optional small secondary button (e.g., quick call) */
.floating-buttons .wa-small {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px rgba(0, 0, 0, .12);
  background: var(--brand-color-primary);
}









/* Navbar background & border */
.custom-navbar {
  background-color: var(--light);
  border-bottom: 1px solid var(--brand-color-secondary-light);
}

/* Nav link styling */
.custom-navbar .nav-link {
  color: var(--dark);
  padding: 0.75rem 1rem;
}

.custom-navbar .nav-link:hover,
.custom-navbar .nav-link:focus {
  color: var(--brand-color-primary);
}

/* Dropdown toggle style */
.custom-navbar .dropdown-toggle::after {
  margin-left: 0.25em;
}


.preview-img {
  margin-bottom: 1em;
  margin-top: -8em;
  width: 100%;
  height: 400px;
  background: url('./assets/media/StackCMX/Dashboard.gif');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}


/* Mobile toggler icon color */
.custom-navbar .navbar-toggler-icon {
  filter: invert(30%);
}


.fade-line {
  height: 1px;
  width: 80%;
  background: linear-gradient(to right, transparent, #999, transparent);
  border: none;
}


.grayscale {
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.grayscale:hover {
  filter: none;
  opacity: 1;
}

/* FAQ accordion styling */
.faq-accordion .accordion-button,
.faq-accordion .accordion-body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.faq-accordion .accordion-item {
  border: 1px solid #d6d6d6;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  margin-bottom: 14px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.faq-accordion .accordion-button {
  background-color: #fff;
  border: 0;
  box-shadow: none;
  border-radius: 0;
  padding: 0.95rem 1.1rem;
  font-weight: 600;
  color: var(--dark);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.faq-accordion .accordion-button:focus {
  box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background-color: #f7f7f7;
  color: var(--dark);
}

.faq-accordion .accordion-button::after {
  background-image: none;
  content: '+';
  width: 1.6rem;
  height: 1.6rem;
  border: 1px solid #cfcfcf;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  line-height: 1;
  color: var(--dark);
  margin-left: auto;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  content: '-';
}

.faq-accordion .accordion-body {
  padding: 0 1.1rem 1rem 1.1rem;
  color: #5b5b5b;
  font-size: 0.95rem;
}

/* Contact section styling */
.contact-section {
  background: var(--bg-light);
}

.contact-copy {
  padding: 0.5rem 0.5rem 0.5rem 0;
}

.contact-title {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.contact-title-line {
  display: block;
}

.contact-title-dash {
  display: inline-block;
  width: 42px;
  height: 3px;
  background: #1c1c1c;
  margin-left: 0.5rem;
  margin-bottom: 0.35rem;
  border-radius: 999px;
}

.contact-subtitle {
  color: #6a6a6a;
  margin-bottom: 1.5rem;
  max-width: 420px;
}

.contact-details {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.6rem;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.contact-label {
  font-size: 0.9rem;
  color: #6a6a6a;
}

.contact-value {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
}

.contact-meta {
  font-size: 0.85rem;
  color: #7a7a7a;
}

.contact-action {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: #111;
  color: #fff;
  padding: 0.65rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.contact-action:hover {
  color: #fff;
  text-decoration: none;
}

.contact-action-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
  color: #111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.contact-card {
  background: #fff;
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.contact-form-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #6a6a6a;
  margin-bottom: 0.35rem;
}

.contact-input {
  border-radius: 999px;
  border: 1px solid #e1e1e1;
  background: #fafafa;
  padding: 0.75rem 1rem;
}

.contact-input:focus {
  border-color: #c9c9c9;
  box-shadow: none;
}

.contact-textarea {
  border-radius: 18px;
  border: 1px solid #e1e1e1;
  background: #fafafa;
  padding: 0.85rem 1rem;
  min-height: 150px;
}

.contact-textarea:focus {
  border-color: #c9c9c9;
  box-shadow: none;
}

.contact-submit {
  border: none;
  background: #111;
  color: #fff;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 600;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16);
}

.contact-submit-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
  color: #111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

@media (max-width: 991px) {
  .contact-copy {
    padding-right: 0;
  }

  .contact-subtitle {
    max-width: none;
  }
}

@keyframes wiggleGrid {

  0%,
  100% {
    background-position: 0px 0px;
  }

  25% {
    background-position: 10px 6px;
  }

  50% {
    background-position: -6px 10px;
  }

  75% {
    background-position: 6px -10px;
  }
}

#grid-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -19;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(45, 45, 45, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 45, 45, 0.06) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: wiggleGrid 12s ease-in-out infinite;
  mask-image: radial-gradient(circle 280px at var(--mx, -9999px) var(--my, -9999px),
      rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.5) 45%, transparent 100%);
  -webkit-mask-image: radial-gradient(circle 280px at var(--mx, -9999px) var(--my, -9999px),
      rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.5) 45%, transparent 100%);
}

/* Subtle dot glow that follows cursor on white bg */
#cursor-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224, 174, 89, 0.151) 0%, transparent 70%);
  pointer-events: none;
  z-index: -20;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}

#hero-canvas-bg {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
      pointer-events: none;
    }

    /* Gradient orbs — scoped inside hero wrapper */
    .orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(90px);
      opacity: 0.55;
      pointer-events: none;
      z-index: 0;
    }

    .orb-1 {
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, #E0AF59 0%, transparent 70%);
      top: -180px;
      left: -120px;
      animation: float1 10s infinite alternate ease-in-out;
    }

    .orb-2 {
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, #c07c20 0%, transparent 70%);
      bottom: -60px;
      right: -80px;
      animation: float2 13s infinite alternate ease-in-out;
    }

    .orb-3 {
      width: 420px;
      height: 420px;
      background: radial-gradient(circle, rgba(224, 175, 89, 0.35) 0%, transparent 70%);
      top: 30%;
      left: 55%;
      animation: float3 15s infinite alternate ease-in-out;
    }

    @keyframes float1 {
      0% {
        transform: translate(0, 0) scale(1);
      }

      100% {
        transform: translate(120px, 60px) scale(1.15);
      }
    }

    @keyframes float2 {
      0% {
        transform: translate(0, 0) scale(1);
      }

      100% {
        transform: translate(-60px, -100px) scale(1.2);
      }
    }

    @keyframes float3 {
      0% {
        transform: translate(-50%, -50%) scale(1);
      }

      100% {
        transform: translate(-40%, -60%) scale(1.3);
      }
    }

    
.plan-card {
	border-radius: 22px;
	box-shadow: var(--shadow);
	display: flex;
	flex-direction: column;
	animation: rise 0.6s ease both;
}

.plan-card.delay-2 {
	animation-delay: 0.08s;
}

.plan-card.delay-3 {
	animation-delay: 0.16s;
}

.plan-features {
	/* list-style: none; */
	padding: 0;
	margin: 0;
	display: grid;
	gap: 8px;
}

.plan-feature {
	display: flex;
	align-items: center;
	gap: 12px;
}

.plan-card-featured {
	background: linear-gradient(145deg, #2d2d2d, #1f1f1f);
	color: var(--light);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.role-toggle {
    background-color: transparent;
    border: 1px solid #1c1d23;
}

.segment-button {
    background-color: #e9ecef;
    color: var(--brand-color-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s;
}

.segment-button.active {
    background-color: var(--dark);
    border: 1px solid var(--dark);
    color: var(--light);
}
    
.segment-button:not(.active) {
    background-color: var(--light);
    color: var(--brand-color-secondary);
    border: 1px solid transparent;
}

.segment-button:not(.active):hover {
    background-color: var(--bg-light);
    color: var(--brand-color-primary);
    font-weight: 600;
}

.segment-button:focus {
    outline: none;
}