.container {
  width: 100%;
  /* background-color: #f3f779; */
  display: flex;
  flex-direction: column;
  align-items: center; /* Center items vertically */
}

.section {
  flex: 1;
  width: calc(100%-10px);
  max-width: 1240px;
  padding: 20px;
  text-align: left;
  border-top: 0px;
  margin-bottom: 50px;
}

.section-medium {
  max-width: 860px;
  flex: 1;
  justify-content: center;
  width: calc(860px);
  padding: 20px;
  text-align: left;
  border-top: 0px;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .section-medium {
    max-width: 89vw;
  }
}

.section-large {
  flex: 1;
  justify-content: center;
  width: calc(1024px);
  padding: 20px;
  text-align: left;
  border-top: 0px;
}
@media (max-width: 768px) {
  .section-large {
    max-width: 89vw;
  }
}

.header_cta_button {
  padding: 10px 20px;
  background-color: #31c0f6; /* Button background color */
  color: black; /* Text color */
  border: none;
  border-radius: 5px; /* Rounded corners */
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -1px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.header_cta_button:hover {
  /* background-color: #4FCFFF; Change background color on hover */
  opacity: 0.7;
}
.header_cta_button a {
  color: black; /* Text color */
  text-decoration: none;
}
.ctas{padding-top: 15px;}
.social-line{color:var(--muted);font-size:13px;margin-top:20px;}

.cta_button {
  padding: 10px 20px;
  background-color: #31c0f6; /* Button background color */
  color: black; /* Text color */
  border: none;
  border-radius: 5px; /* Rounded corners */
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -1px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.cta_button:hover {
  /* background-color: #4FCFFF; Change background color on hover */
  opacity: 0.7;
}
.cta_button a {
  color: black; /* Text color */
  text-decoration: none;
}

.banner {
  padding: 30px 70px 30px 70px;
  display: flex;
  flex-direction: row;
  background: #121d45 url("../img/hero-banner/hero-banner-background.png") left top no-repeat padding-box;
  background-size: 100%;
  justify-content: space-between; /* Spreads content and image apart */
}
.banner .illustration {
  max-width: 450px;
  display: block;
  object-fit: cover; /* Maintain image aspect ratio */
  border: 0px solid #e3e5ee;
  margin-left: auto
}
.banner_cta {
  padding-top: 20px;
  padding-bottom: 10px;
  display: flex;
  flex-direction: row;
}
.banner_cta span {
  margin-right: 10px;
}
@media (max-width: 768px) {
  .banner {
    padding: 10px 30px 10px 30px;
    flex-direction: column;
    background: #121d45 url("../img/hero-banner/hero-banner-background.png") right top no-repeat;
    object-fit: cover; /* Maintain image aspect ratio */
  }
  .banner .illustration {
    display: none;
  }
}

.blurbs {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Two columns per row */
  grid-gap: 20px;
  padding-top: 20px;
}
.blurb {
  color: #4a4a4b;
  background-color: #f4f5f7;
  padding: 5px 20px 5px 30px;
  border: 1px solid #e3e5ee;
  border-radius: 15px;
}
.blurb p {
  padding-left: 20px;
}
.blurb-content, .blurb-content-small {
  display: flex;
  flex-direction: row;
}
.blurb-content, .blurb-content-small  .bold{
  font-weight: 900;
}
.blurb-content-small img {
  height: 80px;
  width: 80px;
  object-fit: cover; /* Maintain image aspect ratio */
}
.blurb-content-small ul {
  margin: 0;
  padding-left: 5px;
  list-style:inside;
}
.blurb-content-small ul li{
  margin: 0;
  margin-bottom: 5px;
}
.blurb-content-small ol {
  margin: 0;
  padding-left: 10px;
}
.blurb-content-small ol li{
  margin: 0;
  margin-bottom: 5px;
}
.blurb-content img {
  height: 80px;
  width: 80px;
  object-fit: cover; /* Maintain image aspect ratio */
}
.blurb-content ul {
  margin-top: 0;
  margin-left: 0;
}
.blurb-padding {
  padding: 10px 0 10px 0;
}
@media (max-width: 768px) {
  .blurbs {
    grid-template-columns: none;
  }
  .blurb-content img {
    height: 60px;
    width: 60px;
    object-fit: cover; /* Maintain image aspect ratio */
  }
}

.problem{
  border: 1px solid #e3e5ee;
  background-color: #f4f5f7;
  border-radius: 15px;
}
.two-col{display:grid;grid-template-columns:1fr 1fr;gap:20px;align-items:start;}

.illustrations {
  padding-top: 0px;
  display: flex;
  flex-direction:row;
  justify-content: space-evenly;
  max-width: 100%;
}
.illustration {
  display: flex;
  justify-content: space-evenly;
  flex-direction: column;
  max-width: 28%;
  color: rgb(180, 180, 180);
  background-color: #121d45;
  padding: 0 20px 0 30px;
  border-radius: 5px;
  margin-bottom: 10px;
}
.illustration-content {
  display: flex;
  flex-direction: column;
}
.illustration-on-the-right {
  padding-left: 20px;
}
.illustration-content h3 {
  color: white;
  margin: 0;
  margin-bottom: 0;
  font-size: 24px;
}
.illustration_img {
  padding: 10;
  padding-top: 20px;
  height: 250px;
  object-fit: None;
}

.product-tag-line{
  opacity: calc(70%);
}
.product-description {
  padding: 0;
  margin: 0;
  line-height: 14px;
  font-size: 12px;
}
.product-description-features{
  line-height: 14px;
  font-size: 12px;
  padding-bottom: 15px;
}
@media (max-width: 768px) {
  .illustrations {
    flex-direction: column;
    align-items: center;
  }
  
  .illustration {
    max-width: 100%;
    margin-bottom: 20px;
  }
}

.why .grid-5{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:12px;
}
@media (max-width: 768px) {
  .why .grid-5{
    display:grid;
    grid-template-columns:repeat(1,1fr);
    gap:12px;
  }
}

.salesmate-members {
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:12px;
}
.salesmate-member {
  text-align: center;
  border: 1px solid #e3e5ee;
  background-color: #121d45;
  background-color: #f4f5f7;
  border-radius: 15px;
}
.salesmate-member img{
  padding-top: 20px;
  max-width: 80px;
  max-height: 80px;
}
.salesmate-member h4 {
  padding-top: 10px;
}
.salesmate-member p {
  color: #4a4a4b;
  font-size: smaller;
}
@media (max-width: 768px) {
  .salesmate-members {
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:12px;
  }
}

.our-clients {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  width: 100%;
  flex-wrap: wrap;
}
.our-client {
  display: flex;
  align-items: center;
  text-align: left;
  border: 1px solid #e3e5ee;
  background-color: #f4f5f7;
  border-radius: 15px;
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 10px;
  width: 350px;
  padding: 15px;
  padding-top: 25px;
}
.our-client .member-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-right: 15px;
  flex-shrink: 0;
}
.our-client-content {
  flex: 1;
}
.our-client h4 {
  margin: 0 0 5px 0;
  padding: 0;
}
.our-client p {
  color: #4a4a4b;
  font-size: smaller;
  margin: 5px 0;
}
.our-client h5 {
  margin: 5px 0;
}
@media (max-width: 768px) {
  .our-clients {
    flex-direction: column;
    width: 100%;
    flex-wrap: wrap;
  }
  .our-client {
    width: 90%;
    display: flex;
    align-items: center;
    text-align: left;
    border: 1px solid #e3e5ee;
    background-color: #f4f5f7;
    border-radius: 15px;
    margin: 5px;
    padding: 15px;
  }
}

.team-partners {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  width: 100%;
}
.team-partner {
  text-align: center;
  border: 1px solid #e3e5ee;
  background-color: #f4f5f7;
  border-radius: 15px;
  margin-left: 10px;
  margin-right: 10px;
  width: 350px;
}
.team-partner h4 {
  padding-top: 20px;
}
.team-partner p {
  color: #4a4a4b;
  padding-left: 10px;
  padding-right: 10px;
  font-size: small;
}
.partner-icon {
  margin-top: 40px;
  height: 100px;
}
@media (max-width: 768px) {
  .team-partners {
    max-width: 100%;
    flex-direction: column;
    padding: 0;
    margin: 0;
  }
  .team-partner {
    max-width: 100%;
    text-align: center;
    padding: 0;
    margin: 0;
    margin-bottom: 10px;
  }
}

.tech-mosaic {
  display: flex;
  flex-wrap: wrap;
  max-width: 100%;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .tech-mosaic {
    width: 89vw;
  }
}

.tech-mosaic .tile {
  width: 80px;
  height: 80px;
  transform: rotate(45deg); /* Rotate the square to create a rhombus */
  margin: 15px;
  border: 1px solid #e3e5ee;
  border-radius: 10px;
  display: flex; /* Enable flexbox for centering */
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
}

.tech-mosaic .tile .content {
  width: 100%;
  height: 100%;
  transform: rotate(
    -45deg
  ); /* Counter-rotate content to keep images horizontal */
  display: flex; /* Enable flexbox for centering */
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
}

.tech-mosaic .tile .content img {
  max-height: 60px;
  max-width: 60px;
  vertical-align: middle;
  text-align: center;
  object-fit: cover; /* Maintain image aspect ratio */
  border-radius: 10px; /* Rounded corners for the images */
}

.quote {
  background: white url("../img/rectangle.png") right bottom no-repeat;
}
.quote p {
  font-size: 28px;
}

.data-factory {
  max-width: 600px;
}
@media (max-width: 768px) {
  .data-factory {
    max-width: 95%;
  }
}

.salesmate-building-block-section {
  display: flex;
  flex-direction: row;
}
.salesmate-building-blocks-disclaimer {
  max-width: 40%;
  padding: 20px;
}
.salesmate-building-blocks {
  max-width: 60%;
  padding: 20px;
}
.salesmate-building-block {
  display: flex;
  flex-direction: row;
  color: #4a4a4b;
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid #e3e5ee;
  border-radius: 15px;
}
.salesmate-building-block-content {
  padding-left: 20px;
  flex-direction: column;
}

@media (max-width: 768px) {
  .salesmate-building-block-section {
    max-width: 100%;
    flex-direction: column;
    padding: 10px;
    margin: 0;
    text-align: center;
  }
  .salesmate-building-blocks-disclaimer {
    padding: 0px;
    max-width: 100%;
  }
  .salesmate-building-blocks {
    padding: 0px;
    max-width: 100%;
  }
  .salesmate-building-block {
    display: flex;
    flex-direction: column;
    text-align: center;
    max-width: 100%;
    padding: 0;
    margin: 0;
    margin-bottom: 20px;
    border: 0;
  }
  .salesmate-building-block .icon {
    margin-top: 40px;
    margin-bottom: 20px;
  }
}

.salesmate-audiences {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  padding: 20px;
  margin: 10px;
  width: 100%;
}
.salesmate-audience {
  text-align: center;
  border: 1px solid #e3e5ee;
  border-radius: 15px;
  margin-left: 10px;
  margin-right: 10px;
}
.audience-icon {
  margin-top: 40px;
  height: 100px;
}
@media (max-width: 768px) {
  .salesmate-audiences {
    max-width: 100%;
    flex-direction: column;
    padding: 0;
    margin: 0;
  }
  .salesmate-audience {
    max-width: 100%;
    text-align: center;
    padding: 0;
    margin: 0;
    margin-bottom: 10px;
  }
}

.salesmate-onboarding-steps {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  padding: 20px;
  margin: 10px;
  width: 100%;
}
.salesmate-onboarding-step {
  text-align: center;
  margin-left: 10px;
  margin-right: 10px;
}
.onboarding-step-icon {
  margin-top: 40px;
  margin-bottom: 10px;
  height: 100px;
  border-radius: 15px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  .salesmate-onboarding-steps {
    max-width: 100%;
    flex-direction: column;
    padding: 0;
    margin: 0;
  }
  .salesmate-onboarding-steps {
    max-width: 100%;
    text-align: center;
    padding: 0;
    margin: 0;
    margin-bottom: 10px;
  }
}

.datafabric-color {
  color: #31c0f6;
}
.datafabric-bg-color {
  background-color: #31c0f6;
}

.foundry-color {
  color: #f3f779;
}
.foundry-bg-color {
  background-color: #f3f779;
}

.compass-color {
  color: #49e9c2;
}
.compass-bg-color {
  background-color: #49e9c2;
}

.salesmate-color {
  color: #eb5882;
}
.salesmate-bg-color {
  background-color: #eb5882;
}


/* ========================================
   PRICING TABLE STYLES
   ======================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-top: 25px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card {
  background-color: #f4f5f7;
  border: 1px solid #e3e5ee;
  border-radius: 10px;
  padding: 20px 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.pricing-card:hover {
  transform: translateY(-5px);
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.pricing-card.featured {
  border: 2px solid #31c0f6;
  transform: scale(1.01);
}

.pricing-card.featured .badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: #31c0f6;
  color: white;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.plan-name {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: 'Poppins', sans-serif;
}

.plan-description {
  font-size: 12px;
  color: #666;
  margin-bottom: 8px;
  min-height: 32px;
  font-family: 'Poppins', sans-serif;
  line-height: 1.3;
}

.price {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 4px;
  font-family: 'Poppins', sans-serif;
  line-height: 1;
}

.price-period {
  color: #999;
  margin-bottom: 15px;
  font-size: 12px;
  font-family: 'Poppins', sans-serif;
}

.features-list {
  list-style: none;
  margin-top: 0px;
  margin-bottom: 20px;
  padding-left: 0;
  flex-grow: 1;
}

.features-list li {
  padding: 6px 0;
  color: #4a4a4b;
  font-size: 12px;
  line-height: 1.2;
  margin-top: 0px;
  margin-bottom: 0px;
  padding-top: 0px;
  padding-bottom: 0px;
  display: flex;
  align-items: flex-start;
  font-family: 'Poppins', sans-serif;
}

.features-list li:before {
  content: "✓";
  color: #28a745;
  font-weight: bold;
  margin-right: 8px;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 1px;
}

.features-list li.unavailable {
  color: #b2b2b2;
}

.features-list li.unavailable:before {
  content: "×";
  color: #dc3545;
}

/* Nested lists - more compact */
.features-list ol {
  margin: 4px 0 4px 0;
  padding-left: 30px;
  font-size: 11px;
}

.features-list ol li {
  padding: 0;
}

.features-list ol li:before {
  /* content: none; */
}

.cta-button {
  width: 100%;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: 'Poppins', sans-serif;
}

.cta-button.primary {
  background: #31c0f6;
  color: white;
}

.cta-button.primary:hover {
  background: #1fa8de;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(49, 192, 246, 0.3);
}

.cta-button.secondary {
  background: white;
  color: #31c0f6;
  border: 2px solid #31c0f6;
}

.cta-button.secondary:hover {
  background: #f4f5f7;
}

/* Compass variant colors */
.pricing-card.featured.compass-variant {
  border-color: #49e9c2;
}

.pricing-card.featured.compass-variant .badge {
  background: #49e9c2;
}

.pricing-card.featured.compass-variant .cta-button.primary {
  background: #49e9c2;
}

.pricing-card.featured.compass-variant .cta-button.primary:hover {
  background: #31d7b0;
  box-shadow: 0 4px 12px rgba(73, 233, 194, 0.3);
}

.pricing-card.featured.compass-variant .cta-button.secondary {
  color: #49e9c2;
  border-color: #49e9c2;
}

/* SalesMate variant colors */
.pricing-card.featured.salesmate-variant {
  border-color: #eb5882;
}

.pricing-card.featured.salesmate-variant .badge {
  background: #eb5882;
}

.pricing-card.featured.salesmate-variant .cta-button.primary {
  background: #eb5882;
}

.pricing-card.featured.salesmate-variant .cta-button.primary:hover {
  background: #d94670;
  box-shadow: 0 4px 12px rgba(235, 88, 130, 0.3);
}

.pricing-card.featured.salesmate-variant .cta-button.secondary {
  color: #eb5882;
  border-color: #eb5882;
}

@media (max-width: 1280px) {
  .pricing-grid {
    gap: 12px;
  }
  
  .pricing-card {
    padding: 18px 14px;
  }
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .pricing-card.featured {
    transform: scale(1);
  }
  
  .plan-name {
    font-size: 20px;
  }
  
  .price {
    font-size: 36px;
  }
  
  .features-list li {
    font-size: 13px;
  }
}




.card{
  background:var(--card);
  border-radius:12px;
  padding:18px;
  border: 1px solid #e3e5ee;
  background-color: #f4f5f7;
  border-radius: 5px;
  box-shadow: 2p 6px 18px rgba(3, 5, 8, 1);
  color: black;
}

.card strong{
  font-weight: 900;
}

.footer {
  max-width: 95%;
  min-width: 95%;
  padding: 30px 70px 30px 70px;
  min-width: 95%;
  margin: 0;
  display: flex;
  flex-direction: row;
  background: #121d45 url("../img/hero-banner/hero-banner-background.png") left top no-repeat padding-box;
  background-size: 100%;
  justify-content: space-between; /* Spreads content and image apart */
}

.smaller{
  font-size: 10px;
}


.desktop-only {
  display: block;
}
.mobile-only {
  display: none;
}
@media (max-width: 768px) {
  .desktop-only {
    display: none;
  }
  .mobile-only {
    display: block;
  }
}